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

body {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #0f2e22 0%, #1a3a2e 15%, #2d5a47 35%, #3d6b52 50%, #4a7c5f 65%, #5a8d6c 80%, #6b9d7a 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    color: #f5f5dc;
}

/* Animated background particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139, 195, 74, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 230, 211, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(139, 195, 74, 0.06) 0%, transparent 50%);
    animation: backgroundPulse 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Sparkle Container */
.sparkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Header Styles */
.main-header {
    text-align: center;
    padding: 4rem 2rem 3rem;
    position: relative;
    z-index: 10;
}

.studio-title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 700;
    color: #f5e6d3;
    text-shadow: 
        0 0 10px rgba(245, 230, 211, 0.6),
        0 0 20px rgba(245, 230, 211, 0.4),
        0 0 30px rgba(139, 195, 74, 0.3),
        0 0 40px rgba(139, 195, 74, 0.2),
        3px 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.08em;
    animation: gentleGlow 4s ease-in-out infinite alternate;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.studio-title::before,
.studio-title::after {
    content: '✨';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.4em;
    opacity: 0.6;
    animation: twinkle 2s ease-in-out infinite;
}

.studio-title::before {
    left: -1.5em;
    animation-delay: 0s;
}

.studio-title::after {
    right: -1.5em;
    animation-delay: 1s;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}

@keyframes gentleGlow {
    0% {
        text-shadow: 
            0 0 10px rgba(245, 230, 211, 0.6),
            0 0 20px rgba(245, 230, 211, 0.4),
            0 0 30px rgba(139, 195, 74, 0.3),
            0 0 40px rgba(139, 195, 74, 0.2),
            3px 3px 6px rgba(0, 0, 0, 0.4);
    }
    100% {
        text-shadow: 
            0 0 15px rgba(245, 230, 211, 0.8),
            0 0 25px rgba(245, 230, 211, 0.6),
            0 0 35px rgba(139, 195, 74, 0.5),
            0 0 45px rgba(139, 195, 74, 0.4),
            3px 3px 6px rgba(0, 0, 0, 0.4);
    }
}

/* Main Content */
.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 250px);
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.logo-container {
    position: relative;
    animation: float 8s ease-in-out infinite;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4)) drop-shadow(0 5px 15px rgba(139, 195, 74, 0.2));
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5)) drop-shadow(0 8px 20px rgba(139, 195, 74, 0.3));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(1deg);
    }
    50% {
        transform: translateY(-25px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    width: auto;
    display: block;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(245, 230, 211, 0.1) 0%, rgba(139, 195, 74, 0.05) 100%);
    padding: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(245, 230, 211, 0.2);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.logo:hover {
    border-color: rgba(245, 230, 211, 0.4);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Sparkle Styles */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 6px #fff, 0 0 12px #fff;
    animation: sparkleAnimation 2s ease-out forwards;
}

.sparkle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: sparklePulse 1s ease-in-out infinite;
}

.sparkle::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: sparkleRing 2s ease-out forwards;
}

@keyframes sparkleAnimation {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.8) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
}

@keyframes sparklePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.8);
        opacity: 0.6;
    }
}

@keyframes sparkleRing {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Nature particles */
.nature-particle {
    position: absolute;
    pointer-events: none;
    opacity: 0.3;
    animation: particleFloat 15s linear infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .main-header {
        padding: 3rem 1rem 2rem;
    }
    
    .studio-title {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }
    
    .studio-title::before,
    .studio-title::after {
        display: none;
    }
    
    .logo {
        max-height: 60vh;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 2rem 1rem 1.5rem;
    }
    
    .logo {
        max-height: 50vh;
        padding: 15px;
        border-radius: 20px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: rgba(139, 195, 74, 0.3);
    color: #f5e6d3;
}

::-moz-selection {
    background: rgba(139, 195, 74, 0.3);
    color: #f5e6d3;
}


