/* ===== CSS RESET & VARIABLES ===== */
:root {
    --color-bg: #050505;
    --color-surface: #111111;
    --color-text: #f0f0f0;
    --color-text-muted: #a0a0a0;
    --color-accent: #5b83c0; /* LS Blue */
    --color-accent-hover: #4a6da3;
    --color-champagne: #c9b9a2;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Cormorant Garamond', serif; /* Updated to match Apple Garamond style */
    --font-script: 'Dancing Script', cursive; /* Alternative for American Oak */
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background-color: var(--color-accent);
    color: #fff;
    padding: 1rem 2.5rem;
    font-family: 'Inter', sans-serif; /* Keep sans-serif for buttons to maintain readability */
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
    border: 1px solid var(--color-accent);
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--color-text);
    padding: 0.6rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo-img {
    max-height: 45px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo-link:hover .logo-img {
    opacity: 0.8;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    z-index: -1;
}

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

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    display: block;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h2 em {
    font-family: var(--font-script);
    font-size: 1.2em;
    color: var(--color-accent);
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--color-champagne);
    color: #000; /* Dark text for readability on champagne */
}

.about .section-title {
    color: var(--color-bg);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 1.5rem;
}

.features {
    list-style: none;
    margin-top: 2rem;
}

.features li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #000;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.about-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
    pointer-events: none;
}

.about-image img {
    transition: transform 0.7s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ===== CTA SECTION ===== */
.cta {
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('cta.jpg') center/cover fixed;
}

.cta-container {
    max-width: 700px;
}

.cta h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #000;
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.social-links a {
    margin-left: 1.5rem;
    transition: var(--transition);
}

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

/* ===== ANIMATIONS ===== */
.fade-up, .fade-in {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-enabled .fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.js-enabled .fade-in {
    opacity: 0;
}

.js-enabled .fade-up.visible, .js-enabled .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* ===== RESPONSIVE (TIKTOK FOCUS) ===== */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .hero h2 {
        font-size: 3.5rem;
    }
    
    .hero-overlay {
        background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero h2 {
        font-size: 2.8rem;
    }
    
    .cta h2 {
        font-size: 2.5rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .social-links a {
        margin: 0 0.75rem;
    }

    .btn-primary {
        width: 100%;
        padding: 1.2rem 1rem;
    }
    
    .hero {
        align-items: flex-end;
        padding-bottom: 4rem;
    }
    
    .hero-overlay {
        background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%);
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.4rem;
    }
    
    .btn-outline {
        display: none; /* Hide on very small screens to save space */
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}
