/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --ultra-black: #000000;
    --void-black: #0a0a0a;
    --deep-black: #050505;
    --shadow-black: #111111;
    --accent-gold: #ffd700;
    --rich-gold: #d4af37;
    --deep-gold: #b8941f;
    --light-gold: #fff8dc;
    --vintage-gold: #daa520;
    --bronze-gold: #cd7f32;
    --white: #ffffff;
    --cream: #f5f5dc;
    --gold-glow: rgba(255, 215, 0, 0.3);
    --dark-gold-glow: rgba(212, 175, 55, 0.2);
}

body {
    font-family: 'Crimson Text', serif;
    background: var(--ultra-black);
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 40%),
        linear-gradient(135deg, var(--ultra-black) 0%, var(--void-black) 50%, var(--deep-black) 100%);
    background-attachment: fixed;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 3px solid var(--accent-gold);
    transform: translate3d(0, 0, 0);
    will-change: transform;
    contain: layout style paint;
    isolation: isolate;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    box-shadow: 
        0 0 30px var(--gold-glow),
        0 5px 20px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    background-image: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(5,5,5,0.95) 100%);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    contain: layout style;
    isolation: isolate;
    position: relative;
}

.nav-left, .nav-right {
    display: flex;
    gap: 2rem;
    flex: 1;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.nav-right {
    justify-content: flex-end;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 135px;
    width: auto;
    max-width: 450px;
    filter: 
        drop-shadow(0 0 20px rgba(255, 215, 0, 0.4))
        drop-shadow(0 0 40px rgba(255, 215, 0, 0.2))
        brightness(1.2)
        contrast(1.3)
        saturate(1.2);
    transition: all 0.3s ease;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    contain: layout style paint;
    isolation: isolate;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.logo img:hover {
    filter: 
        drop-shadow(0 0 25px rgba(255, 215, 0, 0.5))
        drop-shadow(0 0 50px rgba(255, 215, 0, 0.3))
        brightness(1.25)
        contrast(1.35)
        saturate(1.3);
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    letter-spacing: 4px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    font-family: 'Cinzel', serif;
}

.nav-link {
    color: var(--cream);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    position: relative;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    box-shadow: 0 0 10px var(--gold-glow);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.book-btn {
    background: linear-gradient(135deg, var(--accent-gold), var(--rich-gold), var(--deep-gold));
    color: var(--ultra-black) !important;
    padding: 0.8rem 2rem;
    border-radius: 0;
    font-weight: 600;
    border: 2px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 0 20px var(--gold-glow),
        0 4px 15px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.book-btn:hover::before {
    left: 100%;
}

.book-btn:hover {
    background: linear-gradient(135deg, var(--light-gold), var(--accent-gold), var(--vintage-gold));
    transform: translateY(-2px);
    box-shadow: 
        0 0 30px var(--gold-glow),
        0 8px 25px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.book-btn::after {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--ultra-black);
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark Atmospheric Overlays */
.video-fog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 0, 0, 0.7) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.6) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    z-index: 2;
    animation: fogMovement 20s ease-in-out infinite;
}

@keyframes fogMovement {
    0%, 100% { 
        background: 
            radial-gradient(circle at 30% 40%, rgba(0, 0, 0, 0.7) 0%, transparent 50%),
            radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.6) 0%, transparent 40%),
            radial-gradient(circle at 50% 80%, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    }
    50% { 
        background: 
            radial-gradient(circle at 40% 30%, rgba(0, 0, 0, 0.8) 0%, transparent 55%),
            radial-gradient(circle at 60% 70%, rgba(0, 0, 0, 0.7) 0%, transparent 45%),
            radial-gradient(circle at 45% 85%, rgba(0, 0, 0, 0.6) 0%, transparent 65%);
    }
}

.video-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 3;
}

.video-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.6) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 4;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
}

.video-overlay h2 {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    letter-spacing: 6px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    text-shadow: 
        0 0 20px var(--gold-glow),
        0 0 40px rgba(255, 215, 0, 0.3),
        2px 2px 8px rgba(0, 0, 0, 0.9);
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--accent-gold), var(--light-gold), var(--vintage-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-overlay p {
    font-size: 1.4rem;
    color: var(--light-gold);
    letter-spacing: 3px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.4),
        2px 2px 6px rgba(0, 0, 0, 0.9);
}

/* Hero Smooth Transition */
.hero-transition {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: 
        linear-gradient(180deg, 
            transparent 0%, 
            rgba(0, 0, 0, 0.1) 20%, 
            rgba(0, 0, 0, 0.3) 40%, 
            rgba(0, 0, 0, 0.6) 60%, 
            rgba(0, 0, 0, 0.8) 80%, 
            var(--ultra-black) 100%
        );
    z-index: 6;
}

.hero-transition::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: 
        linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 215, 0, 0.1) 20%, 
            rgba(255, 215, 0, 0.2) 50%, 
            rgba(255, 215, 0, 0.1) 80%, 
            transparent 100%
        );
    animation: goldShimmer 3s ease-in-out infinite;
}

@keyframes goldShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Artists Collection */
.artists-collection {
    padding: 8rem 0 6rem;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        linear-gradient(180deg, var(--ultra-black) 0%, var(--void-black) 50%, var(--deep-black) 100%);
    border-bottom: 3px solid var(--accent-gold);
    box-shadow: 
        inset 0 -3px 0 rgba(255, 215, 0, 0.15),
        0 0 50px var(--dark-gold-glow);
    position: relative;
    margin-top: -100px;
    z-index: 1;
}

.artists-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 4rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    background: linear-gradient(45deg, var(--accent-gold), var(--light-gold), var(--vintage-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--gold-glow);
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold));
    box-shadow: 0 0 15px var(--gold-glow);
}

.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    box-shadow: 0 0 15px var(--gold-glow);
}

.artists-grid-ornate {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

/* Simple Artist Boxes */
.artist-box-simple {
    background: var(--ultra-black);
    border-radius: 0;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Artist Photo Frame */
.artist-photo-frame {
    width: 100%;
    aspect-ratio: 4/5;
    border: 3px solid var(--accent-gold);
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 0 25px var(--gold-glow),
        inset 0 0 20px rgba(255, 215, 0, 0.1),
        0 8px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
}

.artist-photo-frame::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 15px var(--gold-glow);
    pointer-events: none;
}

.artist-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.9) contrast(1.1) grayscale(0.1);
}

.artist-box-simple:hover .artist-photo-frame {
    box-shadow: 
        0 0 35px var(--gold-glow),
        inset 0 0 30px rgba(255, 215, 0, 0.15),
        0 12px 40px rgba(0, 0, 0, 0.7);
    transform: translateY(-3px);
}

.artist-box-simple:hover .artist-photo-frame img {
    filter: brightness(1.0) contrast(1.2) grayscale(0);
    transform: scale(1.02);
}

/* Simple Artist Name */
.artist-name-simple {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    padding: 1rem 0;
    text-align: center;
    background: linear-gradient(45deg, var(--accent-gold), var(--light-gold), var(--vintage-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px var(--gold-glow);
    transition: all 0.3s ease;
}

.artist-box-simple:hover .artist-name-simple {
    transform: translateY(-2px);
    text-shadow: 0 0 20px var(--gold-glow);
}

/* Artist Info Container */
.artist-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

/* Instagram Button */
.instagram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-gold), var(--rich-gold));
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    color: var(--ultra-black);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 15px var(--gold-glow),
        0 4px 10px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.instagram-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.instagram-btn:hover::before {
    left: 100%;
}

.instagram-btn:hover {
    background: linear-gradient(135deg, var(--light-gold), var(--accent-gold));
    transform: translateY(-2px) scale(1.1);
    box-shadow: 
        0 0 25px var(--gold-glow),
        0 6px 15px rgba(0, 0, 0, 0.5);
    border-color: var(--light-gold);
}

.instagram-btn svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.instagram-btn:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: 
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.02) 0%, transparent 60%),
        linear-gradient(180deg, var(--void-black) 0%, var(--ultra-black) 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    box-shadow: 0 0 20px var(--gold-glow);
}

.pricing h2 {
    color: var(--accent-gold);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 3px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

.pricing h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), var(--light-gold), var(--accent-gold), transparent);
    box-shadow: 0 0 15px var(--gold-glow);
}

.pricing-text {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-text p {
    font-size: 1.1rem;
    text-align: left;
    color: var(--cream);
    line-height: 1.9;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.pricing-text p:last-child {
    margin-bottom: 0;
}

.pricing-text strong {
    color: var(--accent-gold);
    font-weight: 600;
    text-shadow: 0 0 8px var(--gold-glow);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    min-height: 700px;
}

/* Overlapping Images - LEFT SIDE */
.pricing-images {
    position: relative;
    width: 600px;
    height: 500px;
    flex-shrink: 0;
}

.pricing-image-back,
.pricing-image-front {
    position: absolute;
    border: 3px solid var(--accent-gold);
    overflow: hidden;
    box-shadow: 
        0 0 20px var(--gold-glow),
        0 8px 25px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
}

.pricing-image-back {
    width: 400px;
    height: 300px;
    top: 0;
    left: 0;
    z-index: 1;
    transform: rotate(-1deg);
}

.pricing-image-front {
    width: 450px;
    height: 350px;
    bottom: 0;
    right: 0;
    z-index: 2;
    transform: rotate(0.5deg);
}

.pricing-image-back img,
.pricing-image-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.4s ease;
}

.pricing-images:hover .pricing-image-back {
    transform: translateY(-10px);
    box-shadow: 
        0 0 30px var(--gold-glow),
        0 15px 35px rgba(0, 0, 0, 0.7);
}

.pricing-images:hover .pricing-image-front {
    transform: translateY(-15px);
    box-shadow: 
        0 0 35px var(--gold-glow),
        0 20px 40px rgba(0, 0, 0, 0.8);
}

.pricing-images:hover img {
    filter: brightness(1.0) contrast(1.2);
}

/* Pricing Details - RIGHT SIDE */
.pricing-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 450px;
}

.pricing-list-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-item-showcase {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.8rem;
    background: var(--ultra-black);
    border: 2px solid var(--accent-gold);
    box-shadow: 
        inset 0 1px 0 rgba(255, 215, 0, 0.1),
        0 4px 15px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.pricing-item-showcase:hover {
    border-color: var(--light-gold);
    box-shadow: 
        inset 0 1px 0 rgba(255, 215, 0, 0.2),
        0 6px 20px rgba(0, 0, 0, 0.6),
        0 0 20px var(--gold-glow);
    transform: translateX(5px);
}

.price-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--cream);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: lowercase;
}

.price-value {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--accent-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px var(--gold-glow);
}

/* Pricing Button */
.pricing-btn {
    align-self: flex-start;
    margin-top: 2rem;
    padding: 0.8rem 2.5rem;
    background: var(--accent-gold);
    color: var(--ultra-black);
    border: 2px solid var(--accent-gold);
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px var(--gold-glow),
        0 6px 20px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    position: relative;
}

.pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.pricing-btn:hover::before {
    left: 100%;
}

.pricing-btn:hover {
    background: linear-gradient(135deg, var(--light-gold), var(--accent-gold), var(--vintage-gold));
    transform: translateY(-3px);
    box-shadow: 
        0 0 30px var(--gold-glow),
        0 10px 30px rgba(0, 0, 0, 0.6);
    border-color: var(--light-gold);
}

.ornate-frame {
    border: 3px solid var(--accent-gold);
    box-shadow: 
        inset 0 0 30px rgba(255, 215, 0, 0.1),
        0 8px 30px rgba(0, 0, 0, 0.7),
        0 0 40px var(--dark-gold-glow);
}

.ornate-frame:hover {
    box-shadow: 
        inset 0 0 40px rgba(255, 215, 0, 0.15),
        0 12px 40px rgba(0, 0, 0, 0.8),
        0 0 60px var(--gold-glow);
    transform: translateY(-5px);
}

/* Ornate Border Decorations */
.ornate-border-top {
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--light-gold), var(--accent-gold), var(--light-gold), transparent);
    box-shadow: 0 0 15px var(--gold-glow);
}

.ornate-border-top::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--accent-gold) 30%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-glow);
}

.ornate-border-bottom {
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--light-gold), var(--accent-gold), var(--light-gold), transparent);
    box-shadow: 0 0 15px var(--gold-glow);
}

.ornate-border-bottom::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: var(--accent-gold);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    box-shadow: 0 0 10px var(--gold-glow);
}

.ornate-border-sides {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: -3px;
    width: 6px;
    background: linear-gradient(180deg, transparent, var(--accent-gold), transparent);
    box-shadow: 0 0 10px var(--gold-glow);
}

.ornate-border-sides::after {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    right: -6px;
    width: 6px;
    background: linear-gradient(180deg, transparent, var(--accent-gold), transparent);
    box-shadow: 0 0 10px var(--gold-glow);
}

/* Artist Portrait */
.artist-portrait {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.portrait-frame {
    position: relative;
    width: 180px;
    height: 180px;
    border: 4px solid var(--accent-gold);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 
        0 0 30px var(--gold-glow),
        inset 0 0 20px rgba(255, 215, 0, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
}

.portrait-frame::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--gold-glow);
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
}

.artist-box:hover .portrait-frame {
    box-shadow: 
        0 0 40px var(--gold-glow),
        inset 0 0 30px rgba(255, 215, 0, 0.15),
        0 12px 35px rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
}

.artist-box:hover .portrait-frame img {
    filter: brightness(1.0) contrast(1.2);
}

/* Artist Nameplate */
.artist-nameplate {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: 
        linear-gradient(135deg, var(--deep-black) 0%, var(--void-black) 100%);
    border: 2px solid var(--accent-gold);
    margin-top: auto;
    box-shadow: 
        inset 0 1px 0 rgba(255, 215, 0, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.5);
}

.artist-name {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    background: linear-gradient(45deg, var(--accent-gold), var(--light-gold), var(--vintage-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px var(--gold-glow);
}

.nameplate-ornament-left,
.nameplate-ornament-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    box-shadow: 0 0 10px var(--gold-glow);
}

.nameplate-ornament-left {
    left: -15px;
}

.nameplate-ornament-right {
    right: -15px;
    background: linear-gradient(90deg, transparent, var(--accent-gold));
}

.nameplate-ornament-left::before,
.nameplate-ornament-right::before {
    content: '';
    position: absolute;
    top: -3px;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold-glow);
}

.nameplate-ornament-left::before {
    left: 0;
}

.nameplate-ornament-right::before {
    right: 0;
}

.grid-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 
        inset 0 1px 0 rgba(255, 215, 0, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.7),
        0 0 30px var(--gold-glow);
    transform: translateY(-2px);
}

.grid-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.grid-item.medium {
    grid-row: span 1;
}

.item-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-content h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 
        0 0 15px var(--gold-glow),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    background: linear-gradient(45deg, var(--accent-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.item-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

/* Artist Frame */
.artist-frame {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.artist-frame img {
    height: 300px;
    object-fit: cover;
}

.artist-info h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.artist-info p {
    color: var(--grey);
    font-style: italic;
}

/* Pricing Section */
.pricing-section {
    background: 
        radial-gradient(circle at center, rgba(255, 215, 0, 0.08) 0%, transparent 70%),
        linear-gradient(135deg, var(--deep-black) 0%, var(--ultra-black) 50%, var(--void-black) 100%);
    border: 2px solid var(--accent-gold);
    box-shadow: 
        inset 0 0 30px rgba(255, 215, 0, 0.1),
        0 0 40px var(--dark-gold-glow);
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: 
        linear-gradient(90deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.03) 100%);
    border-radius: 0;
    border-left: 4px solid var(--accent-gold);
    border-right: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 
        inset 0 1px 0 rgba(255, 215, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.price-item span:first-child {
    color: var(--cream);
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.price-item span:last-child {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.2rem;
    text-shadow: 0 0 10px var(--gold-glow);
    background: linear-gradient(45deg, var(--accent-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Photo Gallery */
.photo-gallery .item-content {
    padding: 1rem;
}

.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.photo-grid img {
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

/* Sections */
.about, .artists, .faq, .contact {
    padding: 5rem 0;
    background: 
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.02) 0%, transparent 60%),
        linear-gradient(180deg, var(--void-black) 0%, var(--ultra-black) 100%);
    position: relative;
}

.about::before, .artists::before, .faq::before, .contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    box-shadow: 0 0 20px var(--gold-glow);
}

.about:nth-child(odd), .artists:nth-child(odd), .faq:nth-child(odd), .contact:nth-child(odd) {
    background: 
        radial-gradient(circle at 60% 60%, rgba(212, 175, 55, 0.02) 0%, transparent 60%),
        linear-gradient(180deg, var(--deep-black) 0%, var(--void-black) 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about h2, .artists h2, .faq h2, .contact h2 {
    color: var(--accent-gold);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 3px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

.about h2::after, .artists h2::after, .faq h2::after, .contact h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), var(--light-gold), var(--accent-gold), transparent);
    box-shadow: 0 0 15px var(--gold-glow);
}

.about p {
    font-size: 1.1rem;
    text-align: center;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* About Content Layout */
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    min-height: 600px;
    margin-top: 2rem;
}

/* About Images - LEFT SIDE */
.about-images {
    position: relative;
    width: 500px;
    height: 450px;
    flex-shrink: 0;
}

.about-image-back,
.about-image-front {
    position: absolute;
    border: 3px solid var(--accent-gold);
    overflow: hidden;
    box-shadow: 
        0 0 20px var(--gold-glow),
        0 8px 25px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
}

.about-image-back {
    width: 350px;
    height: 280px;
    top: 0;
    left: 0;
    z-index: 1;
    transform: rotate(-2deg);
}

.about-image-front {
    width: 380px;
    height: 300px;
    bottom: 0;
    right: 0;
    z-index: 2;
    transform: rotate(1deg);
}

.about-image-back img,
.about-image-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.4s ease;
}

.about-images:hover .about-image-back {
    transform: rotate(-2deg) translateY(-8px);
    box-shadow: 
        0 0 30px var(--gold-glow),
        0 15px 35px rgba(0, 0, 0, 0.7);
}

.about-images:hover .about-image-front {
    transform: rotate(1deg) translateY(-12px);
    box-shadow: 
        0 0 35px var(--gold-glow),
        0 20px 40px rgba(0, 0, 0, 0.8);
}

.about-images:hover img {
    filter: brightness(1.0) contrast(1.2);
}

/* About Text - RIGHT SIDE */
.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 550px;
}

.about-text p {
    font-size: 1.1rem;
    text-align: left;
    color: var(--cream);
    max-width: none;
    margin: 0;
    line-height: 1.9;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Artists Grid */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.artist-card {
    background: 
        radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%),
        linear-gradient(135deg, var(--deep-black) 0%, var(--ultra-black) 100%);
    border-radius: 0;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 215, 0, 0.4);
    position: relative;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
}

.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), var(--light-gold), var(--accent-gold), transparent);
    box-shadow: 0 0 15px var(--gold-glow);
}

.artist-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.7),
        0 0 40px var(--gold-glow),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
}

.artist-card img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--accent-gold);
    box-shadow: 
        0 0 30px var(--gold-glow),
        0 8px 20px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.artist-card img:hover {
    box-shadow: 
        0 0 40px var(--gold-glow),
        0 12px 30px rgba(0, 0, 0, 0.6),
        inset 0 0 30px rgba(255, 215, 0, 0.15);
    transform: scale(1.05);
}

.artist-card h3 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.artist-card p {
    color: var(--cream);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-accordion {
    background: 
        linear-gradient(135deg, var(--void-black) 0%, var(--deep-black) 100%);
    border-radius: 0;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-accordion:hover {
    border-color: var(--accent-gold);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.6),
        0 0 30px var(--gold-glow),
        inset 0 1px 0 rgba(255, 215, 0, 0.15);
}

.faq-header {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-gold);
}

.faq-header:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--accent-gold);
    color: var(--ultra-black);
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 1rem;
    transition: all 0.3s ease;
    border-radius: 50%;
    font-family: 'Cinzel', serif;
}

.faq-header h3 {
    color: var(--accent-gold);
    margin: 0;
    font-size: 1.1rem;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex: 1;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.faq-content p {
    color: var(--cream);
    line-height: 1.8;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.3px;
    padding: 1.5rem 2rem;
    margin: 0;
}

.faq-item-accordion.active .faq-content {
    max-height: 200px;
}

.faq-item-accordion.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--light-gold);
}

/* Contact Layout */
.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-detailed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-section {
    background: 
        linear-gradient(135deg, var(--void-black) 0%, var(--deep-black) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 2rem;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-gold);
}

.contact-section:hover {
    border-color: var(--accent-gold);
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.6),
        0 0 30px var(--gold-glow),
        inset 0 1px 0 rgba(255, 215, 0, 0.15);
}

.contact-section h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--accent-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-details p {
    color: var(--cream);
    line-height: 1.8;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.3px;
    margin-bottom: 0.5rem;
}

.contact-details p strong {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Contact Form */
.message-form-section {
    background: 
        radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%),
        linear-gradient(135deg, var(--deep-black) 0%, var(--ultra-black) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    padding: 2.5rem;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 215, 0, 0.1),
        0 0 40px var(--dark-gold-glow);
    position: relative;
}

.message-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), var(--light-gold), var(--accent-gold), transparent);
    box-shadow: 0 0 15px var(--gold-glow);
}

.message-form-section h3 {
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(45deg, var(--accent-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--ultra-black);
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 0;
    box-shadow: 
        inset 0 1px 3px rgba(0, 0, 0, 0.3),
        0 0 0 rgba(255, 215, 0, 0);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 
        inset 0 1px 3px rgba(0, 0, 0, 0.3),
        0 0 15px var(--gold-glow);
    background: rgba(255, 215, 0, 0.02);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 245, 220, 0.6);
    font-style: italic;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--ultra-black);
    color: var(--cream);
    padding: 0.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--rich-gold), var(--deep-gold));
    color: var(--ultra-black);
    border: 2px solid var(--accent-gold);
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    box-shadow: 
        0 0 20px var(--gold-glow),
        0 4px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    align-self: center;
    margin-top: 1rem;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, var(--light-gold), var(--accent-gold), var(--vintage-gold));
    transform: translateY(-2px);
    box-shadow: 
        0 0 30px var(--gold-glow),
        0 8px 25px rgba(0, 0, 0, 0.6);
    border-color: var(--light-gold);
}

/* Footer */
.footer {
    background: 
        radial-gradient(ellipse at center top, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, var(--void-black) 0%, var(--ultra-black) 100%);
    border-top: 3px solid var(--accent-gold);
    padding: 3rem 0 2rem;
    box-shadow: 
        inset 0 3px 0 rgba(255, 215, 0, 0.1),
        0 -10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    box-shadow: 0 0 20px var(--gold-glow);
}

/* Footer Contact Section */
.footer-contact-section {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

.contact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Footer Hours Section */
.footer-hours-section {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.hours-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
}

.hours-days {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.5px;
}

.hours-time {
    font-size: 1rem;
    letter-spacing: 0.3px;
    opacity: 0.9;
}

/* Footer Social Section */
.footer-social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-title {
    color: var(--accent-gold);
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    background: linear-gradient(45deg, var(--accent-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px var(--gold-glow);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cream);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.social-link:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 15px var(--gold-glow);
    transform: translateY(-2px);
}

.social-link svg {
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}

.social-link:hover svg {
    filter: drop-shadow(0 0 15px var(--gold-glow));
    transform: scale(1.1);
}

/* Footer Copyright Section */
.footer-copyright-section {
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 1.5rem;
}

.footer-copyright-section p:first-child {
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin: 0 0 0.5rem 0;
    opacity: 0.9;
}

.footer-copyright-section p:last-child {
    color: var(--accent-gold);
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Premium Dark Effects */
.premium-glow {
    position: relative;\n}\n\n.premium-glow::after {\n    content: '';\n    position: absolute;\n    top: -2px;\n    left: -2px;\n    right: -2px;\n    bottom: -2px;\n    background: linear-gradient(45deg, var(--accent-gold), var(--light-gold), var(--accent-gold));\n    z-index: -1;\n    border-radius: inherit;\n    opacity: 0;\n    transition: opacity 0.3s ease;\n}\n\n.premium-glow:hover::after {\n    opacity: 0.3;\n}\n\n/* Elite Visual Elements */\n.elite-border {\n    position: relative;\n    overflow: hidden;\n}\n\n.elite-border::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: -100%;\n    width: 100%;\n    height: 2px;\n    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);\n    animation: shimmer 3s infinite;\n}\n\n@keyframes shimmer {\n    0% { left: -100%; }\n    50% { left: 100%; }\n    100% { left: 100%; }\n}\n\n/* Dark Luxury Texture */\n.dark-texture {\n    background-image: \n        radial-gradient(circle at 1px 1px, rgba(255, 215, 0, 0.1) 1px, transparent 0);\n    background-size: 20px 20px;\n}\n\n/* Elite Shadow Effects */\n.elite-shadow {\n    box-shadow: \n        0 0 50px rgba(255, 215, 0, 0.1),\n        inset 0 1px 0 rgba(255, 215, 0, 0.1),\n        0 20px 40px rgba(0, 0, 0, 0.6);\n}\n\n/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-left, .nav-right {
        gap: 1rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .video-overlay h2 {
        font-size: 3rem;
    }
    
    .grid-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    /* Contact section for tablets */
    .contact-info-detailed {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-info-detailed .contact-section:last-child {
        grid-column: span 2;
    }
    
    /* Footer responsive for tablets */
    .footer-contact-section {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .footer-hours-section {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-left, .nav-right {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .nav-center {
        order: -1;
    }
    
    .logo img {
        height: 110px;
        max-width: 380px;
    }
    
    .footer-logo-img {
        height: 50px;
        max-width: 200px;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .artists-grid-ornate {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    
    .artist-box-simple {
        gap: 1rem;
    }
    
    .artist-name-simple {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .instagram-btn {
        width: 35px;
        height: 35px;
    }
    
    .instagram-btn svg {
        width: 18px;
        height: 18px;
    }
    
    /* Pricing responsive */
    .pricing-content {
        height: 600px;
    }
    
    .pricing-image-back {
        width: 420px;
        height: 280px;
        top: 30px;
    }
    
    .pricing-image-front {
        width: 450px;
        height: 320px;
        left: 60px;
        bottom: 30px;
    }
    
    .pricing-details {
        width: 350px;
        right: 15px;
    }
    
    .pricing-btn {
        right: 15px;
        bottom: -35px;
    }
    
    .video-overlay h2 {
        font-size: 2.5rem;
    }
    
    .hero-transition {
        height: 200px;
    }
    
    .video-overlay p {
        font-size: 1.2rem;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .about h2, .artists h2, .faq h2, .contact h2 {
        font-size: 2rem;
    }
    
    /* About section responsive */
    .about-content {
        flex-direction: column;
        gap: 3rem;
        min-height: auto;
    }
    
    .about-images {
        width: 100%;
        height: 350px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-text {
        max-width: none;
        text-align: center;
    }
    
    .about-text p {
        text-align: center;
    }
    
    /* Contact section responsive */
    .contact-layout {
        gap: 3rem;
    }
    
    .contact-info-detailed {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-section {
        padding: 1.5rem;
    }
    
    .message-form-section {
        padding: 2rem;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer responsive for mobile */
    .footer-contact-section {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-hours-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nav-left, .nav-right {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .logo img {
        height: 90px;
        max-width: 320px;
    }
    
    .footer-logo-img {
        height: 40px;
        max-width: 160px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .artists-grid-ornate {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .artist-box-simple {
        gap: 1rem;
    }
    
    .artist-name-simple {
        font-size: 1.1rem;
        letter-spacing: 2px;
        padding: 0.8rem 0;
    }
    
    .artist-info {
        gap: 0.8rem;
    }
    
    .instagram-btn {
        width: 32px;
        height: 32px;
    }
    
    .instagram-btn svg {
        width: 16px;
        height: 16px;
    }
    
    /* Pricing mobile */
    .pricing-content {
        height: 500px;
    }
    
    .pricing-image-back {
        width: 320px;
        height: 220px;
        top: 20px;
    }
    
    .pricing-image-front {
        width: 350px;
        height: 250px;
        left: 30px;
        bottom: 20px;
    }
    
    .pricing-details {
        width: 300px;
        right: 10px;
    }
    
    .pricing-btn {
        right: 10px;
        bottom: -30px;
        padding: 0.6rem 1.8rem;
        font-size: 0.9rem;
    }
    
    .pricing-item-showcase {
        padding: 1rem 1.5rem;
    }
    
    .price-label {
        font-size: 1.1rem;
    }
    
    .price-value {
        font-size: 1.2rem;
    }
    
    .pricing-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .video-overlay h2 {
        font-size: 2rem;
    }
    
    .hero-transition {
        height: 150px;
    }
    
    .video-overlay p {
        font-size: 1rem;
    }
    
    .item-content {
        padding: 1rem;
    }
    
    .about h2, .artists h2, .faq h2, .contact h2 {
        font-size: 1.8rem;
    }
    
    /* About section mobile */
    .about-images {
        height: 300px;
    }
    
    .about-image-back {
        width: 280px;
        height: 220px;
    }
    
    .about-image-front {
        width: 300px;
        height: 240px;
    }
    
    /* Contact section mobile */
    .contact-layout {
        gap: 2rem;
    }
    
    .contact-section {
        padding: 1.2rem;
    }
    
    .contact-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .message-form-section {
        padding: 1.5rem;
    }
    
    .message-form-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .form-submit-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    /* Footer mobile small screens */
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-contact-section {
        gap: 0.8rem;
    }
    
    .footer-hours-section {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .social-title {
        font-size: 1rem;
    }
    
    .social-link {
        font-size: 0.85rem;
        padding: 0.4rem;
    }
    
    .footer-copyright-section p:first-child {
        font-size: 0.85rem;
    }
    
    .footer-copyright-section p:last-child {
        font-size: 0.8rem;
    }
}
