/* ================================================
   KAOTIC THOUGHTS - PAGE-SPECIFIC ATMOSPHERES
   Each page = a unique immersive "room"
   ================================================ */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== HOME PAGE - "WELCOME ROOM" ===== */
.home-atmosphere {
    background: linear-gradient(135deg, #1a0a1f 0%, #2E1A3D 50%, #4A2B5E 100%);
}

.home-atmosphere::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 20, 147, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 179, 71, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(127, 181, 126, 0.08) 0%, transparent 60%);
    animation: atmospherePulse 15s ease-in-out infinite;
}

@keyframes atmospherePulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Candle glow effects for home */
.candle-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold), transparent 70%);
    opacity: 0.4;
    filter: blur(40px);
    animation: candleFlicker 4s ease-in-out infinite;
}

@keyframes candleFlicker {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.candle-glow-1 { top: 20%; left: 10%; animation-delay: 0s; }
.candle-glow-2 { top: 60%; right: 15%; animation-delay: 1.5s; }
.candle-glow-3 { bottom: 20%; left: 50%; animation-delay: 3s; }

/* Room cards on home page */
.room-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 179, 71, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    min-height: 300px;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 179, 71, 0.2), transparent);
    transition: left 0.8s;
}

.room-card:hover::before {
    left: 100%;
}

.room-card:hover {
    border-color: var(--magenta);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 0 50px rgba(255, 20, 147, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.room-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--magenta), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
}

.room-card:hover .room-card-glow {
    opacity: 0.15;
}

/* ===== MUSIC PAGE - "LOUNGE ATMOSPHERE" ===== */
.music-atmosphere {
    background: linear-gradient(135deg, #1a0a0f 0%, #2E1A1F 30%, #3d2410 60%, #2E1A3D 100%);
}

.music-atmosphere::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(ellipse at 30% 40%, rgba(255, 179, 71, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(255, 127, 127, 0.15) 0%, transparent 50%);
    opacity: 0.8;
}

/* Smoke wisps effect */
.smoke-wisp {
    position: absolute;
    width: 200px;
    height: 400px;
    background: linear-gradient(to top, transparent, rgba(255, 255, 255, 0.03), transparent);
    filter: blur(30px);
    animation: smokeRise 12s ease-in-out infinite;
    opacity: 0;
}

@keyframes smokeRise {
    0% { bottom: -20%; opacity: 0; transform: translateX(0); }
    50% { bottom: 50%; opacity: 0.6; transform: translateX(20px); }
    100% { bottom: 120%; opacity: 0; transform: translateX(-10px); }
}

.smoke-wisp-1 { left: 15%; animation-delay: 0s; }
.smoke-wisp-2 { left: 45%; animation-delay: 4s; }
.smoke-wisp-3 { left: 75%; animation-delay: 8s; }

/* Lounge soundwave decoration */
.lounge-soundwave {
    position: absolute;
    width: 100%;
    height: 120px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0.3;
    pointer-events: none;
}

.lounge-soundwave svg {
    width: 100%;
    height: 100%;
}

/* Music player glass panels */
.music-player-panel {
    background: rgba(61, 36, 16, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 179, 71, 0.3);
    border-radius: 20px;
    padding: var(--space-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.4s;
}

.music-player-panel:hover {
    border-color: var(--magenta);
    box-shadow: 0 0 40px rgba(255, 20, 147, 0.4);
    transform: translateY(-5px);
}

/* ===== SHOP PAGE - "BOUTIQUE ATMOSPHERE" ===== */
.shop-atmosphere {
    background: linear-gradient(135deg, #1a0a1f 0%, #2E1A3D 40%, #1f1a0a 70%, #2E1A3D 100%);
}

.shop-atmosphere::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(255, 20, 147, 0.12) 0%, transparent 40%);
}

/* Spotlight effects */
.spotlight {
    position: absolute;
    width: 300px;
    height: 400px;
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.2) 0%, transparent 100%);
    filter: blur(50px);
    opacity: 0.5;
    animation: spotlightSway 10s ease-in-out infinite;
}

@keyframes spotlightSway {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(30px) rotate(5deg); }
}

.spotlight-1 { top: 0; left: 20%; animation-delay: 0s; }
.spotlight-2 { top: 0; right: 20%; animation-delay: 5s; }

/* Product showcase cards */
.product-card {
    background: rgba(46, 26, 61, 0.5);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 179, 71, 0.2);
    transition: all 0.5s;
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover {
    border-color: var(--gold-bright);
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
}

/* ===== HEALING DROPS PAGE - "WATERFALL SANCTUARY" ===== */
.healing-atmosphere {
    position: relative;
    overflow: hidden;
}

/* Video background for healing drops */
.healing-atmosphere::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

.healing-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.healing-atmosphere::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse at 50% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(127, 181, 126, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 179, 71, 0.05) 0%, transparent 40%);
    animation: healingPulse 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes healingPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Sunbeam effects */
.sunbeam {
    position: absolute;
    width: 2px;
    height: 400px;
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.3), transparent);
    filter: blur(20px);
    opacity: 0.4;
    animation: sunbeamShift 15s ease-in-out infinite;
}

@keyframes sunbeamShift {
    0%, 100% { transform: translateX(0) rotate(10deg); opacity: 0.4; }
    50% { transform: translateX(50px) rotate(15deg); opacity: 0.6; }
}

.sunbeam-1 { top: 0; left: 20%; animation-delay: 0s; }
.sunbeam-2 { top: 0; left: 40%; animation-delay: 3s; }
.sunbeam-3 { top: 0; left: 60%; animation-delay: 6s; }
.sunbeam-4 { top: 0; left: 80%; animation-delay: 9s; }

/* Healing drop cards */
.healing-drop-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: var(--space-lg);
    border: 2px solid rgba(127, 181, 126, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.healing-drop-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, transparent, rgba(127, 181, 126, 0.2), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s;
}

.healing-drop-card:hover::before {
    opacity: 1;
}

.healing-drop-card:hover {
    border-color: var(--green-vibrant);
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(127, 181, 126, 0.4);
}

/* ===== SERVICES PAGE - "TREE OF LIFE" ===== */
.services-atmosphere {
    background: 
        linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.5) 100%),
        url('../images/css-background.jpg') center center / cover no-repeat;
    background-attachment: fixed;
}

.services-atmosphere::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse at 50% 40%, rgba(127, 181, 126, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(255, 179, 71, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Tree trunk glow */
.tree-trunk-glow {
    position: absolute;
    width: 200px;
    height: 60%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to top, rgba(139, 69, 19, 0.2), transparent);
    filter: blur(30px);
    opacity: 0.5;
}

/* Leaf button styles */
.leaf-button {
    position: relative;
    background: linear-gradient(135deg, rgba(127, 181, 126, 0.6), rgba(76, 175, 80, 0.4));
    border: 2px solid rgba(127, 181, 126, 0.5);
    border-radius: 50% 50% 50% 0;
    padding: var(--space-lg) var(--space-xl);
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.5s;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(127, 181, 126, 0.3);
    transform: rotate(-5deg);
}

.leaf-button:nth-child(even) {
    transform: rotate(5deg);
    border-radius: 50% 50% 0 50%;
    background: linear-gradient(135deg, rgba(255, 179, 71, 0.5), rgba(255, 215, 0, 0.3));
    border-color: rgba(255, 179, 71, 0.5);
}

.leaf-button:hover {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 0 40px rgba(127, 181, 126, 0.8);
    border-color: var(--gold-bright);
}

/* ===== WORK WITH ME PAGE - "PROFESSIONAL STUDIO" ===== */
.studio-atmosphere {
    background: linear-gradient(135deg, #0f0a15 0%, #2E1A3D 30%, #1a0a0f 60%, #2E1A3D 100%);
}

.studio-atmosphere::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 179, 71, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 20, 147, 0.1) 0%, transparent 40%);
}

/* Ring light glow effect */
.ring-light-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 60px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.1);
    border-right-color: rgba(255, 255, 255, 0.08);
    border-bottom-color: rgba(255, 255, 255, 0.06);
    border-left-color: rgba(255, 255, 255, 0.08);
    top: 20%;
    right: 10%;
    filter: blur(20px);
    opacity: 0.5;
    animation: ringRotate 20s linear infinite;
}

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

/* Form container styling */
.studio-form-container {
    background: rgba(46, 26, 61, 0.5);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 179, 71, 0.3);
    border-radius: 20px;
    padding: var(--space-xl);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* ===== ABOUT PAGE - "THE WHOLE HOUSE" ===== */
.about-atmosphere {
    background: linear-gradient(135deg, 
        #1a0a1f 0%, 
        #2E1A3D 20%, 
        #1a2a1f 40%, 
        #2E1A3D 60%, 
        #1f1a0a 80%, 
        #2E1A3D 100%);
}

.about-atmosphere::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 20, 147, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(255, 179, 71, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 80% 80%, rgba(127, 181, 126, 0.1) 0%, transparent 30%);
    animation: aboutAuraShift 20s ease-in-out infinite;
}

@keyframes aboutAuraShift {
    0%, 100% { opacity: 0.6; }
    33% { opacity: 0.8; }
    66% { opacity: 0.7; }
}

/* Photo frame glow */
.photo-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(255, 179, 71, 0.5);
    box-shadow: 0 0 30px rgba(255, 179, 71, 0.4);
    transition: all 0.5s;
}

.photo-frame:hover {
    border-color: var(--magenta);
    box-shadow: 0 0 50px rgba(255, 20, 147, 0.6);
    transform: scale(1.02);
}

/* ===== CONTACT PAGE - "SOFT LANDING" ===== */
.contact-atmosphere {
    background: linear-gradient(135deg, #1a0a2f 0%, #2E1A3D 50%, #1a2a1f 100%);
}

.contact-atmosphere::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse at 50% 50%, rgba(255, 179, 71, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(127, 181, 126, 0.1) 0%, transparent 40%);
}

/* ===== FLOATING ELEMENTS (GLOBAL) ===== */
.floating-leaves {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.3;
    animation: leafFloat 15s ease-in-out infinite;
}

@keyframes leafFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(100px, -100px) rotate(90deg); }
    50% { transform: translate(200px, 0) rotate(180deg); }
    75% { transform: translate(100px, 100px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.floating-leaves-1 { top: 10%; left: 5%; animation-delay: 0s; }
.floating-leaves-2 { top: 30%; right: 10%; animation-delay: 5s; }
.floating-leaves-3 { bottom: 20%; left: 15%; animation-delay: 10s; }

/* Bokeh light effects */
.bokeh {
    position: absolute;
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.2;
    animation: bokehDance 12s ease-in-out infinite;
}

@keyframes bokehDance {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
    50% { transform: translate(30px, -30px) scale(1.3); opacity: 0.4; }
}

.bokeh-1 { width: 60px; height: 60px; background: var(--gold); top: 15%; left: 10%; animation-delay: 0s; }
.bokeh-2 { width: 80px; height: 80px; background: var(--magenta); top: 60%; right: 15%; animation-delay: 4s; }
.bokeh-3 { width: 50px; height: 50px; background: var(--coral); bottom: 20%; left: 20%; animation-delay: 8s; }
