/* Hero Section - Enhanced */

.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--color-tosca) 0%, var(--color-tosca) 60%, var(--color-yellow) 60%, var(--color-yellow) 100%);
}

.hero-bg-top {
    display: none;
}

.hero-bg-bottom {
    display: none;
}

/* New wave overlay decoration */
.hero::before {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    height: 150px;
    background: var(--color-yellow);
    clip-path: ellipse(60% 100% at 50% 100%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 55%;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--color-tosca);
    clip-path: ellipse(70% 100% at 50% 0%);
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-text {
    font-size: var(--text-lg);
    color: var(--color-white);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    line-height: 1.8;
    background: rgba(0,0,0,0.15);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    backdrop-filter: blur(5px);
}

.hero-image {
    position: relative;
    z-index: 2;
    max-width: 420px;
    margin-left: auto;
}

.hero-image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255,255,255,0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.hero-decoration.flower {
    top: -20px;
    right: -20px;
    width: 70px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
        padding-bottom: var(--space-3xl);
        min-height: auto;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        max-width: 300px;
        margin: 0 auto;
        order: 0;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-text {
        margin: 0 auto var(--space-xl);
    }
}

/* CTA Section with decorative background */
.cta-section {
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
    background: var(--color-white);
    background-image: url('../images/backgrounds/cta-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: var(--text-3xl);
    color: var(--color-black);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    line-height: 1.4;
}

/* Footer with decorative background pattern */
.footer {
    background-color: var(--color-red);
    background-image: url('../images/backgrounds/footer-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    padding: var(--space-3xl) 0 var(--space-xl);
    position: relative;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-brand .logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

/* Hero - Closer gap between text and image */
.hero .container {
    gap: var(--space-xl);
}

/* Hero Image Slider */
.hero-slider {
    position: relative;
    z-index: 2;
    max-width: 420px;
    margin-left: auto;
}

.hero-slider-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255,255,255,0.3);
}

.hero-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.hero-slide {
    min-width: 100%;
    height: 350px;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Navigation Dots */
.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition-base);
}

.hero-slider-dot.active {
    background: var(--color-white);
    transform: scale(1.2);
}

/* Slider Arrows */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.hero-slider-arrow:hover {
    background: var(--color-white);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-arrow.prev { left: 10px; }
.hero-slider-arrow.next { right: 10px; }

.hero-slider-arrow svg {
    width: 18px;
    height: 18px;
    color: var(--color-tosca);
}

@media (max-width: 768px) {
    .hero .container {
        gap: var(--space-lg);
    }
    .hero-slider {
        max-width: 100%;
    }
    .hero-slide {
        height: 280px;
    }
}

/* Testimonial Section Decorations */
.testimonial {
    position: relative;
    overflow: hidden;
}

.testimonial-decoration {
    position: absolute;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
}

.testimonial-decoration.windmill {
    top: 20px;
    right: 50px;
    width: 80px;
    transform: rotate(-15deg);
}

.testimonial-decoration.rainbow {
    bottom: 30px;
    left: 30px;
    width: 100px;
}

.testimonial-decoration.butterfly {
    top: 50%;
    right: 20%;
    width: 60px;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .testimonial-decoration.windmill {
        width: 50px;
        right: 20px;
    }
    .testimonial-decoration.rainbow {
        width: 60px;
        left: 10px;
    }
    .testimonial-decoration.butterfly {
        display: none;
    }
}

/* Logo Icon Only - Larger size */
.header .logo img {
    height: 60px;
    width: auto;
}

.footer-brand .logo img {
    height: 70px;
    filter: none; /* Remove invert since icon is already colorful */
}

/* Footer logo - white version */
.footer-brand .logo img {
    height: 70px;
    filter: brightness(0) invert(1);
}
