/* Federation of Independent Dealers - Website Styles */

:root {
    --deep-navy: #0a1628;
    --navy: #122640;
    --navy-light: #1a3554;
    --gold: #c9a227;
    --gold-light: #e8c547;
    --gold-pale: #f5e6b8;
    --white: #ffffff;
    --white-muted: rgba(255, 255, 255, 0.85);
    --white-faded: rgba(255, 255, 255, 0.6);
}

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

html {
    scroll-behavior: smooth;
}

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

/* World Map Background */
.world-map-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.08;
    background:
        radial-gradient(ellipse at 30% 40%, var(--navy-light) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, var(--navy-light) 0%, transparent 50%);
}

.world-map-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3E%3Cpath fill='%231a3554' d='M150,120 Q200,80 280,100 T380,90 Q420,85 450,110 T520,100 Q560,95 600,120 T680,110 Q720,105 760,130 T840,120 M100,180 Q150,160 220,175 T320,165 Q360,160 400,185 T480,175 Q520,170 560,195 T640,185 Q680,180 720,205 T800,195 M120,240 Q170,220 240,235 T340,225 Q380,220 420,245 T500,235 Q540,230 580,255 T660,245 Q700,240 740,265 T820,255 M80,300 Q130,280 200,295 T300,285 Q340,280 380,305 T460,295 Q500,290 540,315 T620,305 Q660,300 700,325 T780,315 M140,360 Q190,340 260,355 T360,345 Q400,340 440,365 T520,355 Q560,350 600,375 T680,365 Q720,360 760,385 T840,375'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, var(--deep-navy), transparent);
    transition: background 0.3s ease;
}

nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--white-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-light);
}

.nav-cta {
    padding: 0.75rem 1.75rem;
    background: var(--gold);
    color: var(--deep-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 4rem;
    z-index: 1;
}

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

.anniversary-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--gold);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
}

.anniversary-badge span {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s forwards;
}

.hero h1 .highlight {
    color: var(--gold);
    display: block;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.hero-detail-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-detail-text {
    color: var(--white-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.hero-detail-text strong {
    display: block;
    color: var(--white);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--deep-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--white-faded);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Anniversary Seal */
.anniversary-seal {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    height: 220px;
    animation: fadeIn 1s ease 0.5s forwards, float 6s ease-in-out infinite;
}

.anniversary-seal-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(201, 162, 39, 0.3));
}

/* Section Styles */
.section-label {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Value Proposition Section */
.value-prop {
    position: relative;
    z-index: 1;
    padding: 6rem 4rem;
    background: linear-gradient(to bottom, transparent, rgba(18, 38, 64, 0.8), transparent);
}

.value-prop-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.value-prop h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.value-prop-intro {
    color: var(--white-muted);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    padding: 2.5rem 2rem;
    background: rgba(26, 53, 84, 0.3);
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: all 0.4s ease;
    text-align: center;
}

.value-card:hover {
    background: rgba(26, 53, 84, 0.5);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.value-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    color: var(--gold);
}

.value-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--white-faded);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    position: relative;
    z-index: 1;
    padding: 4rem;
    background: rgba(18, 38, 64, 0.5);
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    color: var(--white-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(201, 162, 39, 0.3);
}

/* CTA Section */
.cta-section {
    position: relative;
    z-index: 1;
    padding: 6rem 4rem;
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(26, 53, 84, 0.5) 100%);
    border: 1px solid var(--gold);
}

.cta-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--white-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Page Header */
.page-header {
    position: relative;
    z-index: 1;
    padding: 10rem 4rem 4rem;
    text-align: center;
    background: linear-gradient(to bottom, transparent, rgba(18, 38, 64, 0.5));
}

.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-header .subtitle {
    color: var(--white-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    position: relative;
    z-index: 1;
    padding: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.content-section p {
    color: var(--white-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Board/Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    padding: 2rem;
    background: rgba(26, 53, 84, 0.3);
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: all 0.4s ease;
}

.team-card:hover {
    background: rgba(26, 53, 84, 0.5);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.team-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.team-card .title {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-card p {
    color: var(--white-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    margin-bottom: 1.5rem;
}

.team-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

/* Members Grid */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.member-logo {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    transition: all 0.3s ease;
}

.member-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.member-logo span {
    color: var(--white-muted);
    font-size: 0.85rem;
    text-align: center;
}

/* Events List */
.events-list {
    margin-top: 2rem;
}

.event-item {
    padding: 2rem;
    background: rgba(26, 53, 84, 0.3);
    border: 1px solid rgba(201, 162, 39, 0.2);
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
}

.event-item:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.event-date {
    text-align: center;
    padding: 1rem;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--gold);
}

.event-date .day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.event-date .month {
    font-size: 0.85rem;
    color: var(--white-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.event-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-info .location {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.event-info p {
    color: var(--white-muted);
    font-size: 0.95rem;
}

.event-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

@media (max-width: 1024px) {
    .event-actions {
        align-items: center;
        width: 100%;
    }

    .event-actions .btn-primary,
    .event-actions .btn-secondary,
    .event-actions .calendar-btn {
        width: 100%;
        justify-content: center;
    }
}

/* News List */
.news-list {
    margin-top: 2rem;
}

.news-item {
    padding: 2rem;
    background: rgba(26, 53, 84, 0.3);
    border: 1px solid rgba(201, 162, 39, 0.2);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.news-item:hover {
    border-color: var(--gold);
}

.news-item .date {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.news-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.news-item h3 a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-item h3 a:hover {
    color: var(--gold);
}

.news-item p {
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Membership Tiers */
.membership-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tier-card {
    padding: 2.5rem;
    background: rgba(26, 53, 84, 0.3);
    border: 1px solid rgba(201, 162, 39, 0.2);
    text-align: center;
    transition: all 0.4s ease;
}

.tier-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.tier-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(26, 53, 84, 0.5) 100%);
}

.tier-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tier-card .price {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
    margin: 1rem 0;
}

.tier-card .price span {
    font-size: 1rem;
    color: var(--white-muted);
}

.tier-card .description {
    color: var(--white-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.tier-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.tier-card li {
    color: var(--white-muted);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tier-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 6px;
    height: 6px;
    background: var(--gold);
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--white-muted);
    margin-bottom: 1rem;
}

.contact-info a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--gold-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--white-muted);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: rgba(26, 53, 84, 0.5);
    border: 1px solid rgba(201, 162, 39, 0.2);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    position: relative;
    z-index: 1;
    padding: 3rem 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--white-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--white-faded);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-copy {
    color: var(--white-faded);
    font-size: 0.85rem;
}

.footer-contact {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-contact p {
    color: var(--white-faded);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white-faded);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* Skip to Content - Accessibility */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--deep-navy);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 500;
    z-index: 1000;
    border-radius: 0 0 8px 8px;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(calc(-50% - 10px));
    }
}

/* Member Modal */
.member-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
}

.member-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.member-modal {
    background: linear-gradient(135deg, var(--navy) 0%, var(--deep-navy) 100%);
    border: 1px solid var(--gold);
    max-width: 500px;
    width: 100%;
    padding: 3rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.member-modal-overlay.active .member-modal {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--white-muted);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close-btn:hover {
    color: var(--gold);
}

.member-modal-logo {
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

.member-modal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
}

.member-modal-type {
    color: var(--gold);
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-modal-desc {
    color: var(--white-muted);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.member-modal-content .btn-primary {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Clickable member logo */
.member-logo.clickable {
    cursor: pointer;
}

.member-logo.clickable:hover {
    background: rgba(201, 162, 39, 0.2);
}

/* News Filters */
.news-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.6rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--white-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--deep-navy);
}

/* News Item Header */
.news-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.news-category-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-item-header .date {
    margin: 0;
    color: var(--white-faded);
}

/* Read More Button */
.read-more-btn {
    margin-top: 1rem;
    padding: 0.5rem 1.25rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: var(--gold);
    color: var(--deep-navy);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--white-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover:not(.disabled) {
    border-color: var(--gold);
    color: var(--gold);
}

.page-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--deep-navy);
}

.page-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Blog Modal */
.blog-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 31, 64, 0.95);
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
}

.blog-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.blog-modal {
    background: linear-gradient(135deg, var(--navy) 0%, var(--deep-navy) 100%);
    border: 1px solid var(--gold);
    max-width: 700px;
    width: 100%;
    padding: 3rem;
    position: relative;
    margin: 2rem 0;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.blog-modal-overlay.active .blog-modal {
    transform: translateY(0);
}

.blog-modal-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.blog-modal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-modal-date {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.blog-modal-body {
    color: var(--white-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.blog-modal-body p {
    margin-bottom: 1rem;
}

.blog-modal-body ul {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--white-muted);
}

.blog-modal-body li {
    margin-bottom: 0.5rem;
}

.blog-modal-body strong {
    color: var(--white);
}

/* Calendar Button */
.calendar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.calendar-btn:hover {
    background: var(--gold);
    color: var(--deep-navy);
}

/* Form validation error styles */
.error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger:hover {
    border-color: var(--gold);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--deep-navy);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu.active li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active li:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu.active li:nth-child(8) { transition-delay: 0.45s; }

.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--gold);
}

.mobile-menu .mobile-cta {
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--deep-navy);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
    .anniversary-seal {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .event-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .event-date {
        justify-self: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 2rem;
    }

    .hero {
        padding: 6rem 2rem 4rem;
    }

    .hero-details {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .stats-container {
        flex-direction: column;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .value-prop,
    .cta-section,
    .content-section {
        padding: 3rem 2rem;
    }

    .cta-box {
        padding: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .mobile-menu a {
        font-size: 1.5rem;
    }
}
