/* Professional Fonts */
@import url('https://fonts.googleapis.com');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Deep Matte Black */
    color: #E5C385; /* Soft Champagne Gold */
    line-height: 1.8;
    font-size: 1.3em; /* Making text even bigger for readability */
}

h1, h2, h3 {
    font-family: 'Libre Baskerville', serif;
    color: #D4AF37; /* Metallic Gold */
    margin-bottom: 25px;
}

h1 { font-size: 3.5em; } /* Massive, impactful headings */

nav {
    background-color: #000000; /* True Black Nav */
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid #D4AF37; /* Gold accent line */
}

nav a {
    color: #D4AF37;
    text-decoration: none;
    margin: 0 30px;
    font-weight: 600;
    font-size: 1.1em;
}

nav a:hover {
    color: #FFFFFF; /* White glow on hover */
}

.hero {
    /* Dark Overlay with the Key-Handing Background */
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), 
                url('https://images.unsplash.com') no-repeat center center/cover;
    color: #D4AF37;
    padding: 160px 20px;
    text-align: center;
}

.container {
    max-width: 950px;
    margin: -90px auto 90px;
    background: #1A1A1A; /* Slightly lighter black for the "Box" */
    padding: 70px;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: 1px solid #D4AF37; /* Gold Border */
}

.btn-primary {
    background-color: #D4AF37; /* Gold Button */
    color: #000000; /* Black Text on Button */
    padding: 22px 45px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 800;
    font-size: 1.1em;
    transition: 0.4s;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #FFFFFF;
    color: #000000;
    transform: scale(1.05); /* Slight "pop" effect */
}

footer {
    text-align: center;
    padding: 60px;
    background: #000000;
    color: #D4AF37;
    border-top: 1px solid #D4AF37;
}

