/* =============================================
   FEG Funding - Custom CSS
   v=7
   ============================================= */

/* ---- GT Walsheim Pro ---- */
@font-face {
    font-family: 'GT Walsheim Pro';
    src: url('/fonts/GTWalsheimPro-Light.woff2') format('woff2');
    font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'GT Walsheim Pro';
    src: url('/fonts/GTWalsheimPro-Regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'GT Walsheim Pro';
    src: url('/fonts/GTWalsheimPro-Medium.woff2') format('woff2');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'GT Walsheim Pro';
    src: url('/fonts/GTWalsheimPro-Bold.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'GT Walsheim Pro';
    src: url('/fonts/GTWalsheimPro-UltraBold.woff2') format('woff2');
    font-weight: 900; font-style: normal; font-display: swap;
}

:root {
    --feg-blue:      #2D2FD4;
    --feg-blue-dark: #1e20a8;
    --feg-pink:      #E91E8C;
    --feg-pink-dark: #c4176e;
    --feg-navy:      #0d0d2e;
    --feg-gray:      #59595c;
    --feg-text:      #555;
    --feg-border:    #e0e0e0;
    --feg-light:     #F5F5F7;
    --feg-white:     #ffffff;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { overflow-x: hidden; }

body {
    font-family: 'GT Walsheim Pro', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--feg-text);
    background: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    color: #1a1a2e;
    font-weight: 800;
}

a {
    color: var(--feg-blue);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover { color: var(--feg-pink); }

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

/* ---- Container ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.container-fluid { padding: 0 20px; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--feg-navy);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s, box-shadow 0.3s;
    height: 72px;
    display: flex;
    align-items: center;
}
.navbar.scrolled {
    background: var(--feg-navy);
    box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo lockup */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.82; }
.nav-logo-mark { height: 28px; width: auto; display: block; }
.nav-logo-divider {
    display: block;
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.25);
    margin: 0 14px;
    flex-shrink: 0;
}
.nav-logo-name {
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
    white-space: nowrap;
}
.nav-logo-text {
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.nav-logo-text span {
    color: var(--feg-pink);
    margin-left: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    vertical-align: middle;
}

/* Nav links */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0; padding: 0;
    gap: 0;
    align-items: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
    display: block;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.2s;
    white-space: nowrap;
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
}
.nav-links > li > a:hover,
.nav-links > li.active > a { color: var(--feg-pink); }

/* Dropdown */
.nav-links li.has-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--feg-navy);
    border: 1px solid rgba(255,255,255,0.1);
    border-top: 3px solid var(--feg-pink);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 100;
}
.nav-links li.has-dropdown:hover .dropdown-menu { display: block; }
.nav-links .dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.15s, color 0.15s;
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.nav-links .dropdown-menu li:last-child a { border-bottom: none; }
.nav-links .dropdown-menu li a:hover {
    background: rgba(255,255,255,0.06);
    color: var(--feg-pink);
}

/* Nav actions (lang + hamburger) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language toggle */
.nav-lang {
    display: flex;
    gap: 4px;
    align-items: center;
}
.nav-lang a {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    padding: 4px 8px;
    border: 1px solid transparent;
    border-radius: 3px;
    text-transform: uppercase;
    transition: all 0.2s;
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    letter-spacing: 1px;
}
.nav-lang a.active,
.nav-lang a:hover {
    color: #fff;
    border-color: var(--feg-pink);
    background: var(--feg-pink);
}
.nav-lang span { color: rgba(255,255,255,0.2); font-size: 11px; }

/* Mobile menu toggle */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

/* Mobile open state */
.nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--feg-navy);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 999;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
}
.nav-links.open > li > a { padding: 12px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-links.open .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    border-top: none;
    padding-top: 0;
    background: rgba(255,255,255,0.03);
}
.nav-links.open .dropdown-menu li a { padding-left: 36px; }

/* =============================================
   HERO / SLIDER
   ============================================= */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    margin-top: 0;
    padding-top: 72px;
}
.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 72px);
    min-height: 520px;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    /* Default FEG blue background when no image */
    background-color: var(--feg-blue);
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,13,46,0.75) 0%, rgba(45,47,212,0.45) 60%, transparent 100%);
}
/* Hero inner wrapper — caps content width on large screens */
.hero-inner {
    position: absolute;
    inset: 0;
    max-width: 1600px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    bottom: 12%;
    left: 6%;
    transform: none;
    text-align: left;
    color: #fff;
    z-index: 2;
    width: 44%;
    max-width: 580px;
    pointer-events: all;
}

@keyframes playerFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-18px); }
}

/* Soccer player image overlaid on right side of hero */
.hero-player {
    position: absolute;
    bottom: 0;
    right: 3%;
    height: 96%;
    z-index: 2;
    pointer-events: none;
}
.hero-player img {
    height: 100%;
    width: auto;
    display: block;
}
.hero-player.floating {
    animation: playerFloat 4s ease-in-out infinite;
}
.hero-content h1 {
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero-content p {
    font-size: clamp(14px, 1.8vw, 18px);
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    font-weight: 400;
    max-width: 580px;
}
.hero-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--feg-pink);
    color: #fff !important;
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 40px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(233,30,140,0.4);
}
.hero-btn:hover {
    background: var(--feg-pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(233,30,140,0.5);
    color: #fff !important;
}

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background 0.2s, width 0.2s;
}
.slider-dot.active {
    background: var(--feg-pink);
    width: 24px;
    border-radius: 4px;
}

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 48px; height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.2s, border-color 0.2s;
}
.slider-arrow:hover {
    background: var(--feg-pink);
    border-color: var(--feg-pink);
}
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* =============================================
   SECTIONS - Common
   ============================================= */
.section { padding: 88px 0; }
.section-alt { background: var(--feg-light); }
.section-dark {
    background: var(--feg-navy);
    color: #fff;
}
.section-title {
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    text-align: center;
    color: var(--feg-navy);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    line-height: 1;
}
.section-title-dark { color: #fff; }
.section-subtitle {
    text-align: center;
    color: var(--feg-text);
    font-size: 16px;
    margin-bottom: 56px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.section-divider {
    width: 56px;
    height: 4px;
    background: var(--feg-pink);
    margin: 0 auto 48px;
    display: block;
    border-radius: 2px;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section { background: #fff; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-grid--no-image {
    grid-template-columns: 1fr;
    max-width: 860px;
    margin: 0 auto;
}
.about-text h2 {
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: var(--feg-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1;
}
.about-text p {
    font-size: 16px;
    color: var(--feg-text);
    margin-bottom: 16px;
    line-height: 1.75;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 36px;
}
.stat-item {
    text-align: center;
    padding: 28px 16px;
    background: var(--feg-navy);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}
.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--feg-pink);
}
.stat-number {
    display: block;
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* =============================================
   BONDS / DLUHOPISY SECTION
   ============================================= */
.bonds-section { background: #fff; }
.bond-issue {
    background: #fff;
    border: 1px solid var(--feg-border);
    border-left: 4px solid var(--feg-blue);
    border-radius: 4px;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
}
.bond-issue:hover { box-shadow: 0 4px 16px rgba(45,47,212,0.1); }
.bond-header {
    background: var(--feg-light);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s;
}
.bond-header:hover { background: #ebebf5; }
.bond-title {
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--feg-navy);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bond-isin {
    font-size: 13px;
    color: #999;
    margin-top: 4px;
    font-family: monospace;
}
.bond-toggle-icon {
    font-size: 18px;
    color: var(--feg-blue);
    transition: transform 0.3s;
}
.bond-issue.open .bond-toggle-icon { transform: rotate(180deg); }
.bond-body {
    display: none;
    padding: 0;
}
.bond-issue.open .bond-body { display: block; }

/* Document table */
.doc-table {
    width: 100%;
    border-collapse: collapse;
}
.doc-table th {
    background: var(--feg-navy);
    padding: 10px 16px;
    text-align: left;
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: none;
}
.doc-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: var(--feg-text);
    vertical-align: middle;
}
.doc-table tr:last-child td { border-bottom: none; }
.doc-table tr:hover td { background: rgba(45,47,212,0.03); }
.doc-table .doc-name { font-weight: 600; color: #222; }
.doc-table .doc-date { color: #aaa; white-space: nowrap; }
.doc-table .doc-size { color: #aaa; white-space: nowrap; font-size: 12px; }
.doc-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--feg-pink);
    color: #fff !important;
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.doc-download:hover { background: var(--feg-pink-dark); color: #fff !important; }

/* =============================================
   FINANCIAL REPORTS SECTION
   ============================================= */
.reports-section { background: var(--feg-light); }

/* =============================================
   NEWS SECTION
   ============================================= */
.news-section { background: var(--feg-light); }
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}
.news-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    border-bottom: 3px solid transparent;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(45,47,212,0.12);
    border-bottom-color: var(--feg-pink);
}
.news-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--feg-light);
}
.news-card-body { padding: 22px; }
.news-card-date {
    font-size: 12px;
    color: var(--feg-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
}
.news-card-title {
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--feg-navy);
    margin-bottom: 10px;
    line-height: 1.2;
    text-transform: uppercase;
}
.news-card-excerpt {
    font-size: 14px;
    color: var(--feg-text);
    line-height: 1.65;
    margin-bottom: 18px;
}
.news-card-link {
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--feg-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.news-card-link:hover { color: var(--feg-pink); }
.news-more-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 13px 36px;
    background: transparent;
    border: 2px solid var(--feg-blue);
    color: var(--feg-blue);
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 40px;
    transition: all 0.25s;
}
.news-more-btn:hover {
    background: var(--feg-blue);
    color: #fff !important;
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery-section { background: #fff; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border-radius: 3px;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45,47,212,0.55);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { font-size: 28px; color: #fff; }

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: 3px; }
.lightbox-close {
    position: absolute;
    top: 20px; right: 24px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
    background: linear-gradient(135deg, var(--feg-navy) 0%, #1a1a6e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.contact-section::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(233,30,140,0.06);
    pointer-events: none;
}
.contact-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: rgba(45,47,212,0.15);
    pointer-events: none;
}
.contact-section .section-title { color: #fff; letter-spacing: 4px; }
.contact-section .section-divider { background: var(--feg-pink); }
.contact-section .contact-info h3,
.contact-section .contact-form h3 {
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--feg-pink);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-section .contact-detail-text,
.contact-section .contact-detail-text strong { color: rgba(255,255,255,0.7); }
.contact-section .contact-detail-text strong {
    color: var(--feg-pink);
    font-size: 11px;
    letter-spacing: 1px;
}
.contact-section .contact-detail-icon {
    background: rgba(233,30,140,0.15);
    color: var(--feg-pink);
    border: 1px solid rgba(233,30,140,0.3);
}
.contact-section .contact-detail-text a { color: rgba(255,255,255,0.7); }
.contact-section .contact-detail-text a:hover { color: var(--feg-pink); }
.contact-section .form-control {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    border-radius: 3px;
}
.contact-section .form-control:focus {
    border-color: var(--feg-pink);
    background: rgba(255,255,255,0.1);
    outline: none;
}
.contact-section .form-control::placeholder { color: rgba(255,255,255,0.25); }
.contact-section label { color: rgba(255,255,255,0.45); font-size: 11px; letter-spacing: 1px; }
.contact-section .btn-submit {
    background: var(--feg-pink);
    border: none;
    color: #fff;
    letter-spacing: 2px;
    border-radius: 40px;
    transition: background 0.2s, box-shadow 0.2s;
}
.contact-section .btn-submit:hover {
    background: var(--feg-pink-dark);
    box-shadow: 0 4px 16px rgba(233,30,140,0.4);
}
.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start;
}
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-submit-row { margin-top: 8px; }
.btn-submit { width: auto; padding: 13px 40px; }
.contact-info h3 {
    font-size: 22px;
    color: var(--feg-blue);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 2px solid rgba(233,30,140,0.3);
}
.contact-detail-icon {
    width: 34px; height: 34px;
    background: transparent;
    color: var(--feg-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    border: 1px solid rgba(233,30,140,0.3);
}
.contact-detail-text { font-size: 14px; color: var(--feg-text); }
.contact-detail-text strong {
    display: block;
    color: #333;
    font-size: 11px;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-form h3 {
    font-size: 22px;
    color: var(--feg-blue);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}
.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--feg-border);
    border-radius: 3px;
    font-size: 14px;
    font-family: 'GT Walsheim Pro', inherit;
    color: #333;
    background: #fff;
    transition: border-color 0.2s;
    outline: none;
}
.form-control:focus { border-color: var(--feg-blue); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-honeypot { display: none; }
.btn-submit {
    width: 100%;
    padding: 13px 24px;
    background: var(--feg-blue);
    color: #fff;
    border: none;
    border-radius: 40px;
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-submit:hover { background: var(--feg-blue-dark); }
.form-success {
    display: none;
    padding: 16px;
    background: rgba(120,190,32,0.15);
    color: #3a7d1e;
    border: 1px solid rgba(120,190,32,0.3);
    border-radius: 3px;
    font-size: 14px;
    margin-top: 12px;
}
.form-error {
    display: none;
    padding: 16px;
    background: rgba(233,30,140,0.1);
    color: #c4176e;
    border: 1px solid rgba(233,30,140,0.25);
    border-radius: 3px;
    font-size: 14px;
    margin-top: 12px;
}

/* =============================================
   NEWS DETAIL PAGE
   ============================================= */
.news-detail { padding-top: 110px; padding-bottom: 80px; }
.news-detail-header { margin-bottom: 32px; }
.news-detail-title {
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-size: clamp(26px, 4vw, 42px);
    color: var(--feg-navy);
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1.1;
}
.news-detail-meta { font-size: 13px; color: var(--feg-blue); font-weight: 600; letter-spacing: 0.5px; }
.news-detail-content { font-size: 16px; line-height: 1.85; color: var(--feg-text); }
.news-detail-content p { margin-bottom: 20px; }
.news-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    color: var(--feg-blue);
    font-weight: 600;
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}
.news-back:hover { color: var(--feg-pink); }

/* News index */
.news-index { padding-top: 110px; padding-bottom: 80px; }
.news-index-title {
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-size: clamp(36px, 6vw, 60px);
    color: var(--feg-navy);
    text-transform: uppercase;
    margin-bottom: 48px;
    text-align: center;
    font-weight: 900;
    letter-spacing: 2px;
}

/* =============================================
   BANNER IMAGE SECTION
   ============================================= */
.banner-image-section {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    line-height: 0;
    overflow: hidden;
}
.banner-image-section img { width: 100%; height: 400px; object-fit: cover; display: block; }

/* =============================================
   GALLERY INDEX PAGE
   ============================================= */
.gallery-index { padding-top: 110px; padding-bottom: 80px; }
.gallery-albums-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gallery-album-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.gallery-album-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.gallery-album-card:hover img { transform: scale(1.06); }
.gallery-album-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 35%, rgba(13,13,46,0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.gallery-album-title {
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--feg-navy);
    color: #fff;
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-lockup {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.footer-logo-mark { height: 24px; width: auto; display: block; }
.footer-logo-divider {
    display: block;
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.2);
    margin: 0 12px;
    flex-shrink: 0;
}
.footer-logo-name {
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
    white-space: nowrap;
}
.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    margin: 16px 0 20px;
}
.footer-brand .footer-logo { height: 40px; width: auto; }
.footer-logo-text {
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}
.footer-logo-text span {
    color: var(--feg-pink);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    vertical-align: middle;
    margin-left: 6px;
}
.footer-address { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; }
.footer-col h4 {
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--feg-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-col .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.footer-col .footer-contact-item i { color: var(--feg-pink); width: 14px; }
.footer-col .footer-contact-item a { color: rgba(255,255,255,0.5); }
.footer-col .footer-contact-item a:hover { color: #fff; }
.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: #fff; }

/* =============================================
   PAGE CONTENT (for CMS pages)
   ============================================= */
.page-content { padding-top: 110px; padding-bottom: 80px; }
.page-header {
    margin-top: 72px;
    padding: 16px 0;
    border-bottom: 1px solid var(--feg-border);
    background: var(--feg-light);
}
.page-header-breadcrumb {
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.page-header-breadcrumb a { color: var(--feg-blue); }
.page-header-breadcrumb a:hover { color: var(--feg-pink); }
.page-header-breadcrumb span { margin: 0 8px; }
.page-header-title {
    font-family: 'GT Walsheim Pro', Arial, sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--feg-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { order: -1; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
    .hero-inner { transform: none; left: 0; }
    .hero-content {
        left: 50%;
        transform: translateX(-50%);
        width: 88%;
        max-width: 640px;
        text-align: center;
    }
    .hero-player { display: none; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    .nav-links { display: none; }
    .nav-links.open { display: flex; }

    .hero-content h1 { font-size: clamp(40px, 12vw, 72px); }
    .section { padding: 64px 0; }
    .news-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .form-row-2 { grid-template-columns: 1fr; }
    .gallery-albums-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 48px; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
}
