@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #e6a8b7; /* Soft pastel pink */
    --primary-dark: #d48ba0;
    --secondary-color: #c5d7e8; /* Soft pastel blue */
    --accent-color: #e0e5cd; /* Soft pastel green */
    --text-color: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-color: #fffcfd; /* Very light pinkish white */
    --card-bg: #ffffff;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
    --shadow: 0 4px 15px rgba(230, 168, 183, 0.15);
}

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

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-dark);
    transition: color 0.3s ease;
}

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

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

/* Header & Navigation */
header {
    background-color: var(--card-bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 1px;
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--card-bg);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.85);
    padding: 40px;
    border-radius: 15px;
    max-width: 800px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(230, 168, 183, 0.3);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-color);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '🌸';
    display: block;
    font-size: 1.5rem;
    margin-top: 10px;
    color: var(--primary-color);
}

/* Cards & Grids */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(230, 168, 183, 0.2);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(230, 168, 183, 0.3);
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-content ul {
    list-style-position: inside;
    list-style-type: none;
}

.card-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.card-content ul li::before {
    content: '✿';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* About Section */
.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img-container {
    flex: 1;
    position: relative;
}

.about-img-container img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 5px solid white;
}

.about-img-container::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    background-color: var(--primary-color);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.3;
}

.about-text {
    flex: 1;
}

.about-flex.reverse {
    flex-direction: row-reverse;
}

/* Info Box */
.info-box {
    background-color: rgba(230, 168, 183, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

/* Footer */
footer {
    position: relative;
    background-image: url('banner doodle.jpeg');
    background-repeat: repeat-x;
    background-size: contain;
    background-position: center;
    color: var(--primary-dark);
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
    z-index: 1;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 230, 235, 0.85); /* Transparent pink overlay */
    z-index: -1;
}

footer p {
    margin-bottom: 5px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }

    .nav-links {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        width: 100%;
        padding-bottom: 5px;
        gap: 20px;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links::-webkit-scrollbar {
        height: 4px;
    }
    
    .nav-links::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }

    .nav-links li a {
        font-size: 1rem;
        padding: 5px 10px;
        background: rgba(230, 168, 183, 0.1);
        border-radius: 20px;
    }
    
    .nav-links li a::after {
        display: none; /* remove underline effect on mobile pills */
    }

    .nav-links li a.active, .nav-links li a:hover {
        background: var(--primary-color);
        color: white;
    }
    
    .hero-content {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-flex, .about-flex.reverse {
        flex-direction: column !important;
        gap: 30px;
    }

    .about-img-container,
    .about-text {
        flex: 1 !important;
        width: 100%;
    }

    .about-img-container::before {
        display: none;
    }

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

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

/* Small mobile fixes */
@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links li a {
        font-size: 1rem;
    }
}

/* --- NEW FEATURES STYLES --- */

/* Header Contacts */
.header-contact {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.btn-sm {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.btn-call {
    background-color: var(--primary-color);
    color: white !important;
    border: 1px solid var(--primary-dark);
}

.btn-call:hover {
    background-color: var(--primary-dark);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white !important;
    border: 1px solid #128C7E;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

/* Go To Top Button */
.go-top {
    position: fixed;
    bottom: 90px;
    right: 25px;
    background-color: var(--primary-dark);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.go-top:hover {
    transform: translateY(-5px);
    color: white;
    background-color: var(--primary-color);
}

/* Side by Side layout for Homepage */
.side-by-side-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.side-by-side-container > .section {
    flex: 1;
    min-width: 300px;
    padding: 40px 20px;
    border-radius: 15px;
}

/* Scrolling Wrapper (Testimonials & Gallery) */
.scrolling-wrapper {
    display: flex;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 20px;
    animation: scroll-left 40s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Testimonial Slider Styles */
.testimonial-slider-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 40px;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slider .testimonial-card {
    min-width: 100%;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    white-space: normal;
    word-wrap: break-word;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
    transition: background 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary-dark);
}

.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

.testimonial-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(230, 168, 183, 0.2);
    flex-shrink: 0;
}

.gallery-card {
    min-width: 300px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(230, 168, 183, 0.2);
    flex-shrink: 0;
}

.gallery-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Form Styles */
.contact-form {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--primary-dark);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--body-font);
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

/* Map Container */
.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }
    
    .header-contact {
        margin-left: 0;
        margin-top: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .side-by-side-container {
        flex-direction: column;
    }
}

