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

        :root {
            --deep-red: #5a0d0d;
            --blood-red: #8b1c1c;
            --dark-bg: #0a0000;
            --cream: #f4ebe0;
            --gold: #d4af37;
            --stone: #9b8b7e;
        }

        /* ========== MUZYKA TŁA ========== */
        #background-music {
            display: none;
        }

        /* Przycisk kontroli muzyki */
        .music-control {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 99999;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--blood-red), var(--deep-red));
            border: 3px solid var(--gold);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 
                0 5px 20px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(212, 175, 55, 0.3);
            animation: musicPulse 2s ease-in-out infinite;
            outline: none;
        }

        .music-control:hover {
            transform: scale(1.15) rotate(10deg);
            box-shadow: 
                0 8px 30px rgba(0, 0, 0, 0.7),
                0 0 30px rgba(212, 175, 55, 0.6);
        }

        .music-control:active {
            transform: scale(0.95);
        }

        .music-icon {
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
        }

        .music-control.playing {
            animation: musicPulse 1s ease-in-out infinite;
        }

        @keyframes musicPulse {
            0%, 100% {
                box-shadow: 
                    0 5px 20px rgba(0, 0, 0, 0.5),
                    0 0 20px rgba(212, 175, 55, 0.3);
            }
            50% {
                box-shadow: 
                    0 8px 30px rgba(0, 0, 0, 0.6),
                    0 0 40px rgba(212, 175, 55, 0.6);
            }
        }

        /* ========== SPLASH SCREEN - CZYSTY FILM INTRO ========== */
        .splash-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10000;
            background: #000;
            animation: splashFadeOut 1s ease-in-out 5s forwards;
            overflow: hidden;
        }

        .splash-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }

        @keyframes splashFadeOut {
            0% {
                opacity: 1;
                visibility: visible;
            }
            90% {
                opacity: 0.1;
            }
            100% {
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
            }
        }

        /* ========== GŁÓWNA STRONA - UKRYTA NA POCZĄTKU ========== */
        .page-wrapper {
            opacity: 0;
            animation: pageAppear 1.2s ease-out 5.5s forwards;
        }

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

        body {
            font-family: 'Crimson Text', serif;
            background: url('../images/gargoyle-background.jpg') center center no-repeat fixed;
            background-size: cover;
            color: var(--cream);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
            overflow-y: auto;
        }

        /* Animated dark overlay */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at top, rgba(139, 28, 28, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(90, 13, 13, 0.3) 0%, transparent 50%),
                rgba(0, 0, 0, 0.4);
            z-index: 0;
            pointer-events: none;
            animation: pulseOverlay 8s ease-in-out infinite;
        }

        @keyframes pulseOverlay {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        /* Floating particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(212, 175, 55, 0.6);
            border-radius: 50%;
            animation: float 15s infinite;
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Container */
        .page-wrapper {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            background: transparent;
            min-height: 100vh;
            z-index: 1;
        }

        /* Header with dramatic entrance */
        .header {
            background: linear-gradient(180deg, 
                rgba(90, 13, 13, 0.98) 0%, 
                rgba(139, 28, 28, 0.95) 50%,
                rgba(90, 13, 13, 0.98) 100%);
            padding: 2rem 0;
            border-bottom: 3px solid var(--gold);
            position: relative;
            backdrop-filter: blur(8px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
            animation: headerEntrance 1.2s ease-out;
        }

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

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent, 
                var(--gold) 20%, 
                var(--gold) 80%, 
                transparent);
            animation: scanline 3s linear infinite;
        }

        @keyframes scanline {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .header::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            right: 0;
            height: 10px;
            background: repeating-linear-gradient(
                90deg,
                transparent,
                transparent 10px,
                rgba(212, 175, 55, 0.4) 10px,
                rgba(212, 175, 55, 0.4) 20px
            );
            animation: borderPulse 2s ease-in-out infinite;
        }

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

        .logo-container {
            text-align: center;
            margin-bottom: 1.5rem;
            animation: logoGlow 3s ease-in-out infinite;
        }

        @keyframes logoGlow {
            0%, 100% {
                filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
            }
            50% {
                filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.6));
            }
        }

        .logo-title {
            font-family: 'Cinzel', serif;
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 700;
            color: var(--cream);
            text-shadow: 
                3px 3px 6px rgba(0, 0, 0, 0.9),
                0 0 30px rgba(212, 175, 55, 0.5),
                0 0 60px rgba(139, 28, 28, 0.3);
            letter-spacing: 0.1em;
            line-height: 1.2;
            animation: titlePulse 4s ease-in-out infinite;
        }

        @keyframes titlePulse {
            0%, 100% {
                transform: scale(1);
                letter-spacing: 0.1em;
            }
            50% {
                transform: scale(1.02);
                letter-spacing: 0.15em;
            }
        }

        .logo-subtitle {
            font-family: 'Cinzel', serif;
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            color: var(--gold);
            text-shadow: 
                2px 2px 4px rgba(0, 0, 0, 0.9),
                0 0 20px rgba(212, 175, 55, 0.6);
            letter-spacing: 0.3em;
            margin-top: 0.5rem;
            animation: subtitleFloat 3s ease-in-out infinite;
        }

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

        .social-icons {
            text-align: center;
            margin-top: 1rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }

        .social-icon {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #3b5998;
            color: white;
            text-align: center;
            line-height: 40px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
        }

        .social-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .social-icon:hover::before {
            width: 200%;
            height: 200%;
        }

        .social-icon.youtube {
            background: #ff0000;
        }

        .social-icon.twitter {
            background: #1da1f2;
        }

        .social-icon:hover {
            transform: scale(1.2) rotate(5deg);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
        }

        /* Navigation with enhanced effects */
        .nav {
            background: rgba(0, 0, 0, 0.7);
            border-top: 2px solid rgba(212, 175, 55, 0.4);
            border-bottom: 2px solid rgba(212, 175, 55, 0.4);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            position: relative;
        }

        .nav::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent,
                rgba(212, 175, 55, 0.1) 50%,
                transparent);
            animation: navShine 4s linear infinite;
            pointer-events: none;
        }

        @keyframes navShine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .nav-list {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: block;
            padding: 1rem 2rem;
            color: var(--cream);
            text-decoration: none;
            font-family: 'Cinzel', serif;
            font-size: 1rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border-right: 1px solid rgba(212, 175, 55, 0.2);
            position: relative;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--gold);
            transform: translateX(-50%);
            transition: width 0.4s ease;
            box-shadow: 0 0 10px var(--gold);
        }

        .nav-link:hover::before,
        .nav-link.active::before {
            width: 80%;
        }

        .nav-item:last-child .nav-link {
            border-right: none;
        }

        .nav-link:hover,
        .nav-link.active {
            background: linear-gradient(180deg, 
                rgba(139, 28, 28, 0.8),
                rgba(90, 13, 13, 0.8));
            color: var(--gold);
            transform: translateY(-3px);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
            box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.2);
        }

        /* Main Content with entrance animation */
        .main-content {
            padding: 3rem 2rem;
            max-width: 1000px;
            margin: 0 auto;
            min-height: 60vh;
            background: linear-gradient(180deg,
                rgba(90, 13, 13, 0.85) 0%,
                rgba(139, 28, 28, 0.75) 50%,
                rgba(90, 13, 13, 0.85) 100%);
            backdrop-filter: blur(5px);
            box-shadow: 
                inset 0 0 50px rgba(0, 0, 0, 0.5),
                0 0 50px rgba(0, 0, 0, 0.8);
            border-left: 2px solid rgba(212, 175, 55, 0.3);
            border-right: 2px solid rgba(212, 175, 55, 0.3);
            position: relative;
        }

        .main-content::before,
        .main-content::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            height: 100px;
            pointer-events: none;
        }

        .main-content::before {
            top: 0;
            background: linear-gradient(180deg, 
                rgba(90, 13, 13, 0.9), 
                transparent);
        }

        .main-content::after {
            bottom: 0;
            background: linear-gradient(0deg, 
                rgba(90, 13, 13, 0.9), 
                transparent);
        }

        .page-section {
            display: none;
            animation: fadeInUp 0.8s ease-out;
        }

        .page-section.active {
            display: block;
        }

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

        .page-title {
            font-family: 'Cinzel', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--gold);
            text-align: center;
            margin-bottom: 3rem;
            text-shadow: 
                3px 3px 6px rgba(0, 0, 0, 0.8),
                0 0 30px rgba(212, 175, 55, 0.6);
            letter-spacing: 0.15em;
            position: relative;
            animation: titleEntrance 1s ease-out;
        }

        @keyframes titleEntrance {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent, 
                var(--gold), 
                transparent);
            animation: underlinePulse 2s ease-in-out infinite;
        }

        @keyframes underlinePulse {
            0%, 100% {
                width: 200px;
                opacity: 1;
            }
            50% {
                width: 300px;
                opacity: 0.6;
            }
        }

        /* Home Page */
        .home-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
            margin-bottom: 3rem;
        }

        .featured-image {
            width: 100%;
            border: 4px solid var(--gold);
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
            transition: all 0.5s ease;
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .featured-image:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
        }

        .welcome-box {
            background: linear-gradient(135deg, 
                rgba(139, 28, 28, 0.6),
                rgba(90, 13, 13, 0.6));
            border: 3px solid var(--gold);
            padding: 2rem;
            text-align: center;
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.5),
                inset 0 0 30px rgba(212, 175, 55, 0.1);
            border-radius: 10px;
            margin-bottom: 2rem;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            overflow: hidden;
            animation: slideInRight 1s ease-out;
        }

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

        .welcome-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg,
                transparent 30%,
                rgba(212, 175, 55, 0.1) 50%,
                transparent 70%);
            animation: promoShine 3s linear infinite;
        }

        @keyframes promoShine {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .welcome-box:hover {
            transform: scale(1.05) translateY(-10px);
            box-shadow: 
                0 20px 50px rgba(0, 0, 0, 0.7),
                0 0 40px rgba(212, 175, 55, 0.4),
                inset 0 0 50px rgba(212, 175, 55, 0.2);
            border-color: rgba(212, 175, 55, 1);
        }

        .welcome-title {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            color: var(--gold);
            line-height: 1.4;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
            position: relative;
            z-index: 1;
        }

        .info-box {
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(212, 175, 55, 0.3);
            padding: 1.5rem;
            text-align: center;
            border-radius: 10px;
            transition: all 0.4s ease;
            animation: slideInRight 1.2s ease-out;
        }

        .info-box:hover {
            border-color: var(--gold);
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
            transform: translateY(-5px);
        }

        .info-box h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .info-box p {
            font-size: 1.3rem;
            color: var(--cream);
        }

        /* Latest Work Section */
        .latest-work {
            margin-top: 4rem;
            animation: fadeIn 1.5s ease-out;
        }

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

        .latest-work h2 {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            color: var(--gold);
            text-align: center;
            margin-bottom: 2rem;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
            position: relative;
        }

        .latest-work h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .work-slider {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .work-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            animation: workEntrance 0.8s ease-out backwards;
        }

        @keyframes workEntrance {
            from {
                opacity: 0;
                transform: scale(0.8) rotate(-5deg);
            }
            to {
                opacity: 1;
                transform: scale(1) rotate(0);
            }
        }

        .work-item:nth-child(1) { animation-delay: 0.1s; }
        .work-item:nth-child(2) { animation-delay: 0.2s; }
        .work-item:nth-child(3) { animation-delay: 0.3s; }
        .work-item:nth-child(4) { animation-delay: 0.4s; }
        .work-item:nth-child(5) { animation-delay: 0.5s; }
        .work-item:nth-child(6) { animation-delay: 0.6s; }
        .work-item:nth-child(7) { animation-delay: 0.7s; }
        .work-item:nth-child(8) { animation-delay: 0.8s; }
        .work-item:nth-child(9) { animation-delay: 0.9s; }

        .work-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg,
                rgba(212, 175, 55, 0.3),
                rgba(139, 28, 28, 0.5));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
            pointer-events: none;
        }

        .work-item:hover::before {
            opacity: 1;
        }

        .work-item:hover {
            transform: scale(1.05) translateY(-10px);
            box-shadow: 
                0 20px 50px rgba(0, 0, 0, 0.7),
                0 0 40px rgba(212, 175, 55, 0.5);
        }

        .work-item video {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .work-item:hover video {
            transform: scale(1.1);
        }

        /* Artists Page */
        .artist-section {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 3rem;
            align-items: start;
            animation: fadeInUp 1s ease-out;
        }

        .artist-image {
            width: 100%;
            border: 4px solid var(--gold);
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
            transition: all 0.5s ease;
        }

        .artist-image:hover {
            transform: scale(1.05) rotate(2deg);
            box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
        }

        .artist-content {
            animation: slideInRight 1s ease-out;
        }

        .artist-content h2 {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
            border-bottom: 2px solid rgba(212, 175, 55, 0.3);
            padding-bottom: 0.5rem;
        }

        .artist-content p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--cream);
            margin-bottom: 1.5rem;
            padding-left: 20px;
            border-left: 3px solid rgba(212, 175, 55, 0.3);
            transition: all 0.3s ease;
        }

        .artist-content p:hover {
            border-left-color: var(--gold);
            padding-left: 30px;
            background: rgba(212, 175, 55, 0.05);
        }

        /* Hygiene Page */
        .hygiene-content {
            animation: fadeIn 1.2s ease-out;
        }

        .hygiene-intro {
            margin-bottom: 3rem;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.3);
            border-left: 4px solid var(--gold);
            border-radius: 5px;
        }

        .hygiene-intro p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--cream);
            margin-bottom: 1rem;
        }

        .hygiene-section {
            margin-bottom: 3rem;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.3);
            border-left: 4px solid var(--gold);
            transition: all 0.4s ease;
            animation: slideInLeft 0.8s ease-out;
            border-radius: 5px;
        }

        .hygiene-section:hover {
            background: rgba(0, 0, 0, 0.5);
            transform: translateX(10px);
            box-shadow: -10px 0 30px rgba(212, 175, 55, 0.2);
        }

        .hygiene-section h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .hygiene-section p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 1rem;
            color: var(--cream);
        }

        .hygiene-list {
            list-style: none;
            padding-left: 2rem;
        }

        .hygiene-list li {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 0.8rem;
            color: var(--cream);
            position: relative;
            padding-left: 30px;
            transition: all 0.3s ease;
        }

        .hygiene-list li::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-size: 1.2rem;
            animation: bulletPulse 2s ease-in-out infinite;
        }

        @keyframes bulletPulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.3);
                opacity: 0.7;
            }
        }

        .hygiene-list li:hover {
            transform: translateX(10px);
            color: var(--gold);
        }

        /* Gallery with enhanced hover effects */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            padding: 2rem 0;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            animation: galleryEntrance 0.8s ease-out backwards;
        }

        @keyframes galleryEntrance {
            from {
                opacity: 0;
                transform: scale(0.8) rotate(-5deg);
            }
            to {
                opacity: 1;
                transform: scale(1) rotate(0);
            }
        }

        .gallery-item:nth-child(odd) { animation-delay: 0.1s; }
        .gallery-item:nth-child(even) { animation-delay: 0.2s; }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg,
                rgba(212, 175, 55, 0.4),
                rgba(139, 28, 28, 0.6));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .gallery-item:hover::before {
            opacity: 1;
        }

        .gallery-item::after {
            content: '✦';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            font-size: 3rem;
            color: var(--gold);
            z-index: 2;
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
        }

        .gallery-item:hover::after {
            transform: translate(-50%, -50%) scale(1) rotate(180deg);
        }

        .gallery-item:hover {
            transform: scale(1.08) translateY(-10px) rotate(2deg);
            box-shadow: 
                0 20px 50px rgba(0, 0, 0, 0.7),
                0 0 40px rgba(212, 175, 55, 0.5);
            z-index: 10;
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
            filter: brightness(0.9) contrast(1.1);
        }

        .gallery-item:hover img {
            transform: scale(1.15);
            filter: brightness(1) contrast(1.2);
        }

        /* Location Page */
        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            animation: fadeInUp 1s ease-out;
        }

        .address-section {
            background: rgba(0, 0, 0, 0.4);
            padding: 2rem;
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 10px;
            transition: all 0.4s ease;
        }

        .address-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
            border-color: var(--gold);
        }

        .address-section h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            border-bottom: 2px solid rgba(212, 175, 55, 0.3);
            padding-bottom: 0.5rem;
        }

        .address-info p,
        .hours-section p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 0.5rem;
            color: var(--cream);
            transition: all 0.3s ease;
        }

        .address-info p:hover,
        .hours-section p:hover {
            color: var(--gold);
            transform: translateX(5px);
        }

        .hours-section {
            margin-top: 2rem;
        }

        .map-container {
            background: rgba(0, 0, 0, 0.6);
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 10px;
            height: 400px;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .map-container iframe {
            display: block;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .map-container:hover {
            border-color: var(--gold);
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
        }

        /* Contact Form */
        .contact-info {
            text-align: center;
            margin-bottom: 3rem;
            animation: fadeIn 1s ease-out;
        }

        .contact-info h2 {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1rem;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
        }

        .contact-details {
            font-size: 1.3rem;
            color: var(--cream);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            animation: fadeInUp 1s ease-out;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            font-family: 'Cinzel', serif;
            font-size: 1.2rem;
            color: var(--gold);
            margin-bottom: 0.5rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 5px;
            color: var(--cream);
            font-size: 1.1rem;
            font-family: 'Crimson Text', serif;
            transition: all 0.4s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 
                0 0 20px rgba(212, 175, 55, 0.4),
                inset 0 0 10px rgba(212, 175, 55, 0.1);
            transform: translateY(-2px);
        }

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

        .submit-btn {
            display: block;
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, var(--blood-red), var(--deep-red));
            border: 2px solid var(--gold);
            border-radius: 5px;
            color: var(--cream);
            font-family: 'Cinzel', serif;
            font-size: 1.3rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .submit-btn:hover::before {
            width: 400%;
            height: 400%;
        }

        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.6),
                0 0 30px rgba(212, 175, 55, 0.5);
            border-color: rgba(212, 175, 55, 1);
        }

        .submit-btn:active {
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: linear-gradient(180deg, 
                rgba(0, 0, 0, 0.8),
                rgba(90, 13, 13, 0.9));
            padding: 2rem;
            text-align: center;
            border-top: 3px solid var(--gold);
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: -3px;
            left: 0;
            right: 0;
            height: 10px;
            background: repeating-linear-gradient(
                90deg,
                transparent,
                transparent 10px,
                rgba(212, 175, 55, 0.3) 10px,
                rgba(212, 175, 55, 0.3) 20px
            );
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        .footer-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--cream);
            text-decoration: none;
            font-family: 'Cinzel', serif;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            padding: 0.5rem 1rem;
            border: 2px solid transparent;
            border-radius: 5px;
        }

        .footer-link:hover {
            color: var(--gold);
            border-color: var(--gold);
            transform: translateY(-3px);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
        }

        .footer-copy {
            color: var(--cream);
            font-size: 1rem;
            opacity: 0.8;
            animation: fadeIn 2s ease-out;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .home-grid,
            .artist-section,
            .location-grid {
                grid-template-columns: 1fr;
            }

            .work-slider {
                grid-template-columns: 1fr;
            }

            .nav-list {
                flex-direction: column;
            }

            .nav-link {
                border-right: none;
                border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 1rem;
            }

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

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

        /* Scroll animations */
        @keyframes scrollFade {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .scroll-animate {
            animation: scrollFade 0.8s ease-out;
        }