/* Auto-split from style.css — theme block: sweet_elegant (lines 34-46) */
/* 1. 🌸 SWEET & ELEGANT THEME (Default Romantic Vintage Pink) */
body.theme-sweet_elegant {
    --primary: #e67399;
    --primary-hover: #d25a82;
    --pink-bg: #fcebf1;
    --dark-text: #4a2133;
    --theme-heading-font: 'Great Vibes', cursive;
    --theme-card-bg: #ffffff;
    --theme-section-bg: #fcebf1;
    --theme-accent-bg: #401829;
    background-color: #fcebf1;
}

/* EXACT ELEMENTOR WORDPRESS CLOUD DIVIDERS (Sweet & Elegant only) */
body.theme-sweet_elegant .hero-cloud-elementor-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 140px;
    z-index: 5;
    pointer-events: none;
    object-fit: cover;
    object-position: center;
}

body.theme-sweet_elegant .hero-cloud-elementor-bottom {
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    width: 100%;
    height: 150px;
    z-index: 5;
    pointer-events: none;
    object-fit: cover;
    object-position: center;
}

/* Hero Section (Sweet & Elegant layout) */
body.theme-sweet_elegant .hero-section {
    background-color: var(--pink-bg);
    text-align: center;
    padding: 105px 25px 95px 25px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

body.theme-sweet_elegant .hero-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
}

body.theme-sweet_elegant .subheading {
    display: inline-block;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

body.theme-sweet_elegant h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 5.6rem;
    color: var(--dark-text);
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

body.theme-sweet_elegant .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
}

/* Buttons styling for Sweet & Elegant */
body.theme-sweet_elegant .btn {
    padding: 13px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    text-decoration: none;
}

body.theme-sweet_elegant .btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 6px 20px rgba(230, 115, 153, 0.4);
}

body.theme-sweet_elegant .btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

body.theme-sweet_elegant .btn-secondary {
    background-color: white;
    color: var(--dark-text);
    border: 2px solid var(--primary);
}

body.theme-sweet_elegant .btn-secondary:hover {
    background-color: var(--pink-bg);
    transform: translateY(-2px);
}

/* Floating Cakes Raining Down & Encircling Text */
body.theme-sweet_elegant .raining-cake {
    position: absolute;
    z-index: 15;
    filter: drop-shadow(0 14px 22px rgba(74, 33, 51, 0.2));
    opacity: 0;
    animation: cakeRain 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards, floatGently 3.5s ease-in-out infinite 1.4s alternate;
}

/* 5 Cakes Positioning and Delay */
body.theme-sweet_elegant .hero-cake-top-right {
    top: 25px;
    right: 22%;
    width: 175px;
    animation-delay: 0.1s, 1.4s;
}

body.theme-sweet_elegant .hero-cake-middle-left {
    top: 20%;
    left: 12%;
    width: 240px;
    animation-delay: 0.3s, 1.6s;
}

body.theme-sweet_elegant .hero-cake-far-right {
    top: 18%;
    right: 1%;
    width: 270px;
    animation-delay: 0.5s, 1.8s;
}

body.theme-sweet_elegant .hero-cake-bottom-left {
    bottom: 10px;
    left: 6%;
    width: 210px;
    animation-delay: 0.7s, 2.0s;
}

body.theme-sweet_elegant .hero-cake-bottom-right {
    bottom: 50px;
    right: 14%;
    width: 220px;
    animation-delay: 0.9s, 2.2s;
}

/* Animations Keyframes */
@keyframes cakeRain {
    0% {
        transform: translateY(-480px) scale(0.5) rotate(-25deg);
        opacity: 0;
    }
    70% {
        transform: translateY(20px) scale(1.05) rotate(4deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes floatGently {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(2deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Mobile responsive fixes for Sweet & Elegant */
@media (max-width: 768px) {
    /* Cloud Dividers stretch full width without zoom-cropping */
    body.theme-sweet_elegant .hero-cloud-elementor-top {
        height: 60px !important;
        object-fit: fill !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
    }
    
    body.theme-sweet_elegant .hero-cloud-elementor-bottom {
        height: 65px !important;
        object-fit: fill !important;
        left: 0 !important;
        transform: rotate(180deg) !important;
        width: 100% !important;
    }
    
    /* Spreading cakes out to the margins on mobile */
    body.theme-sweet_elegant .hero-cake-top-right {
        top: 15px !important;
        right: 24px !important;
        width: 85px !important;
    }
    
    body.theme-sweet_elegant .hero-cake-middle-left {
        top: 18% !important;
        left: 6px !important;
        width: 95px !important;
    }
    
    body.theme-sweet_elegant .hero-cake-far-right {
        top: 38% !important;
        right: 6px !important;
        width: 80px !important;
    }
    
    body.theme-sweet_elegant .hero-cake-bottom-left {
        bottom: 15px !important;
        left: 6px !important;
        width: 85px !important;
    }
    
    body.theme-sweet_elegant .hero-cake-bottom-right {
        bottom: 15px !important;
        right: 6px !important;
        width: 90px !important;
    }

    body.theme-sweet_elegant .hero-buttons {
        flex-direction: row !important;
        max-width: 100% !important;
        justify-content: center !important;
        gap: 10px !important;
    }
    
    body.theme-sweet_elegant .hero-buttons .btn {
        width: auto !important;
        flex: 1 !important;
        max-width: 160px !important;
        padding: 10px 15px !important;
        font-size: 0.85rem !important;
        white-space: nowrap !important;
    }
}
