/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2D3436;
    background: #FAF8F5;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
}

/* ===== HEADER ===== */
.header {
    background: #1B2A4A;
    color: #FAF8F5;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.demo-notice {
    background: #D84A4A;
    color: #FAF8F5;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    color: #C5A55A;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #FAF8F5;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s;
}

.nav a:hover {
    color: #C5A55A;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #C5A55A;
    color: #1B2A4A;
}

.btn-primary:hover {
    background: #B39449;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 165, 90, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #FAF8F5;
    border: 2px solid #FAF8F5;
}

.btn-secondary:hover {
    background: #FAF8F5;
    color: #1B2A4A;
}

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 20px;
}

.section-dark {
    background: #1B2A4A;
    color: #FAF8F5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    flex: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1B2A4A;
}

.section-dark .section-title {
    color: #C5A55A;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #4A4E50;
    margin-bottom: 3rem;
    font-weight: 300;
}

.section-dark .section-subtitle {
    color: #E8E4DF;
}

/* ===== FOOTER ===== */
.footer {
    background: #1B2A4A;
    color: #E8E4DF;
    padding: 3rem 20px 1.5rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer h4 {
    color: #C5A55A;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: #E8E4DF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #C5A55A;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(197, 165, 90, 0.2);
    text-align: center;
    color: #E8E4DF;
    font-size: 0.9rem;
}

.memberships {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.membership-badge {
    background: #0F1A2E;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #E8E4DF;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FAF8F5;
    color: #1B2A4A;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
    z-index: 1000;
    border-top: 3px solid #C5A55A;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    color: #1B2A4A;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav a {
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2rem;
    }
}
