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

:root {
    --primary: #0A192F;
    --secondary: #E6F1FF;
    --accent: #D4AF37;
    --accent-hover: #B48F2A;
    --text: #2D3436;
    --text-light: #636E72;
    --bg: #FFFFFF;
    --section-bg: #F8F9FA;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

main .container {
    display: block;
}

p {
    line-height: 1.75;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

header .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(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo svg {
    width: 32px;
    height: 32px;
}

nav ul {
    display: flex;
    gap: 40px;
}

nav a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border: 1px solid var(--primary);
}

.nav-cta:hover {
    background: transparent;
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent);
    color: white;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-5px);
}

/* Sections */
section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title .divider {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo p {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Reveal Animation Utility */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .container { padding: 0 20px; }
    .hero h1 { font-size: 3rem; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }
    nav { display: none; }
    .nav-cta {
        padding: 10px 16px;
        font-size: 0.75rem;
    }
    section { padding: 72px 0; }
    .hero {
        text-align: center;
        height: auto;
        min-height: 80vh;
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .hero-content { margin: 0 auto; }
    .section-title { margin-bottom: 48px; }
    .section-title h2 { font-size: 2rem; }

    [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    [style*="display: grid"] {
        gap: 28px !important;
    }

    .footer-content { grid-template-columns: 1fr; }


    h1 { font-size: 2rem !important; line-height: 1.25; }
    h2 { font-size: 1.6rem !important; line-height: 1.3; }
    h3 { font-size: 1.3rem !important; line-height: 1.35; }
    .nav-cta { white-space: nowrap; }
    [style*="padding: 100px 0"] { padding: 72px 0 !important; }
    [style*="margin-top: 120px"] { margin-top: 72px !important; }
    [style*="margin-bottom: 120px"] { margin-bottom: 72px !important; }
    [style*="padding: 60px"] { padding: 32px !important; }
}
