/* Premium Design System - SPARK Celebrations */

:root {
    --gold: #D4AF37;
    --gold-light: #F9E27A;
    --gold-dark: #996515;
    --cream: #FFFDD0;
}

@keyframes textShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.shimmer-text {
    background: linear-gradient(90deg, #D4AF37 0%, #F9E27A 50%, #D4AF37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s linear infinite;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    background-color: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, .font-playfair {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

h1 { 
    font-size: clamp(3.5rem, 12vw, 7rem); 
    text-transform: uppercase; 
    letter-spacing: 6px; 
    font-weight: 900;
    margin-bottom: 2.5rem;
}

h2 { 
    font-size: clamp(2.5rem, 8vw, 4.5rem); 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    margin-bottom: 2rem; 
    font-weight: 700;
}

h3 { 
    font-size: clamp(1.5rem, 5vw, 2.5rem); 
    letter-spacing: 1.5px; 
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.mandala-pattern {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M50 0 L60 40 L100 50 L60 60 L50 100 L40 60 L0 50 L40 40 Z' fill='%23D4AF37' opacity='0.05'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}

.intro-watermark {
    background-image: url("https://png.pngtree.com/thumb_back/fh260/background/20240522/pngtree-abstract-stage-curtain-with-gold-curved-lines-on-black-background-image_15686433.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    mix-blend-mode: color-dodge;
}

.spark-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    cursor: pointer;
    display: inline-block;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    backdrop-blur: 5px;
}

.spark-btn:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.spark-btn::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.spark-btn:hover::after { opacity: 1; }

nav a {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 1/2;
    transform: translateX(-50%);
    background-color: var(--gold);
    transition: width 0.3s ease;
}

nav a:hover::after { width: 100%; }

#intro-overlay { background: #000; }
.curtain-left, .curtain-right { background-color: #050505; position: relative; }
.curtain-left::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 80%, rgba(0,0,0,0.4)); }
.curtain-right::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to left, transparent 80%, rgba(0,0,0,0.4)); }

/* Custom Intro Spark Styles */
.spark-element {
    position: fixed; /* Changed to fixed for global screen positioning */
    width: 3px;
    height: 3px;
    background: #D4AF37;
    border-radius: 50%;
    box-shadow: 0 0 12px #D4AF37, 0 0 25px rgba(212, 175, 55, 0.8), 0 0 40px rgba(249, 226, 122, 0.4);
    pointer-events: none;
    z-index: 1005;
    filter: blur(0.2px);
}

.spark-blink {
    width: 6px;
    height: 6px;
    background: var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--gold-light), 0 0 30px var(--gold-light);
    z-index: 10;
    pointer-events: none;
}

/* Premium Brand Typography */
.brand-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #D4AF37 0%, #F9E27A 50%, #D4AF37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    animation: textShimmer 4s linear infinite;
}

.brand-subtitle {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-size: 0.65rem;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .brand-subtitle {
        font-size: 0.55rem;
        letter-spacing: 0.3em;
    }
}

.logo-mask {
    -webkit-mask-image: radial-gradient(circle at 50% 55%, black 40%, transparent 85%);
    mask-image: radial-gradient(circle at 50% 55%, black 40%, transparent 85%);
}

.text-gold { color: var(--gold); }
.glow-gold { text-shadow: 0 0 15px rgba(212, 175, 55, 0.5); }

.gold-gradient-text {
    background: linear-gradient(to right, #D4AF37, #F9E27A, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.spark-particle {
    position: fixed;
    pointer-events: none;
    z-index: 1000;
    border-radius: 50%;
    background-color: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}

/* Skills Showcase Styles */
.skill-card {
    padding: 2rem;
    border-radius: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.7s cubic-bezier(0.2, 1, 0.3, 1);
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.skill-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-12px);
    box-shadow: 0 25px 60px -15px rgba(212, 175, 55, 0.15), 0 0 30px rgba(212, 175, 55, 0.05);
}

.skill-icon-box {
    margin-bottom: 1.5rem;
    width: 110px;
    height: 110px;
    border-radius: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Base Skill Card Styles */
.skill-name {
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
}

@media (max-width: 768px) {
    .skill-card {
        padding: 9px;
        border-radius: 1rem;
    }
    .skill-icon-box {
        width: 60px;
        height: 60px;
        margin-bottom: 0.5rem;
        border-radius: 1rem;
    }
    .skill-name {
        font-size: 0.5rem;
        letter-spacing: 0.02em;
        line-height: 1.2;
    }
}

.skill-card:hover .skill-icon-box {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.skill-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}


.skill-card:hover .skill-name {
    color: var(--gold);
}

.reveal-up {
    will-change: transform, opacity;
}

/* Animated Service Icons */
@keyframes service-float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes icon-pulse {
    0% { filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.3)); }
    50% { filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.8)); }
    100% { filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.3)); }
}

@keyframes icon-shine {
    0% { opacity: 0.8; stroke-dashoffset: 100; }
    50% { opacity: 1; stroke-dashoffset: 0; }
    100% { opacity: 0.8; stroke-dashoffset: -100; }
}

.service-card:hover .service-icon {
    animation: service-float 3s ease-in-out infinite;
}

.service-icon svg {
    animation: icon-pulse 4s ease-in-out infinite;
    stroke-dasharray: 200;
    stroke-dashoffset: 0;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon svg {
    animation: icon-shine 2s ease-in-out infinite, icon-pulse 2s ease-in-out infinite;
    color: var(--gold-light);
}

.service-card {
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.hide-scrollbar::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.hide-scrollbar {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

@keyframes bounceSideways {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

.highlight-emoji {
    display: inline-block;
    animation: bounceSideways 1s ease-in-out infinite;
}

@keyframes mouseWheel {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

.animate-mouse-wheel {
    animation: mouseWheel 1.5s ease-in-out infinite;
}
@keyframes pulseSlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.02); }
}

.animate-pulse-slow {
    animation: pulseSlow 4s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes bounceSubtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.animate-bounce-subtle {
    animation: bounceSubtle 3s ease-in-out infinite;
}

.benefit-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    will-change: transform, box-shadow;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.6) !important;
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(0,0,0,0.4) 100%);
}

.benefit-card:hover .text-gold {
    animation: icon-bounce 0.6s ease-out;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.benefit-image-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
    will-change: transform;
}

.benefit-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    animation: slow-cinematic 20s infinite alternate linear;
}

.benefit-card:hover .benefit-image-container img {
    transform: scale(1.1);
}

@keyframes slow-cinematic {
    0% { transform: scale(1) translateX(0); }
    100% { transform: scale(1.15) translateX(-5%); }
}

.mobile-nav-link {
    overflow: hidden;
    position: relative;
    padding: 0.5rem 0;
}

.mobile-nav-link span:first-child {
    display: block;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

#mobile-menu.active .mobile-nav-link span:first-child {
    animation: slideUpFade 0.8s backwards;
}

#mobile-menu.active .mobile-nav-link:nth-child(1) span { animation-delay: 0.1s; }
#mobile-menu.active .mobile-nav-link:nth-child(2) span { animation-delay: 0.2s; }
#mobile-menu.active .mobile-nav-link:nth-child(3) span { animation-delay: 0.3s; }
#mobile-menu.active .mobile-nav-link:nth-child(4) span { animation-delay: 0.4s; }
#mobile-menu.active .mobile-nav-link:nth-child(5) span { animation-delay: 0.5s; }

@keyframes slideUpFade {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}


/* Clean Instagram Reel Hack */
.clean-reel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.clean-reel-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%; /* Increased width slightly */
    height: 160%; /* Increased height significantly to push header/footer out */
    transform: translate(-50%, -50%) scale(1.2); 
    border: none;
    pointer-events: auto; /* Re-enabled to allow clicking play button */
    z-index: 1;
}

/* Ensure the swiper doesn't intercept clicks meant for the video */
.recent-reel-card {
    cursor: pointer;
    z-index: 10;
}

@keyframes pulseGoldIntense {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); border-color: rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.5); border-color: rgba(212, 175, 55, 0.8); }
}

.animate-pulse-gold-intense {
    animation: pulseGoldIntense 2.5s ease-in-out infinite;
}

@keyframes shimmerEffect {
    0% { transform: translateX(-150%) skewX(-20deg); }
    100% { transform: translateX(150%) skewX(-20deg); }
}

.shimmer-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.4), transparent);
    animation: shimmerEffect 4s infinite;
    pointer-events: none;
}

@keyframes borderGlowPulse {
    0%, 100% { border-color: rgba(212, 175, 55, 0.2); box-shadow: 0 0 15px rgba(212, 175, 55, 0.1); }
    50% { border-color: rgba(212, 175, 55, 0.8); box-shadow: 0 0 35px rgba(212, 175, 55, 0.3); }
}

.shining-card {
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    animation: borderGlowPulse 4s ease-in-out infinite;
}



