/* ============================================
   VOLLEYBALL ELITE GALLERY - STYLES
   Design: Modern Athletic Minimalism with Cinematic Depth
   Colors: Deep Navy (#0F1419), Vibrant Gold (#FFB81C)
   Typography: Poppins (Display) + Inter (Body)
   Mobile-First Responsive Design
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0F1419;
    color: #6B7280;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-weight: 700;
}

p {
    font-family: 'Inter', sans-serif;
    color: #9CA3AF;
}

/* ============================================
   NAVIGATION BAR - MOBILE FIRST
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(15, 20, 25, 0.7);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(255, 184, 28, 0.1);
    padding: 0.75rem 1rem;
}

.navbar.scrolled {
    background-color: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFB81C;
    letter-spacing: -0.5px;
}

.logo-text.dynamic-logo {
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 50%, rgba(255, 255, 255, 0.3) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: halfFade 3s ease-in-out infinite;
}

@keyframes halfFade {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.volleyball-icon {
    width: 28px;
    height: 28px;
    animation: volleyballBounce 1.2s ease-in-out infinite;
}

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

.nav-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFB81C;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #FFB81C;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
    z-index: 10000;
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background-color: #FFB81C;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.nav-menu.active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0F1419;
    background-image: radial-gradient(circle at top right, rgba(255, 184, 28, 0.05), transparent);
    backdrop-filter: blur(20px);
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    z-index: 9999;
    overflow-y: auto;
    align-items: center;
    text-align: center;
    animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-menu.active .nav-link {
    width: 100%;
    padding: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.nav-menu.active .nav-link:last-child {
    border-bottom: none;
}

.nav-menu.active .nav-link:hover {
    color: #FFB81C !important;
    background-color: rgba(255, 184, 28, 0.05);
}

/* Blur overlay for mobile nav */
body.nav-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 998;
    animation: fadeIn 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Desktop Navigation */
@media (min-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .navbar-container {
        padding: 0;
    }

    .nav-menu {
        display: flex !important;
        flex-direction: row;
        gap: 2rem;
        align-items: center;
    }

    .hamburger {
        display: none;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .volleyball-icon {
        width: 32px;
        height: 32px;
    }
}

/* ============================================
   HERO SECTION - MOBILE FIRST
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.6) 0%, rgba(15, 20, 25, 0.3) 50%, transparent 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #FFB81C;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.hero-cta-row {
    flex-direction: row;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    color: #FFB81C;
    font-size: 0.9rem;
    font-weight: 500;
}

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

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

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

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

    .logo-text {
        font-size: 1.5rem;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #FFB81C;
    color: #0F1419;
    border: 2px solid #FFB81C;
}

.btn-primary:hover {
    background-color: transparent;
    color: #FFB81C;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 184, 28, 0.3);
}

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

.btn-secondary:hover {
    background-color: #FFB81C;
    color: #0F1419;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 184, 28, 0.3);
}

/* ============================================
   SECTION STYLES - MOBILE FIRST
   ============================================ */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFB81C;
    border-radius: 2px;
}

.section-subtitle {
    color: #9CA3AF;
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .section-container {
        padding: 3rem 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

/* ============================================
   SPOTLIGHTS SECTION
   ============================================ */
.spotlights {
    background-color: #0F1419;
    padding: 2rem 0;
}

.spotlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.spotlight-card {
    background-color: #1A2332;
    border: 2px dashed #FFB81C;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 0.6s ease-out;
}

.spotlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 184, 28, 0.2);
    border-color: #FFB81C;
}

.spotlight-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #0F1419;
}

.spotlight-content {
    padding: 1.5rem;
}

.spotlight-date {
    color: #FFB81C;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.spotlight-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #FFFFFF;
}

.spotlight-description {
    color: #9CA3AF;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .spotlights-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .spotlight-image {
        height: 250px;
    }
}

/* ============================================
   GALLERY SECTION - HORIZONTAL SCROLL
   ============================================ */
.gallery {
    background-color: #0F1419;
    padding: 2rem 0;
}

.gallery-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.search-input,
.filter-select {
    padding: 0.75rem 1rem;
    border: 2px dashed #FFB81C;
    background-color: #1A2332;
    color: #FFFFFF;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: #6B7280;
}

.search-input:focus,
.filter-select:focus {
    outline: none;
    border-color: #FFB81C;
    box-shadow: 0 0 15px rgba(255, 184, 28, 0.2);
}

.gallery-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #FFB81C #1A2332;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 1rem;
    padding-right: 1rem;
}

.gallery-container::-webkit-scrollbar {
    height: 6px;
}

.gallery-container::-webkit-scrollbar-track {
    background: #1A2332;
    border-radius: 10px;
}

.gallery-container::-webkit-scrollbar-thumb {
    background: #FFB81C;
    border-radius: 10px;
}

.gallery-item {
    flex: 0 0 280px;
    background-color: #1A2332;
    border: 2px dashed #FFB81C;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInLeft 0.6s ease-out;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 184, 28, 0.2);
    border-color: #FFB81C;
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #0F1419;
}

.gallery-info {
    padding: 1rem;
}

.gallery-title {
    font-size: 1rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-description {
    font-size: 0.8rem;
    color: #9CA3AF;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (min-width: 768px) {
    .gallery-controls {
        flex-direction: row;
        gap: 1rem;
    }

    .search-input {
        flex: 1;
    }

    .gallery-item {
        flex: 0 0 320px;
    }

    .gallery-image {
        height: 240px;
    }
}

/* ============================================
   VIDEOS SECTION
   ============================================ */
.videos {
    background-color: #0F1419;
    padding: 2rem 0;
}

.videos-controls {
    margin-bottom: 2rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.video-card {
    background-color: #1A2332;
    border: 2px dashed #FFB81C;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 0.6s ease-out;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 184, 28, 0.2);
    border-color: #FFB81C;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #0F1419;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: #FFB81C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-play-btn::after {
    content: '▶';
    color: #0F1419;
    font-size: 1.5rem;
    margin-left: 3px;
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 10px 30px rgba(255, 184, 28, 0.4);
}

.video-content {
    padding: 1.5rem;
}

.video-date {
    color: #FFB81C;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-title {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-description {
    color: #9CA3AF;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .video-thumbnail {
        height: 250px;
    }
}

/* ============================================
   EVENT HISTORY SECTION - PREMIUM TIMELINE
   ============================================ */
.events {
    background-color: #0F1419;
    padding: 2rem 0;
}

.events-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.events-timeline {
    position: relative;
    padding: 1rem 0;
}

/* Timeline line */
.events-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #FFB81C 0%, #FFB81C 50%, rgba(255, 184, 28, 0.3) 100%);
    border-radius: 2px;
}

.event-item {
    position: relative;
    padding-left: 80px;
    padding-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.event-item:last-child {
    padding-bottom: 0;
}

/* Timeline dot */
.event-item::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: #FFB81C;
    border: 3px solid #0F1419;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.event-item:hover::before {
    width: 32px;
    height: 32px;
    left: 4px;
    box-shadow: 0 0 20px rgba(255, 184, 28, 0.5);
}

.event-card {
    background: linear-gradient(135deg, #1A2332 0%, #1F2937 100%);
    border-left: 4px solid #FFB81C;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.event-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(255, 184, 28, 0.15);
    border-left-width: 6px;
}

.event-date {
    color: #FFB81C;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.event-title {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.event-teams {
    color: #9CA3AF;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-score {
    display: inline-block;
    background-color: #FFB81C;
    color: #0F1419;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 0.75rem;
}

.event-result {
    display: inline-block;
    color: #FFB81C;
    font-weight: 600;
    font-size: 0.9rem;
}

.event-location {
    color: #9CA3AF;
    font-size: 0.85rem;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .events-controls {
        flex-direction: row;
        gap: 1rem;
    }

    .search-input {
        flex: 1;
    }

    .events-timeline::before {
        left: 40px;
    }

    .event-item {
        padding-left: 120px;
    }

    .event-item::before {
        left: 28px;
    }

    .event-item:hover::before {
        left: 24px;
    }

    .event-card {
        padding: 2rem;
    }
}

/* ============================================
   PLAYERS SECTION - PROFESSIONAL PROFILES
   ============================================ */
.players {
    background-color: #0F1419;
    padding: 2rem 0;
}

.players-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.player-card {
    background: linear-gradient(135deg, #1A2332 0%, #1F2937 100%);
    border: 2px dashed #FFB81C;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 0.6s ease-out;
}

.player-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(255, 184, 28, 0.2);
    border-color: #FFB81C;
}

.player-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #0F1419;
    transition: all 0.4s ease;
}

.player-card:hover .player-image {
    filter: brightness(1.1) contrast(1.1);
}

.player-info {
    padding: 1.5rem;
}

.player-name {
    font-size: 1.3rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.player-position {
    color: #FFB81C;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.player-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-box {
    background-color: rgba(255, 184, 28, 0.1);
    border: 1px solid rgba(255, 184, 28, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.player-card:hover .stat-box {
    background-color: rgba(255, 184, 28, 0.15);
    border-color: #FFB81C;
}

.stat-value {
    font-size: 1.3rem;
    color: #FFB81C;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 0.3rem;
}

.player-description {
    color: #9CA3AF;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .players-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .player-card {
        display: flex;
        flex-direction: column;
    }

    .player-image {
        height: 300px;
    }

    .player-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .players-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #1A2332 0%, #0F1419 100%);
    border-top: 1px solid rgba(255, 184, 28, 0.1);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-content h3 {
    color: #FFB81C;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.footer-content p {
    color: #9CA3AF;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    border-top: 1px solid rgba(255, 184, 28, 0.1);
    border-bottom: 1px solid rgba(255, 184, 28, 0.1);
    padding: 1.5rem 0;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFB81C;
}

.footer-bottom {
    text-align: center;
    color: #6B7280;
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .footer-container {
        padding: 0 2rem;
    }

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

/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
}

.modal-body {
    width: 100%;
    height: 100%;
}

.modal-body img,
.modal-body video {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #FFB81C;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
}

.modal-close:hover {
    transform: rotate(90deg);
    color: #FFFFFF;
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (min-width: 768px) {
    .modal-close {
        top: 20px;
        right: 30px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.hidden {
    display: none !important;
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.65rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
