/* ============================================ */
/* BASE STYLES & CSS VARIABLES */
/* ============================================ */

:root {
    /* Primary Colors */
    --primary-navy: #0a1929;
    --secondary-navy: #132f4c;
    --dark-slate: #0d1117;
    
    /* Accent Colors */
    --logo-blue: #1976d2;
    --accent-blue: #2196f3;
    --gold-accent: #d4af37;
    --soft-gold: #f4e4c1;
    
    /* Neutral Colors */
    --cream: #f5f3f0;
    --beige: #c9b896;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Crimson Text', serif;
}

/* ============================================ */
/* GLOBAL RESET */
/* ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--primary-navy);
    color: var(--cream);
    overflow-x: hidden;
}

/* ============================================ */
/* TYPOGRAPHY */
/* ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* ============================================ */
/* SECTION STYLES */
/* ============================================ */

section {
    padding: 6rem 5%;
    position: relative;
}

/* ============================================ */
/* SECTION HEADER */
/* ============================================ */

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(25, 118, 210, 0.2));
    border: 1px solid var(--gold-accent);
    border-radius: 50px;
    color: var(--gold-accent);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: var(--soft-gold);
    line-height: 1.8;
    opacity: 0.95;
}

/* ============================================ */
/* BUTTONS */
/* ============================================ */

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    cursor: pointer;
}

.cta-primary {
    background: linear-gradient(135deg, var(--logo-blue), var(--accent-blue));
    color: white;
    border: 2px solid var(--logo-blue);
}

.cta-secondary {
    background: transparent;
    color: var(--gold-accent);
    border: 2px solid var(--gold-accent);
}

/* ============================================ */
/* ANIMATIONS */
/* ============================================ */

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================ */
/* RESPONSIVE BREAKPOINTS */
/* ============================================ */

@media (max-width: 1400px) {
    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 968px) {
    section {
        padding: 4rem 5%;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    section {
        padding: 3rem 5%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
}
