/* Variables */
:root {
    --primary-red: #D32F2F;
    /* Slightly darker red for better contrast/professional look - similar to screenshot */
    --hover-red: #b71c1c;
    --text-dark: #333;
    --text-light: #fff;
    --header-height: 80px;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-main {
    flex: 1;
}

/* Header Styles */
.site-header {
    background-color: #ffffff;
    height: var(--header-height);
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* More premium shadow */
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.site-branding .logo,
.custom-logo-link {
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

.site-branding .logo:hover,
.custom-logo-link:hover {
    opacity: 0.8;
}

.site-branding .logo img,
.custom-logo-link img {
    max-height: 48px;
    /* Proportional to header */    width: auto;
    display: block;
}

/* Navigation - Desktop Default */
.main-navigation > ul,
.main-navigation .nav-menu {
    display: flex;
    gap: 24px;
    /* Generous spacing for professional look */
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navigation .nav-dropdown-menu {
    gap: 0 !important;
}
.main-navigation a {
    color: #444;
    font-size: 0.85rem;
    /* Smaller font on desktop */
    font-weight: 500;
    text-decoration: none;
    padding: 8px 14px;    /* Add padding for click area */
    position: relative;    transition: color 0.3s;
    letter-spacing: 0.3px;
    white-space: nowrap;
    /* Prevent breaking */
}

/* Hover Effect - Underline */
.main-navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: var(--primary-red);
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switcher {
    font-size: 0.8rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.lang-switcher a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.lang-switcher a:hover {
    color: var(--primary-red);
}

.lang-switcher a.active {
    color: var(--primary-red);
}

.lang-switcher .separator {
    color: #ddd;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown-toggle .dropdown-arrow,
.nav-dropdown-toggle .caret {
    font-size: 0.7em;
    margin-left: 2px;
    display: inline-block;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.nav-dropdown.open .nav-dropdown-toggle .dropdown-arrow,
.nav-dropdown.open .nav-dropdown-toggle .caret {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    display: none !important;
    flex-direction: column;    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 2px 0;
    min-width: 160px;
    list-style: none;
    margin: 2px 0 0;
    z-index: 1001;
    gap: 0;
}.nav-dropdown-menu li {
    margin: 0;
}
.nav-dropdown-menu a {
    display: block;
    padding: 6px 16px;
    color: #444;
    font-size: 0.85rem;
    line-height: 1.4;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.nav-dropdown-menu li {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
}
.nav-dropdown-menu a:hover {
    background: #f8f8f8;
    color: var(--primary-red);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    display: flex !important;
    flex-direction: column;}/* Compact login button */
.desk-only.btn-sm {
    padding: 6px 12px;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* Mobile drawer footer hidden on desktop */
.mobile-drawer-footer,
.main-navigation .mobile-drawer-footer,
header .main-navigation .mobile-drawer-footer {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
}/* Mobile Toggle Button (Hidden on Desktop) */
.menu-toggle {    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1003;
    /* Above drawer and header */}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    text-align: center;
    transition: background-color 0.3s, border-color 0.3s;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-sm {
    padding: 6px 15px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
}

.btn-primary:hover {
    background-color: var(--hover-red);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Registration Banner */
.registration-banner {
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    color: white;
    padding: 15px 0;
    text-align: center;
}

.registration-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.registration-icon {
    font-size: 1.5rem;
}

.registration-message {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.registration-message strong {
    display: inline-block;
    margin-left: 5px;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
}

.registration-btn {
    display: inline-block;
    padding: 8px 20px;
    background: white;
    color: var(--primary-red);
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.registration-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .registration-banner .container {
        flex-direction: column;
        gap: 10px;
    }

    .registration-message {
        font-size: 0.95rem;
    }

    .registration-message strong {
        display: block;
        margin-top: 8px;
        margin-left: 0;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: calc(85vh - var(--header-height));
    min-height: 500px;
    background-image: url('../images/_MG_3847.jpeg');
    background-size: cover;
    background-position: center 25%;
    color: white;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding-top: clamp(60px, 12vh, 150px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0) 100%);
    /* Darker at top for text readability, clear at bottom for people */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.2rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 5px;
    /* Reduced from 10px */
    line-height: 1.1;
    /* Tightened line height */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.5rem);
    margin-bottom: 25px;
    /* Slightly reduced */
    line-height: 1.3;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ========================================
   Mission Section Styles
   ======================================== */
.mission-section {
    padding: 40px 0 100px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 60px;
    color: var(--text-dark);
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
    border-radius: 2px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.mission-card:hover::before {
    opacity: 1;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
}

.mission-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.mission-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.mission-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.btn-mission {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-mission svg {
    transition: transform 0.3s ease;
}

.btn-mission:hover {
    background: var(--primary-red);
    color: #fff;
}

.btn-mission:hover svg {
    transform: translateX(5px);
}

/* Mission Section Responsive */
@media (max-width: 992px) {
    .mission-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-card {
        padding: 40px 30px;
    }

    .mission-icon {
        width: 70px;
        height: 70px;
    }

    .mission-icon svg {
        width: 35px;
        height: 35px;
    }

    .mission-title {
        font-size: 1.5rem;
    }

    .mission-description {
        font-size: 1rem;
    }
}

/* ========================================
   Events Section Styles
   ======================================== */
.events-section {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-header .section-title {
    margin-bottom: 0;
}

.section-header .section-title::after {
    display: none;
}

.section-link {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s;
}

.section-link:hover {
    opacity: 0.7;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.event-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
}

.event-image-placeholder {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image-placeholder .placeholder-icon {
    color: #ccc;
    opacity: 0.6;
}
.event-content {
    padding: 25px;
}

.event-date {
    display: block;
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.event-location svg {
    flex-shrink: 0;
}

.event-link {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.event-link:hover {
    opacity: 0.7;
}

.event-link-facebook {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 10px;
    color: #1877f2;
    text-decoration: none;
    transition: color 0.3s;
}
.event-link-facebook:hover {
    color: #0d65d9;
}
.no-events,
.no-news {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-size: 1.1rem;
}

/* Events Responsive */
@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .events-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========================================
   News Section Styles
   ======================================== */
.news-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-card {
    display: flex;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.news-image {
    width: 200px;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.news-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-date {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.news-link {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.news-link:hover {
    opacity: 0.7;
}

/* News Responsive */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .news-card {
        flex-direction: column;
    }

    .news-image {
        width: 100%;
        height: 180px;
        min-height: auto;
    }
}

/* ========================================
   Single News Article Styles
   ======================================== */
.single-news-content {
    padding: 80px 0 120px;
    background: #fafafa;
}

.news-article {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 60px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
}

.news-body {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
}

.news-body p {
    margin-bottom: 24px;
}

.news-body h2,
.news-body h3 {
    margin-top: 45px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.news-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 35px 0;
}

.news-body a {
    color: var(--primary-red);
    text-decoration: underline;
}

.news-nav {
    margin-top: 70px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

@media (max-width: 768px) {
    .news-article {
        padding: 30px 25px;
        margin: 0 15px;
    }

    .news-body {
        font-size: 1.05rem;
    }

    .news-nav {
        margin-top: 50px;
        padding-top: 30px;
    }
}

/* ========================================
   Single Event Article Styles
   ======================================== */
.single-event-content {
    padding: 80px 0 120px;
    background: #fafafa;
}

.event-article {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 60px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
}

.event-meta-box {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 40px;
}

.event-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 200px;
}

.event-meta-item svg {
    color: var(--primary-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.event-meta-item strong {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-meta-item span,
.event-meta-item a {
    font-size: 1rem;
    color: var(--text-dark);
}

.event-meta-item a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.event-meta-item a:hover {
    text-decoration: underline;
}

/* ========================================
   Instagram Section Styles
   ======================================== */
.instagram-section {
    padding: 80px 0;
    background: #fff;
}

.instagram-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.instagram-item {
    position: relative;
    display: block;
    width: 280px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
}

.instagram-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.instagram-icon {
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item:hover .instagram-icon {
    transform: scale(1);
}

.instagram-action {
    text-align: center;
    margin-top: 30px;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(193, 53, 132, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 53, 132, 0.4);
    color: white;
}

/* Instagram Responsive */
@media (max-width: 992px) {
    .instagram-item {
        width: calc(50% - 10px);
        min-width: 150px;
    }
}

@media (max-width: 500px) {
    .instagram-grid {
        gap: 10px;
    }

    .instagram-item {
        width: 100%;
        max-width: 350px;
    }

    .btn-instagram {
        width: 100%;
        justify-content: center;
    }
}


.event-body {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
}

.event-body p {
    margin-bottom: 24px;
}

.event-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 35px 0;
}

.event-nav {
    margin-top: 70px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 768px) {
    .event-article {
        padding: 30px 25px;
        margin: 0 15px;
    }

    .event-meta-box {
        flex-direction: column;
        gap: 20px;
    }

    .event-meta-item {
        min-width: auto;
    }

    .event-nav {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive / Mobile Style */
@media (max-width: 1200px) {
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    .menu-toggle {
        display: flex;
        /* Show hamburger */
    }
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        /* Drawer width */
        max-width: 300px;
        height: 100vh;
        overflow-y: auto;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 100px 30px 40px;        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1002;
        display: flex;
        flex-direction: column;    }

    .main-navigation.active {
        right: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        margin-bottom: 30px;
    }

    .main-navigation a {
        font-size: 1.2rem;
        /* Larger font for mobile */
        display: block;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    .main-navigation a::after {
        display: none;
        /* No underline anim on mobile */
    }

    /* Mobile Dropdown */
    .nav-dropdown-menu {
        position: static;
        display: block;
        box-shadow: none;
        background-color: #fafafa;
        padding: 0;
        margin: 8px 0 0;
        border-left: none;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 500px;
        opacity: 1;
    }

    .nav-dropdown-menu a {
        font-size: 1rem;
        padding: 10px 0 10px 32px;
        border-bottom: 1px solid #eee;
    }
    /* Move Actions to Mobile Menu or Keep in header? 
       Typically actions like Lang or Login might stay visible or move.
       For now, let's keep Lang/Login in header but adjust spacing.
    */
    /* Mobile Header Actions */
    .header-actions {
        display: flex;
        /* Keep flex to align items */
        margin-right: 50px;
        /* Space for hamburger */
        align-items: center;
    }

    .desk-only {
        display: none !important;
    }

    .nav-login-btn:not(.mobile-login-btn) {
        display: none;
    }

    .mobile-drawer-footer,
    .main-navigation .mobile-drawer-footer,
    header .main-navigation .mobile-drawer-footer {
        display: block !important;
        visibility: visible !important;
        height: auto !important;
        overflow: visible !important;
        margin-top: auto !important;
        padding: 20px 0 !important;
        border-top: 1px solid #eee;
    }    .mobile-login-btn {
        width: 100%;
        display: block;
        text-align: center;
    }
    /* We will need to optionally show Lang in the drawer via JS or CSS if moved.
       For now, let's target the lang-switcher if it's inside main-navigation for mobile
       (requires markup change) OR just style the one in header to be visible ONLY if we want.
       
       Actually, common pattern is to put lang switcher at bottom of drawer.
       Let's assume the user wants it visible in the header OR in the drawer. 
       The user said "Telefonos módban nem az igazi".
       Let's try to make it visible in the header NEXT to the hamburger?
    */

    .lang-switcher {
        display: flex;
        /* Always show language switcher even on mobile */
        margin-right: 15px;
        /* Space before hamburger */
        font-size: 0.85rem;
    }

    .lang-switcher .separator {
        display: block;
        /* Show separator */
        margin: 0 4px;
        color: #ccc;
    }

    .site-header {
        height: 60px;
        padding: 0 10px;
    }

    .hero-section {
        min-height: 500px;
        padding-top: 60px;
    }

    .hero-title {
        margin-bottom: 5px;
    }

    .site-branding .logo img {
        max-height: 35px;
        /* Smaller logo on mobile */
    }
}

/* Page Header */
.page-header {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 60px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3rem;
    margin: 0;
}

/* Apply Page Layout */
.apply-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.benefit-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-weight: 500;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Form Styles */
.apply-form-wrapper {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

@media (max-width: 1200px) {
    .apply-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========================================
   Repertoar Page Styles
   ======================================== */
.repertoar-page {
    padding-bottom: 80px;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.category-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 60px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-red);
}

.dance-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.dance-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.dance-card.reverse {
    flex-direction: row-reverse;
}

.dance-image {
    flex: 1;
    min-height: 350px;
    background-size: cover;
    background-position: center;
}

.dance-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dance-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.dance-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* Responsive Repertoar */
@media (max-width: 992px) {

    .dance-card,
    .dance-card.reverse {
        flex-direction: column;
    }

    .dance-image {
        min-height: 250px;
    }

    .dance-content {
        padding: 30px;
    }

    .category-title {
        font-size: 2rem;
        margin-top: 40px;
        margin-bottom: 30px;
    }
}

/* ========================================
   Gallery Page Styles
   ======================================== */
.gallery-page {
    padding-bottom: 80px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gallery-page .page-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 50px 0;
}

.gallery-filter-btn {
    padding: 12px 28px;
    border: 2px solid #ddd;
    background: #fff;
    color: #555;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.gallery-filter-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    transition: opacity 0.3s ease;
}

.gallery-grid.loading {
    opacity: 0.5;
    pointer-events: none;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-title {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.no-gallery-items,
.no-gallery-message {
    text-align: center;
    padding: 120px 20px;
    color: #666;
    grid-column: 1 / -1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #fff, #fcfcfc);
    border-radius: 20px;
    margin-bottom: 40px;
}

.no-gallery-message h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.8rem;
}

.no-gallery-message p {
    font-size: 1.1rem;
    opacity: 0.7;
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    opacity: 1;
}

/* Gallery Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .gallery-filters {
        gap: 10px;
    }

    .gallery-filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Folder Styles */
.gallery-section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.gallery-folders {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
    justify-items: center;
    align-items: start;
}

.gallery-folder {
    width: 100%;
    max-width: 280px;
}

.gallery-folder {
    text-decoration: none;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-folder:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.folder-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.folder-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.3));
}

.folder-info {
    padding: 20px 25px;
    background: #fff;
}

.folder-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.folder-count {
    font-size: 0.9rem;
    color: #888;
}

/* Gallery Breadcrumb */
.gallery-breadcrumb {
    margin-bottom: 30px;
}

.gallery-breadcrumb a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.gallery-breadcrumb a:hover {
    color: var(--hover-red);
}

/* Responsive Folders */
@media (min-width: 1024px) {
    .gallery-folders {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .gallery-folders {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .folder-image {
        height: 160px;
    }

    .folder-info {
        padding: 15px 20px;
    }

    .folder-title {
        font-size: 1.1rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   ETDS PAGE
   ═══════════════════════════════════════════════════════════════ */

.etds-page {
    --etds-gold: #d4a843;
    --etds-gold-light: #f5e6b8;
    --etds-gold-dark: #b08d2f;
}

/* Intro */
.etds-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

/* Feature Grid */
.etds-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.etds-feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.etds-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.etds-feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.etds-feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* BME & ETDS Section */
.etds-bme-section {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.etds-bme-content {
    flex: 1;
    padding: 50px;
}

.etds-bme-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.etds-bme-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.etds-bme-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

/* Der Tanzmaus Section */
.etds-tanzmaus {
    background: linear-gradient(135deg, var(--etds-gold-light), #fff8e1);
    border: 2px solid var(--etds-gold);
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.etds-tanzmaus::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--etds-gold);
    opacity: 0.1;
    border-radius: 50%;
}

.tanzmaus-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.etds-tanzmaus h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--etds-gold-dark);
}

.tanzmaus-story {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    max-width: 700px;
    margin: 0 auto 20px;
}

.tanzmaus-meta {
    font-size: 0.95rem;
    color: var(--etds-gold-dark);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.tanzmaus-bme {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
}

/* CTA Section */
.etds-cta {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, var(--primary-red), #e53935);
    border-radius: 16px;
    margin-bottom: 60px;
    color: white;
}

.etds-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: white;
}

.etds-cta-btn {
    background: white;
    color: var(--primary-red);
    border: 2px solid white;
    font-size: 1.1rem;
    padding: 14px 35px;
    transition: all 0.3s ease;
}

.etds-cta-btn:hover {
    background: transparent;
    color: white;
}

/* Responsive ETDS */
@media (max-width: 1024px) {
    .etds-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .etds-bme-section {
        flex-direction: column;
    }

    .etds-bme-image {
        width: 100%;
        min-height: 300px;
    }

    .etds-bme-content {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .etds-features {
        grid-template-columns: 1fr;
    }

    .etds-tanzmaus {
        padding: 35px 25px;
    }

    .etds-bme-content h2 {
        font-size: 1.6rem;
    }

    .etds-cta h2 {
        font-size: 1.4rem;
    }
}

/* Intermediate desktop breakpoint for navbar spacing */
@media (min-width: 1024px) and (max-width: 1280px) {
    .main-navigation ul {
        gap: 16px;
    }

    .main-navigation a {
        padding: 6px 10px;
    }
}

/* ========================================
   About Page (Rólunk) Styles
   ======================================== */

.about-page {
    padding-bottom: 80px;
}

.about-section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

/* ── History Section ── */
.about-history {
    margin-bottom: 60px;
}

.about-history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-history-text {
    padding: 20px 0;
}

.about-history-text .year-badge {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    font-size: 3rem;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    line-height: 1;
}

.about-history-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-history-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.about-history-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ── Inspiration Section ── */
.about-inspiration {
    margin-bottom: 60px;
}

.about-inspiration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-inspiration-image {
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    order: -1;
}

.about-inspiration-text {
    padding: 20px 0;
}

.about-inspiration-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-inspiration-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* ── Mission Section ── */
.about-mission {
    background: #f9f9f9;
    padding: 60px 40px;
    border-radius: 16px;
    margin-bottom: 60px;
    text-align: center;
}

.about-mission-inner {
    max-width: 800px;
    margin: 0 auto;
}

.about-mission h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-mission p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

/* ── Offers Section ── */
.about-offers {
    margin-bottom: 60px;
}

.about-offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-offer-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.about-offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-red);
}

.about-offer-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-red);
}

.about-offer-icon svg {
    width: 100%;
    height: 100%;
}

.about-offer-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.about-offer-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #666;
}

/* ── Achievements Timeline ── */
.about-achievements {
    margin-bottom: 60px;
}

.about-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 30px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-red), #ddd);
    border-radius: 3px;
}

.about-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.about-timeline-item:last-child {
    margin-bottom: 0;
}

.about-timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--primary-red);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-red);
}

.about-timeline-year {
    background: var(--primary-red);
    color: white;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 55px;
    text-align: center;
}

.about-timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    padding-top: 4px;
}

/* ── CTA Section ── */
.about-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-red), var(--hover-red));
    border-radius: 16px;
    color: white;
}

.about-cta h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.about-cta-btn {
    display: inline-block;
    background: white;
    color: var(--primary-red);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid white;
}

.about-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ── About Page Responsive ── */
@media (max-width: 1024px) {
    .about-offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-history-content,
    .about-inspiration-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-history-image,
    .about-inspiration-image {
        height: 250px;
        order: -1;
    }

    .about-history-text .year-badge {
        font-size: 2.2rem;
    }

    .about-mission {
        padding: 40px 25px;
    }

    .about-offers-grid {
        grid-template-columns: 1fr;
    }

    .about-cta {
        padding: 40px 25px;
    }

    .about-cta h2 {
        font-size: 1.5rem;
    }

    .about-timeline {
        padding-left: 25px;
    }

    .about-timeline-item::before {
        left: -31px;
    }
}

/* ========================================
   Temporary / Under Construction Pages
   ======================================== */
.temporary-page .page-header::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.58) 55%, rgba(0, 0, 0, 0.68) 100%);
}

.temporary-page .page-header .container {
    text-align: center;
}

.temporary-page .page-header .page-kicker {
    display: inline-block;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    padding: 7px 13px;
    background: rgba(25, 10, 10, 0.72);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.temporary-page .page-header .page-title {
    color: #fff;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9), 0 1px 2px rgba(0, 0, 0, 0.9);
}

.temporary-page-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
    padding-top: 0;
    padding-bottom: 80px;
}

.temporary-page-card {
    position: relative;
    width: 100%;
    max-width: 720px;
    padding: 64px 48px 58px;
    overflow: hidden;
    border: 1px solid #f0dddd;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff 0%, #fffafa 70%, #fff1f1 100%);
    box-shadow: 0 18px 42px rgba(80, 27, 27, 0.12);
    text-align: center;
}

.temporary-page-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, #a9161d 0%, #D32F2F 52%, #ef8c8c 100%);
    content: '';
}

.temporary-page-card::after {
    position: absolute;
    top: -90px;
    right: -60px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(211, 47, 47, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 0 20px rgba(211, 47, 47, 0.035), 0 0 0 42px rgba(211, 47, 47, 0.02);
    content: '';
    pointer-events: none;
}

.page-kicker,
.temporary-page-label {
    display: inline-block;
    color: #b21d23;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    line-height: 1.4;
    text-transform: uppercase;
}

.page-kicker {
    margin-bottom: 12px;
}

.temporary-page-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin-bottom: 24px;
    border: 1px solid #f0b9b9;
    border-radius: 50%;
    background: #fff1f1;
    box-shadow: 0 10px 24px rgba(211, 47, 47, 0.12);
    color: #c62828;
}

.temporary-page-icon svg {
    width: 34px;
    height: 34px;
}

.temporary-page-card .temporary-page-label {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
}

.temporary-page-card h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 16px;
    color: #1d2327;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    letter-spacing: -0.025em;
}

.temporary-page-card p {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto 30px;
    color: #62676b;
    font-size: 1.05rem;
    line-height: 1.7;
}

.temporary-page-button {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 999px;
    padding: 13px 24px;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.2);
}

.temporary-page-button span {
    font-size: 1.15rem;
    transition: transform 0.2s ease;
}

.temporary-page-button:hover span {
    transform: translateX(3px);
}

@media (max-width: 600px) {
    .temporary-page-content {
        min-height: 390px;
        padding: 0 20px 60px;
    }

    .temporary-page-card {
        padding: 48px 24px 42px;
        border-radius: 16px;
    }

    .temporary-page-card p {
        font-size: 0.98rem;
    }
}

/* ========================================
   Contact Page
   ======================================== */
.contact-page-content {
    padding-top: 0;
    padding-bottom: 90px;
}

.contact-intro {
    max-width: 680px;
    margin: 0 auto 42px;
    text-align: center;
}

.contact-intro p {
    margin: 0;
    color: #62676b;
    font-size: 1.08rem;
    line-height: 1.7;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}

.contact-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
    padding: 34px 24px 28px;
    overflow: hidden;
    border: 1px solid #f0dddd;
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff 0%, #fffafa 100%);
    box-shadow: 0 12px 30px rgba(80, 27, 27, 0.09);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #a9161d, #D32F2F, #ef8c8c);
    content: '';
}

.contact-card:hover {
    box-shadow: 0 18px 36px rgba(80, 27, 27, 0.14);
    transform: translateY(-5px);
}

.contact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    border: 1px solid #f0b9b9;
    border-radius: 50%;
    background: #fff1f1;
    color: #c62828;
}

.contact-card-icon svg {
    width: 30px;
    height: 30px;
}

.contact-card h2 {
    margin: 0 0 8px;
    color: #1d2327;
    font-size: 1.35rem;
}

.contact-handle {
    min-height: 24px;
    margin: 0 0 22px;
    color: #62676b;
    font-size: 0.98rem;
}

.contact-email-address {
    overflow-wrap: anywhere;
    font-size: 0.9rem;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    border-radius: 999px;
    padding: 10px 18px;
    background: #D32F2F;
    box-shadow: 0 8px 16px rgba(211, 47, 47, 0.18);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-card-link:hover {
    background: #b71c1c;
    color: #fff !important;
    transform: translateY(-2px);
}

.contact-card-link span {
    font-size: 1.05rem;
}

@media (max-width: 800px) {
    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .contact-card {
        min-height: 240px;
    }
}