:root {
    --pastel-blue: #92C1E9;
    --pastel-yellow: #FFECB3;
    --pastel-green: #A5D6A7;
    --pastel-pink: #F8BBD0;
    --pastel-purple: #D1C4E9;
    --dark-text: #37474F;
    --accent-color: #FF6B6B;
    --card-shadow: 0 8px 16px rgba(0,0,0,0.1);
    --light-shadow: 0 4px 6px rgba(0,0,0,0.05);
    --section-radius: 30px;
    --card-radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', 'Varela Round', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #FFFFFF;
    color: var(--dark-text);
    line-height: 1.6;
}

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

/* Header and Navigation */
header {
    background-color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--light-shadow);
    border-bottom: 3px solid var(--pastel-blue);
    transition: all 0.3s ease;
}

.header-scrolled {
    padding: 5px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.logo {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 0px #FFFFFF;
    line-height: 1.2;
    margin: 10px 0;
    font-family: 'Short Stack', cursive;
    transition: all 0.3s ease;
}

.header-scrolled .logo {
    font-size: 32px;
    margin: 5px 0;
}

.logo span {
    display: inline-block;
}

.tagline {
    font-size: 18px;
    color: #444;
    text-align: center;
    margin-top: 5px;
    font-family: 'Varela Round', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.header-scrolled .tagline {
    font-size: 14px;
    margin-top: 2px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 22px;
    z-index: 1001;
}

.menu-toggle span,
.menu-toggle span:before,
.menu-toggle span:after {
    content: '';
    display: block;
    height: 3px;
    width: 100%;
    background: var(--accent-color);
    position: absolute;
    transition: all 0.3s ease;
}

.menu-toggle span {
    top: 9px;
}

.menu-toggle span:before {
    top: -9px;
}

.menu-toggle span:after {
    bottom: -9px;
}

.menu-toggle.active span {
    background: transparent;
}

.menu-toggle.active span:before {
    transform: rotate(45deg);
    top: 0px;
}

.menu-toggle.active span:after {
    transform: rotate(-45deg);
    bottom: 0px;
}

nav {
    display: flex;
    justify-content: center;
    background-color: var(--pastel-yellow);
    border-radius: var(--section-radius);
    padding: 12px;
    margin-top: 15px;
    box-shadow: var(--light-shadow);
    transition: all 0.3s ease;
}

nav a {
    color: var(--dark-text);
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 8px;
    border-radius: var(--card-radius);
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 17px;
    font-family: 'Varela Round', sans-serif;
    position: relative;
}

nav a:hover {
    background-color: white;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--light-shadow);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
}

nav a:hover::after {
    width: 70%;
    left: 15%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--pastel-green), var(--pastel-blue));
    text-align: center;
    padding: 130px 0 50px;
    position: relative;
    overflow: hidden;
}

.header-image {
    margin: 150px auto 30px;
    max-width: 85%;
}

.header-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}


.hero-content {
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: var(--section-radius);
    max-width: 800px;
    position: relative;
    margin: 0 auto;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--accent-color);
    font-family: 'Short Stack', cursive;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--dark-text);
    line-height: 1.7;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.6;
}

.shape.circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.shape.square {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    transform: rotate(45deg);
}

.shape.triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--pastel-yellow);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-top: 25px;
    box-shadow: var(--light-shadow);
    position: relative;
    overflow: hidden;
    font-family: 'Varela Round', sans-serif;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    background-color: #ff5252;
}

.cta-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.cta-button:hover::after {
    left: 100%;
}

/* Sections */
section {
    padding: 80px 0;
    scroll-margin-top: 100px;
}

.section-wrapper {
    position: relative;
    overflow: hidden;
}

.section-wrapper::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    top: -75px;
    right: -75px;
    z-index: 1;
}

.section-wrapper::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    bottom: -50px;
    left: -50px;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--accent-color);
    font-size: 36px;
    position: relative;
    font-family: 'Short Stack', cursive;
    display: inline-block;
    padding: 0 15px;
}

.section-title::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background-color: var(--pastel-yellow);
    position: absolute;
    left: -10px;
    top: -10px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 5px;
    background: linear-gradient(to right, var(--pastel-blue), var(--accent-color));
    margin: 15px auto 0;
    border-radius: 10px;
}

/* About Section */
#about {
    background-color: var(--pastel-green);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.about-text {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 20px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 5px solid white;
}

/* Services Section */
#services {
    background-color: var(--pastel-yellow);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: var(--card-radius);
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-bottom: 4px solid var(--accent-color);
}

.service-card:nth-child(1) .service-icon { color: #FF9E80; }
.service-card:nth-child(2) .service-icon { color: #64B5F6; }
.service-card:nth-child(3) .service-icon { color: #AED581; }
.service-card:nth-child(4) .service-icon { color: #FFD54F; }
.service-card:nth-child(5) .service-icon { color: #BA68C8; }
.service-card:nth-child(6) .service-icon { color: #4DB6AC; }

.service-icon {
    font-size: 54px;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.1));
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgba(255,255,255,0.8);
    border-radius: 50%;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-color);
    font-family: 'Varela Round', sans-serif;
    font-weight: 700;
}

/* Gallery Section */
#gallery {
    background-color: var(--pastel-pink);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    transition: all 0.5s ease;
    position: relative;
    aspect-ratio: 4/3;
    z-index: 2;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Section */
#contact {
    background-color: var(--pastel-purple);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 2;
    border-left: 5px solid var(--accent-color);
}

.contact-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.contact-icon {
    margin-right: 20px;
    font-size: 28px;
    color: var(--accent-color);
    background-color: rgba(255, 107, 107, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--light-shadow);
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 2;
    border: 5px solid white;
}

.map-container::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--pastel-yellow);
    z-index: -1;
    opacity: 0.5;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background-color: white;
    padding: 50px 0 30px;
    text-align: center;
    position: relative;
    border-top: 5px solid var(--pastel-blue);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--pastel-blue), var(--pastel-pink), var(--pastel-green), var(--pastel-yellow), var(--pastel-purple));
    opacity: 0.5;
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 25px;
    font-family: 'Short Stack', cursive;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.social-icon {
    font-size: 26px;
    margin: 0 15px;
    color: var(--dark-text);
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    background-color: var(--pastel-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--light-shadow);
}

.social-icon:hover {
    transform: translateY(-5px);
    background-color: var(--accent-color);
    color: white;
}

.copyright {
    color: var(--dark-text);
    font-size: 14px;
    opacity: 0.8;
    margin-top: 20px;
}

/* Animations and decorations */
.cloud {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.cloud1 {
    width: 100px;
    height: 60px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.cloud2 {
    width: 140px;
    height: 90px;
    top: 30%;
    right: 15%;
    animation-delay: 5s;
}

.cloud3 {
    width: 80px;
    height: 50px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(15px) translateX(15px);
    }
    50% {
        transform: translateY(0) translateX(30px);
    }
    75% {
        transform: translateY(-15px) translateX(15px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: white;
        z-index: 1000;
        margin-top: 0;
        padding: 80px 30px 30px;
        border-radius: 0;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
    }
    
    nav.active {
        right: 0;
    }
    
    nav a {
        margin: 10px 0;
        display: block;
        text-align: center;
    }
    
    .logo {
        font-size: 26px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    header {
        padding: 10px 0;
    }
    
    .header-scrolled {
        padding: 5px 0;
    }
    
    .header-scrolled .logo {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .header-scrolled .logo {
        font-size: 18px;
    }
    
    .tagline {
        font-size: 14px;
    }
    
    .header-scrolled .tagline {
        font-size: 12px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .header-image {
        margin: 120px auto 30px;
    }
}