/* 1. बेसिक प्रीमियम सेटिंग्ज */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:italic,wght@400;700&family=Inter:wght@200;400;700&display=swap');

:root {
    --gold: #f5e6a3;
    --black: #050505;
    --card-bg: #0a0a0a;
}

body {
    background-color: var(--black);
    color: white;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    cursor: none; /* आपण स्वतःचा कर्सर वापरणार आहोत */
}

/* 2. प्रीमियम कर्सर (Custom Cursor) */
.cursor-dot { width: 8px; height: 8px; background: var(--gold); position: fixed; border-radius: 50%; z-index: 10000; pointer-events: none; }
.cursor-outline { width: 40px; height: 40px; border: 1px solid rgba(245, 230, 163, 0.4); position: fixed; border-radius: 50%; z-index: 9999; pointer-events: none; transition: all 0.1s ease-out; }

/* 3. प्री-लोडर (Pre-loader) */
#loader {
    position: fixed; inset: 0; background: black; z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s ease;
}

/* 4. इंटरअॅक्टिव्ह मेटामॉरफॉसिस (The Metamorphosis) */
.meta-box { border: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.4s ease; }
.active-meta { border-color: var(--gold) !important; opacity: 1 !important; transform: translateX(15px); background: #0f0f0f; }

/* 5. प्रीमियम बटन (Explore Custom Work) */
.btn-custom-bespoke {
    padding: 18px 45px; color: var(--gold); border: 1px solid rgba(245, 230, 163, 0.3);
    text-transform: uppercase; letter-spacing: 4px; transition: all 0.4s ease;
    text-decoration: none; position: relative; overflow: hidden;
}
.btn-custom-bespoke:hover { background: var(--gold); color: black; box-shadow: 0 0 30px rgba(245, 230, 163, 0.4); }

/* 6. हेल्पर्स */
.gold-text { color: var(--gold); }
.font-serif { font-family: 'Playfair Display', serif; }

/* Unique Card Tilt Effect */
.material-card {
    background: linear-gradient(145deg, #0f0f0f, #050505);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.material-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* New Social Layout */
.social-item {
    position: relative;
    overflow: hidden;
}
.social-overlay {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: all 0.4s ease;
}
.social-item:hover .social-overlay {
    opacity: 1;
}
/* Cinematic Text Gradient */
.gold-text-gradient {
    background: linear-gradient(to bottom, #f5e6a3 20%, #b8a25d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Custom Text Reveal Animation */
[data-aos="reveal-text"] {
    opacity: 0;
    transform: translateY(30px) skewY(2deg);
    transition-property: transform, opacity;
}

[data-aos="reveal-text"].aos-animate {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
}

/* Essence Vertical Line Animation */
@keyframes essence-line {
    0% { transform: translateY(-100%); }
    50% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

.animate-essence-line {
    animation: essence-line 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Subtle Pulse for Background Glow */
@keyframes pulse-subtle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.animate-pulse {
    animation: pulse-subtle 8s ease-in-out infinite;
}
/* 1. Reveal Up Animation */
[data-aos="reveal-up"] {
    transform: translateY(100%);
    opacity: 0;
    transition-property: transform, opacity;
}
[data-aos="reveal-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* 2. Slow Pulse for Background Glow */
@keyframes slow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}
.animate-slow-pulse {
    animation: slow-pulse 8s ease-in-out infinite;
}

/* 3. Floating Text */
@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.animate-float-slow {
    animation: float-slow 4s ease-in-out infinite;
}

/* 4. Golden Line Growth */
@keyframes grow-line {
    to { width: 60px; }
}
.animate-grow-line {
    animation: grow-line 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
}

/* 5. Slow Ping for Dot */
@keyframes ping-slow {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}
.animate-ping-slow {
    animation: ping-slow 3s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* 6. Description Fade-in */
.animate-fade-in-up {
    animation: fadeInUp 1.2s ease forwards;
    animation-delay: 1.2s;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 0.8; transform: translateY(0); }
}
/* Card Hover Glow */
#artistry-info .group:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    background: linear-gradient(145deg, #111, #050505);
}

/* Icon Transition */
#artistry-info i {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#artistry-info .group:hover i {
    transform: scale(1.2) rotate(5deg);
}
/* Grayscale Map Hover */
iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(0.5) contrast(1.2); /* Black & Gold Map Effect */
    transition: all 1s ease;
}

.relative:hover iframe {
    filter: invert(0%) hue-rotate(0deg) brightness(1) contrast(1);
}

/* Floating Badge Animation */
@keyframes float-slow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -20px); }
}

.animate-float-slow {
    animation: float-slow 5s ease-in-out infinite;
}
/* Split Reveal Animation */
[data-aos="zoom-out"] {
    letter-spacing: 0.5em;
    opacity: 0;
    filter: blur(10px);
    transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-aos="zoom-out"].aos-animate {
    letter-spacing: -0.05em;
    opacity: 1;
    filter: blur(0);
}

/* Spin Animation for Background Orbs */
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}

/* Grid Border Effect */
.gap-1px {
    gap: 1px; /* Creates that thin neon line effect between blocks */
}

/* Interaction Transition */
.group {
    transition: background 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Bento Grid Hover Effects */
.rounded-\[2rem\] {
    transition: border-radius 0.5s ease, transform 0.5s ease;
}

.group:hover.rounded-\[2rem\] {
    border-radius: 1rem; /* Hover केल्यावर कोपरे थोडे टोकदार होतात (Premium effect) */
}

/* Background Scrolling Text Animation */
@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.absolute.top-10 h2 {
    animation: scrollText 40s linear infinite;
}

/* Subtle Gradient overlay for images */
.social-tile-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
}
:root {
    --primary-font: 'Montserrat', sans-serif;
    --display-font: 'Cormorant Garamond', serif;
    --gold-accent: #f5e6a3;
}

body {
    font-family: var(--primary-font);
}

/* Unique Font Styles */
h1, h2, .font-serif {
    font-family: var(--display-font) !important;
}

/* Animation for unique feel */
@keyframes letter-spacing-anim {
    0% { letter-spacing: 0.5em; opacity: 0; }
    100% { letter-spacing: 1.2em; opacity: 1; }
}

.animate-letter-spacing {
    animation: letter-spacing-anim 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Subtle Floating Animation for the logo */
[data-aos="fade-left"], [data-aos="fade-right"] {
    transition-duration: 1.5s !important;
}
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999; /* सर्वांच्या वर दिसण्यासाठी */
    pointer-events: none; /* क्लिक करताना अडथळा नको */
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: #f5e6a3;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(245, 230, 163, 0.5);
    transition: all 0.1s ease-out;
}
/* Journey Image Hover */
.group img {
    will-change: transform, filter;
}

/* Timeline vertical line animation */
.group:hover div.bg-white\/10 {
    height: 100%;
}

/* Year Badge Floating Animation */
@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.absolute.-bottom-10 {
    animation: float-badge 4s ease-in-out infinite;
}
/* Founder Badge Bounce Animation */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.animate-bounce-slow {
    animation: bounce-slow 4s ease-in-out infinite;
}

/* Luxury Font for Name */
.font-serif {
    font-family: 'Cormorant Garamond', serif !important;
}

    @keyframes scroll-text {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    .animate-scroll-text {
        display: inline-block;
        animation: scroll-text 30s linear infinite;
        white-space: nowrap;
    }
    .gold-text { color: #f5e6a3; }
.magnetic-wrap {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.cta-glow {
    background: radial-gradient(circle at center, rgba(245, 230, 163, 0.15) 0%, transparent 70%);
}
.text-outline {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    color: transparent;
}
.contact-link-box {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(245, 230, 163, 0.05);
}
.contact-link-box:hover {
    background: rgba(245, 230, 163, 0.03);
    border-color: rgba(245, 230, 163, 0.4);
    transform: translateY(-5px);
}
.reveal-text {
    overflow: hidden;
}


#contact h2 {
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.group:hover h3 {
    letter-spacing: 0.05em;
}

/* मोबाईलवर स्टिकी काढण्यासाठी */
@media (max-width: 768px) {
    .md\:sticky { position: relative !important; height: auto !important; }
}
#contact .grid > div, #contact .grid > a {
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
}

#contact a:hover {
    transform: translateY(-5px);
}
.luxury-card {
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
/* कार्डवर फिरणारी सोनेरी चमक (Shine Effect) */
.luxury-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(245, 230, 163, 0.1), transparent 40%);
    transition: all 0.6s;
    opacity: 0;
    pointer-events: none;
}
.luxury-card:hover::before {
    opacity: 1;
    animation: rotateShine 3s linear infinite;
}
@keyframes rotateShine {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}