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

:root {
    --primary-color: #E91E8C;
    --secondary-color: #7B3FE4;
    --accent-color: #00BFA6;
    --highlight-color: #FFC107;
    --text-dark: #2C2416;
    --text-light: #FFF6FB;
    --bg-light: #FFF1F8;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

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

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.logo h1 {
    color: var(--text-light);
    font-size: 1.6rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--highlight-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 550px;
    overflow: hidden;
}

.hero-content {
    padding: 2rem;
}

.hero-title {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.hero-art {
    position: relative;
    height: 400px;
}

.blob {
    position: absolute;
    font-size: 4rem;
    animation: float 6s ease-in-out infinite;
}

.blob-1 { top: 5%; left: 10%; animation-delay: 0s; }
.blob-2 { top: 20%; left: 55%; font-size: 5rem; animation-delay: 1s; }
.blob-3 { top: 55%; left: 5%; animation-delay: 2s; }
.blob-4 { top: 45%; left: 65%; font-size: 4.5rem; animation-delay: 3s; }
.blob-5 { top: 75%; left: 40%; animation-delay: 1.5s; }
.blob-6 { top: 10%; left: 35%; font-size: 3rem; animation-delay: 2.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.service-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Gallery Section */
.gallery {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.gallery-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
}

.gallery-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px) scale(1.03);
}

.gallery-emoji {
    font-size: 2.75rem;
    display: block;
    margin-bottom: 0.5rem;
}

.gallery-card p {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Pricing Section */
.pricing {
    padding: 5rem 2rem;
    background-color: var(--white);
    text-align: center;
}

.pricing-card {
    max-width: 420px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.price-detail {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.pricing-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: bold;
}

.pricing-card .cta-button {
    background-color: var(--highlight-color);
    color: var(--text-dark);
}

.pricing-card .cta-button:hover {
    background-color: var(--white);
}

.pricing-note {
    margin-top: 2rem;
    color: var(--text-dark);
    font-style: italic;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.stat h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-dark);
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background-color: var(--white);
    text-align: center;
}

.contact-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.contact-item {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--secondary-color);
    padding: 1rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.contact-item:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-art {
        height: 220px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats {
        grid-template-columns: 1fr;
    }
}
