/* --- VARIABLES & THEME --- */
:root {
    --primary: #FFC857; /* Sunshine Yellow */
    --primary-dark: #eeb335;
    --secondary: #FF8552; /* Cheery Coral */
    --text: #2E4057; /* Deep Blue Text */
    --light-bg: #FFF9F0; /* Warm Cream */
    --white: #ffffff;
    --sage: #8AA399; /* Muted Sage */
    --sage-dark: #6b857a;
}

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

body {
    font-family: 'Nunito', sans-serif; /* Soft, rounded sans-serif */
    color: var(--text);
    background-color: var(--white);
    line-height: 1.7;
    font-size: 18px;
}

h1, h2, h3, h4 {
    font-family: 'Fredoka', sans-serif; /* Cheery rounded headers */
    color: var(--secondary);
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--text);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 0 var(--primary-dark);
    transition: all 0.2s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--primary-dark);
}

.btn:active {
    transform: translateY(2px);
    box-shadow: 0 0 0 var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
    box-shadow: 0 4px 0 #d96636;
}
.btn-secondary:hover {
    box-shadow: 0 6px 0 #d96636;
}

/* --- SVG WAVES --- */
.wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.wave svg {
    display: block;
    width: calc(136% + 1.3px);
    height: 60px;
}

/* --- NAVIGATION --- */
nav {
    background: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border-bottom: 5px solid var(--primary);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--secondary);
}

.logo span { color: var(--primary-dark); }

.nav-links {
    display: none;
}

@media(min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2rem;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--secondary); }

/* --- HERO SECTION --- */
header {
    background: var(--light-bg);
    padding: 4rem 0 8rem 0; /* Extra padding bottom for the wave */
    position: relative;
}

.hero-wrapper {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    width: 100%;
    padding: 0 10px;
}

.learn-more-link {
    margin-left: 15px;
    color: var(--secondary);
    font-weight: 700;
    text-decoration: none;
}

@media(max-width: 767px) {
    .hero-text {
        text-align: center;
    }
    
    .hero-text .btn,
    .hero-text .learn-more-link {
        display: inline-block;
        margin: 0.5rem;
    }
    
    .learn-more-link {
        margin-left: 0;
    }
}

@media(min-width: 768px) {
    .hero-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .hero-text { width: 50%; }
    .hero-image { width: 45%; }
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
}

@media(max-width: 767px) {
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    header {
        padding: 3rem 0 6rem 0;
    }
}

.hero-text h1 span {
    color: var(--secondary);
    display: inline-block;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0 80 Q 50 100 100 80" stroke="%23FFC857" stroke-width="15" fill="none" /></svg>') bottom no-repeat;
    background-size: 100% 20px;
}

.hero-text .subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media(max-width: 767px) {
    .hero-text .subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
}

.hero-image img {
    width: 100%;
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%; /* Organic Blob Shape */
    border: 8px solid var(--white);
    box-shadow: 20px 20px 0 var(--primary);
    object-fit: cover;
}

/* --- FEATURES STRIP --- */
.features-strip {
    background-color: var(--sage);
    color: white;
    padding: 3rem 0;
    position: relative;
    margin-top: -50px; /* Pull up to overlap wave slightly if needed, or sit flush */
    z-index: 2;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}

.feature-item {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: rgba(255,255,255,0.2);
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.feature-icon.multiples {
    width: 90px;
    font-size: 2rem;
}

.feature-item h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.feature-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* --- PACKAGES SECTION --- */
.packages {
    padding: 5rem 0;
    background-color: var(--white);
    text-align: center;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.packages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: flex-start;
}

.package-card {
    background: var(--white);
    border: 2px solid #eee;
    border-radius: 20px;
    padding: 2rem;
    width: 320px;
    transition: transform 0.3s;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.package-card.featured {
    border: 3px solid var(--primary);
    background-color: #fffcf5;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(255, 200, 87, 0.2);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.package-title {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-family: 'Fredoka', sans-serif;
}

.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #eee;
    font-size: 0.95rem;
}

.package-features li::before {
    content: "♥";
    color: var(--secondary);
    margin-right: 10px;
}

/* --- ABOUT BIO --- */
.about-preview {
    background: var(--light-bg);
    padding: 5rem 0;
    position: relative;
}

.about-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-content {
    flex: 2;
}

.about-stat {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 10px 10px 0 var(--sage);
    text-align: center;
}

@media(max-width: 767px) {
    .about-stat {
        display: none;
    }
    
    .about-content {
        flex: 1 1 100%;
        width: 100%;
    }
}

/* --- FOOTER --- */
footer {
    background-color: var(--text);
    color: white;
    padding: 4rem 0;
    position: relative;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #ddd;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--primary);
}

.contact-box {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
}

