
        :root {
            --white: #ffffff;
            --gray: #999999;
            --gold: #B39C59;
            --dark-gray: #1F1F1F;
            --black: #141414;
            --light-gold: rgba(179, 156, 89, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--black);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        /* Navigation - Transparent */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: transparent;
            z-index: 1000;
            padding: 2rem 0;
            transition: all 0.4s ease;
        }

        nav.scrolled {
            padding: 1rem 0;
            background: rgba(20, 20, 20, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(179, 156, 89, 0.2);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
            text-decoration: none;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo i {
            font-size: 1.5rem;
        }

        nav.scrolled .logo {
            font-size: 1.8rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.3s ease;
            position: relative;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        nav.scrolled .nav-links a {
            color: var(--gray);
            text-shadow: none;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            color: var(--white);
            font-size: 1.5rem;
        }

        nav.scrolled .mobile-menu {
            color: var(--white);
        }

        /* Hero Section */
        .hero img {
            filter: grayscale(100%);
            
        }

        .hero {
            min-height: 100vh;
            background: linear-gradient(to bottom, rgba(20,20,20,0.6) 0%, rgba(20,20,20,0.8) 50%, var(--black) 100%), url('img/sugaz-237.webp') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 8rem 2rem 4rem;
            position: relative;
        }

        .hero-content {
            max-width: 900px;
            z-index: 2;
        }

        .hero-subtitle {
            color: var(--gold);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 1.5rem;
            font-weight: 500;
            opacity: 0;
            transform: translateY(30px);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .hero-subtitle::before,
        .hero-subtitle::after {
            content: '';
            width: 50px;
            height: 1px;
            background: var(--gold);
        }

        .hero h1 {
            font-size: clamp(3rem, 6vw, 5rem);
            margin-bottom: 1.5rem;
            line-height: 1.1;
            color: var(--white);
            opacity: 0;
            transform: translateY(30px);
        }

        .hero-description {
            font-size: 1.25rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(30px);
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.2rem 3rem;
            background: transparent;
            color: var(--gold);
            border: 1px solid var(--gold);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .cta-button:hover {
            background: var(--gold);
            color: var(--black);
        }

        .cta-button i {
            transition: transform 0.3s ease;
        }

        .cta-button:hover i {
            transform: translateX(5px);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            color: var(--gold);
            font-size: 1.5rem;
            animation: bounce 2s infinite;
            opacity: 0;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        /* Section Styles */
        section {
            padding: 6rem 2rem;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-tag {
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .section-tag::before,
        .section-tag::after {
            content: '';
            width: 50px;
            height: 1px;
            background: var(--gold);
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin-bottom: 1rem;
            color: var(--white);
        }

        .section-subtitle {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* About Section */
        #onama {
            background: var(--dark-gray);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateX(-50px);
        }

        .about-image img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            filter: grayscale(20%);
            transition: all 0.5s ease;
        }

        .about-image:hover img {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        .about-content {
            opacity: 0;
            transform: translateX(50px);
        }

        .about-content h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .about-content p {
            color: var(--gray);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .highlight-text {
            color: var(--gold);
            font-weight: 600;
        }

        .info-box {
            background: var(--black);
            border-left: 3px solid var(--gold);
            padding: 1.5rem;
            margin-top: 2rem;
            opacity: 0;
            transform: translateY(20px);
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .info-box i {
            color: var(--gold);
            font-size: 1.5rem;
            margin-top: 0.25rem;
        }

        .info-box h4 {
            color: var(--gold);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .info-box p {
            margin: 0;
            color: var(--gray);
            font-size: 1rem;
        }

        /* History/Timeline Section - GSAP Enhanced */
        #povijest {
            background: var(--black);
            overflow: hidden;
        }

        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            width: 1px;
            height: 100%;
            background: var(--gold);
            transform: scaleY(0);
            transform-origin: top;
        }

        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: 50%;
            position: relative;
            margin-bottom: 4rem;
            opacity: 0;
        }

        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-right: 0;
            padding-left: 50%;
        }

        .timeline-content {
            background: var(--dark-gray);
            padding: 2rem;
            max-width: 400px;
            border: 1px solid rgba(179, 156, 89, 0.3);
            position: relative;
            transform: translateX(-100px);
            opacity: 0;
        }

        .timeline-item:nth-child(even) .timeline-content {
            transform: translateX(100px);
        }

        .timeline-dot {
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--gold);
            border-radius: 50%;
            top: 2rem;
            z-index: 10;
            box-shadow: 0 0 0 4px var(--black), 0 0 0 6px var(--gold);
            transform: scale(0);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .timeline-dot i {
            color: var(--black);
            font-size: 0.6rem;
        }

        .timeline-item:nth-child(odd) .timeline-dot {
            right: -60px;
        }

        .timeline-item:nth-child(even) .timeline-dot {
            left: -60px;
        }

        .timeline-year {
            color: var(--gold);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            font-family: 'Playfair Display', serif;
            opacity: 0;
            transform: translateY(10px);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .timeline-year i {
            font-size: 1rem;
        }

        .timeline-content h4 {
            color: var(--white);
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
            opacity: 0;
            transform: translateY(10px);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .timeline-content h4 i {
            color: var(--gold);
            font-size: 1rem;
        }

        .timeline-content p {
            color: var(--gray);
            font-size: 0.95rem;
            opacity: 0;
            transform: translateY(10px);
        }

        /* Games/Events Section */
        #turnir {
            background: var(--dark-gray);
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .game-card {
            background: var(--black);
            border: 1px solid rgba(179, 156, 89, 0.2);
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px);
        }

        .game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .game-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
        }

        .game-card:hover::before {
            transform: scaleX(1);
        }

        .game-icon {
            width: 70px;
            height: 70px;
            background: var(--light-gold);
            border: 1px solid rgba(179, 156, 89, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: all 0.3s ease;
        }

        .game-card:hover .game-icon {
            background: var(--gold);
            transform: scale(1.1);
        }

        .game-icon i {
            font-size: 1.75rem;
            color: var(--gold);
            transition: all 0.3s ease;
        }

        .game-card:hover .game-icon i {
            color: var(--black);
        }

        .game-card h3 {
            color: var(--white);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .game-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .featured-event {
            background: linear-gradient(135deg, rgba(179, 156, 89, 0.1) 0%, transparent 100%);
            border: 1px solid var(--gold);
            padding: 4rem;
            margin-top: 4rem;
            text-align: center;
            opacity: 0;
            transform: scale(0.9);
        }

        .featured-event h3 {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .featured-event p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .event-date {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            background: var(--gold);
            color: var(--black);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
        }

        /* Gallery Section with Lightbox */
        #galerija {
            background: var(--black);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1;
            cursor: pointer;
            opacity: 0;
            transform: scale(0.8);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: all 0.5s ease;
        }

        .gallery-item:hover img {
            filter: grayscale(0%);
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, var(--black), transparent);
            padding: 2rem 1rem 1rem;
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: var(--gold);
            font-size: 0.9rem;
        }

        .gallery-title {
            color: var(--gold);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .gallery-zoom-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 60px;
            height: 60px;
            background: rgba(179, 156, 89, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--black);
            font-size: 1.5rem;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .gallery-item:hover .gallery-zoom-icon {
            transform: translate(-50%, -50%) scale(1);
        }

        /* Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lightbox.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border: 2px solid var(--gold);
        }

        .lightbox-caption {
            color: var(--white);
            margin-top: 1rem;
            font-size: 1.1rem;
            text-align: center;
        }

        .lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: none;
            border: none;
            color: var(--gold);
            font-size: 2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-close:hover {
            color: var(--white);
            transform: rotate(90deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(179, 156, 89, 0.8);
            border: none;
            color: var(--black);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-nav:hover {
            background: var(--gold);
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-prev {
            left: -80px;
        }

        .lightbox-next {
            right: -80px;
        }

        .lightbox-counter {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--gray);
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .lightbox-prev {
                left: 10px;
            }
            .lightbox-next {
                right: 10px;
            }
            .lightbox-nav {
                width: 40px;
                height: 40px;
            }
        }

        /* Food Section */
        #hrana {
            background: var(--dark-gray);
        }

        .food-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .food-card {
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(179, 156, 89, 0.2);
            opacity: 0;
            transform: translateY(50px);
        }

        .food-card img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .food-card:hover img {
            transform: scale(1.05);
        }

        .food-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, var(--black), transparent);
            padding: 2rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .food-content i {
            color: var(--gold);
            font-size: 1.25rem;
            margin-top: 0.25rem;
        }

        .food-content h3 {
            color: var(--gold);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .food-content p {
            color: var(--gray);
            font-size: 0.95rem;
        }

        /* Contact Section - Updated without form */
        #kontakt {
            background: var(--dark-gray);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .contact-info-main {
            opacity: 0;
            transform: translateY(30px);
        }

        .contact-info-main h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-info-main h3 i {
            color: var(--gold);
        }

        .contact-info-main > p {
            color: var(--gray);
            margin-bottom: 2rem;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .contact-details-compact {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .contact-detail-card {
            background: var(--black);
            border: 1px solid rgba(179, 156, 89, 0.2);
            padding: 1.5rem;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .contact-detail-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
        }

        .contact-detail-card .icon-wrapper {
            width: 50px;
            height: 50px;
            background: var(--light-gold);
            border: 1px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: var(--gold);
            font-size: 1.25rem;
            transition: all 0.3s ease;
        }

        .contact-detail-card:hover .icon-wrapper {
            background: var(--gold);
            color: var(--black);
            transform: scale(1.1);
        }

        .contact-detail-card h4 {
            color: var(--gold);
            font-size: 1rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-detail-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0;
        }

        .contact-map {
            background: var(--black);
            border: 1px solid rgba(179, 156, 89, 0.2);
            padding: 2rem;
            opacity: 0;
            transform: translateY(30px);
            display: flex;
            flex-direction: column;
        }

        .contact-map h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-map h3 i {
            color: var(--gold);
        }

        .map-container {
            flex: 1;
            background: var(--dark-gray);
            border: 1px solid rgba(179, 156, 89, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 300px;
            position: relative;
            overflow: hidden;
        }

        .map-placeholder {
            text-align: center;
            padding: 2rem;
        }

        .map-placeholder i {
            font-size: 4rem;
            color: var(--gold);
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        .map-placeholder p {
            color: var(--gray);
            font-size: 1.1rem;
        }

        .map-address {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, var(--black), transparent);
            padding: 2rem 1.5rem 1.5rem;
        }

        .map-address p {
            color: var(--white);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .map-address i {
            color: var(--gold);
        }

        .social-connect {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(179, 156, 89, 0.2);
        }

        .social-connect h4 {
            color: var(--gold);
            font-size: 1rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .social-connect-grid {
            display: flex;
            gap: 1rem;
        }

        .social-connect-grid a {
            width: 50px;
            height: 50px;
            background: var(--light-gold);
            border: 1px solid rgba(179, 156, 89, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.25rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-connect-grid a:hover {
            background: var(--gold);
            color: var(--black);
            transform: translateY(-5px) scale(1.1);
        }

        /* Footer */
        footer {
            background: var(--black);
            border-top: 1px solid rgba(179, 156, 89, 0.2);
            padding: 4rem 2rem 2rem;
            text-align: center;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(20px);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .footer-logo i {
            font-size: 2rem;
        }

        .footer-text {
            color: var(--gray);
            max-width: 500px;
            margin: 0 auto 2rem;
            line-height: 1.8;
            opacity: 0;
            transform: translateY(20px);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(20px);
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .footer-links a i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .footer-links a:hover i {
            transform: translateX(3px);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(20px);
        }

        .social-links a {
            width: 50px;
            height: 50px;
            background: var(--dark-gray);
            border: 1px solid rgba(179, 156, 89, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.25rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--gold);
            color: var(--black);
            transform: translateY(-5px);
        }

        .copyright {
            color: var(--gray);
            font-size: 0.9rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(179, 156, 89, 0.2);
            opacity: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .copyright i {
            color: var(--gold);
            font-size: 0.8rem;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(20, 20, 20, 0.98);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                border-bottom: 1px solid var(--gold);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu {
                display: flex;
            }

            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .about-image img {
                height: 400px;
            }

            .games-grid,
            .gallery-grid,
            .food-grid {
                grid-template-columns: 1fr;
            }

            .contact-details-compact {
                grid-template-columns: 1fr;
            }

            .timeline-line {
                left: 30px;
            }

            .timeline-item,
            .timeline-item:nth-child(even) {
                padding-left: 80px;
                padding-right: 0;
                justify-content: flex-start;
            }

            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                transform: translateX(0);
            }

            .timeline-dot,
            .timeline-item:nth-child(odd) .timeline-dot,
            .timeline-item:nth-child(even) .timeline-dot {
                left: 20px;
                right: auto;
            }

            .footer-links {
                flex-direction: column;
                gap: 1.5rem;
            }
        }
