@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --navy: #0A192F;
    --navy-light: #112240;
    --navy-lighter: #233554;
    --gold: linear-gradient(135deg, #D4AF37 0%, #F9E2AF 50%, #B8860B 100%);
    --gold-solid: #D4AF37;
    --white: #E6F1FF;
    --grey: #8892B0;
    --slate: #A8B2D1;
    --glass: rgba(10, 25, 47, 0.85);
    --transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--navy);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    text-transform: lowercase;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Background Utility */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(10, 25, 47, 0.4) 0%, rgba(10, 25, 47, 0.95) 100%),
        url('assets/images/hero-bg.png') no-repeat center center/cover;
    z-index: -1;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: var(--transition);
    background: transparent;
}

nav.scrolled {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-solid);
    text-decoration: none;
    letter-spacing: 2px;
}

/* Layout Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero h1 {
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: var(--gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    max-width: 700px;
    color: var(--slate);
    margin-bottom: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background-color: transparent;
    color: var(--gold-solid);
    border: 1px solid var(--gold-solid);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: var(--transition);
    position: relative;
    border-radius: 2px;
}

.cta-button:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--grey);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--grey);
    border-radius: 20px;
    margin-top: 10px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--gold-solid);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Value Proposition */
.value-prop {
    padding: 140px 0;
    background: var(--navy);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.card {
    padding: 4rem 2.5rem;
    background: var(--navy-light);
    border: 1px solid rgba(100, 255, 218, 0.05);
    border-radius: 4px;
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    border-color: var(--gold-solid);
    transform: translateY(-10px);
    background: var(--navy-lighter);
}

.card h3 {
    color: var(--gold-solid);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.card p {
    color: var(--slate);
    font-size: 1rem;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 120px 0;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--slate);
    font-weight: 300;
    line-height: 2;
}

/* Contact Section */
.contact {
    padding: 140px 0;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--gold-solid);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--navy-light);
    padding: 4rem;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(2, 12, 27, 0.7);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--gold-solid);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: var(--navy);
    border: 1px solid var(--navy-lighter);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    border-radius: 4px;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-solid);
    background: var(--navy-lighter);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--gold);
    color: var(--navy);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 2px;
    border-radius: 4px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--grey);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .hero h1 { font-size: 2.8rem; }
    .form-container { padding: 2.5rem 1.5rem; }
    .grid { grid-template-columns: 1fr; }
}


