:root {
    --color-pink-bg: #ffe6ea;
    --color-pink-soft: #ffc2d1;
    --color-pink-hot: #ff8fa3;
    --color-white: #ffffff;
    --color-gold: #d4af37;
    --color-rose-gold: #b76e79;
    --color-text: #5d4037;
    /* Soft brown instead of harsh black */

    --font-script: 'Great Vibes', cursive;
    --font-body: 'Quicksand', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #fff0f3 0%, #ffe6ea 100%);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Decorations */
.background-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--color-pink-soft);
    top: -50px;
    left: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: #fff;
    bottom: 10%;
    right: -50px;
    animation-delay: -5s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: var(--color-pink-hot);
    top: 40%;
    left: 40%;
    opacity: 0.2;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-40px) scale(1.1);
    }
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 400;
}

.studio-name {
    font-family: var(--font-script);
    font-size: 6rem;
    color: var(--color-rose-gold);
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    line-height: 1.1;
}

.sub-name {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-pink-hot);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-script);
    font-size: 4rem;
    color: var(--color-rose-gold);
    text-align: center;
    margin-bottom: 2rem;
}

/* Components */
.cta-button {
    background: linear-gradient(to right, var(--color-pink-soft), var(--color-pink-hot));
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    color: white;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 143, 163, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 2rem;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 143, 163, 0.6);
}

.separator-heart {
    font-size: 2rem;
    color: var(--color-pink-hot);
    margin: 1rem 0;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 2rem;
}

/* Sections */
.section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.text-content {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-text);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 194, 209, 0.3);
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    color: var(--color-rose-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Gallery */
.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.gallery-frame {
    width: 300px;
    height: 300px;
    padding: 10px;
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    /* Polaroid style */
    transform: rotate(-2deg);
    transition: transform 0.3s;
}

.gallery-frame:nth-child(2) {
    transform: rotate(3deg);
}

.gallery-frame:hover {
    transform: rotate(0) scale(1.05);
    z-index: 10;
}

.placeholder-img {
    width: 100%;
    height: 85%;
    background: var(--color-pink-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-rose-gold);
    font-family: var(--font-script);
    font-size: 2rem;
    border: 1px dashed var(--color-pink-soft);
}

/* Footer */
.footer {
    padding: 4rem 2rem;
    background: var(--color-white);
    color: var(--color-text);
}

.footer-title {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--color-pink-hot);
    margin-bottom: 1rem;
}

.contact-dtls p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.socials {
    margin: 2rem 0;
}

.socials a {
    color: var(--color-rose-gold);
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.socials a:hover {
    color: var(--color-pink-hot);
}

.copyright {
    font-size: 0.8rem;
    color: #999;
    margin-top: 2rem;
}

/* Animations */
.fade-in {
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sparkle */
.sparkle {
    position: fixed;
    width: 10px;
    height: 10px;
    background: gold;
    border-radius: 50%;
    pointer-events: none;
    animation: sparkleAnim 1s linear forwards;
    z-index: 9999;
}

@keyframes sparkleAnim {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}