/* === Reset & Base === */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #fdf9e5;
}

/* === Header Layout === */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fdf9e5;
    padding: 50px 40px 20px;
    border-bottom: 1px solid #ccc;
    position: relative;
    overflow: visible;
    flex-wrap: wrap;
}

/* === Logo === */
.logo-container {
    position: relative;
    width: 220px;
    flex-shrink: 0;
}

.logo {
    position: absolute;
    top: -60px;
    left: 0;
    height: 220px;
    width: auto;
    border-radius: 20%;
    z-index: 2;
}

/* === Title & Subtitle === */
.title-area {
    flex-grow: 1;
    padding-left: 30px;
}

.title-area h1 {
    font-size: 2.8rem;
    margin: 0;
    color: #256029;
}

.title-area p {
    margin: 5px 0 0;
    font-size: 1.2rem;
    color: #256029;
}

/* === Contact Button === */
.contact-btn {
    background-color: #256029;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}

.contact-btn:hover {
    background-color: #1a3f1f;
}

/* === Hero Image Section === */
.hero-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 400px;
    /* ← LIMIT the height */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

}


/* === Hero Intro Text === */
.hero-intro {
    padding: 30px 40px 0;
    font-size: 2.1rem;
    font-family: 'Brush Script MT', cursive;
    color: #333;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 0px;
    /* ⬅ Add this (or reduce if it's already bigger) */
}


/* === About Section Layout === */
.about-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 40px;
    /* ← adds left/right breathing room */
    max-width: 1400px;
    /* ← caps max width */
    margin: 0 auto;
    /* ← centers the section */
    background-color: #fdf9e5;
    margin-top: 0px;
}

.about-text {
    flex: 1 1 300px;
    max-width: 400px;
}

.about-text h2 {
    font-size: 2rem;
    color: #256029;
    margin-bottom: 10px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.about-gallery {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    padding-top: 100px;
    scrollbar-width: none;
}

.about-gallery img {
    width: 100%;
    max-width: 260px;
    /* slightly smaller than before */
    flex-shrink: 0;
}

.todo-heading {
    padding: 30px 40px 0;
    font-size: 2.1rem;
    font-family: 'Brush Script MT', cursive;
    color: #fdf9e5;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 0px;
    text-align: center;

}

.todo-section {

    background-color: #1a3f1f;
    padding-bottom: 100px;

}

.todo-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.todo-gallery img {
    width: 100%;
    max-width: 260px;
    /* slightly smaller than before */
    flex-shrink: 0;
    border: 8px solid #fdf9e5;
    /* ← adjust thickness if you want */
    border-radius: 12px;
    /* ← optional, for soft rounded corners */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    /* ← optional: subtle shadow for lift */
}

.hover-card {
    position: relative;
    width: 260px;
    height: 360px;
    overflow: hidden;
    background-color: #fdf9e5;
    border: 8px solid #fdf9e5;
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.hover-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    border-radius: 12px;
    transition: opacity 0.3s ease;
}

.hover-card .hover-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fdf9e5;
    color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
}

.hover-card:hover img {
    opacity: 0;
}

.hover-card:hover .hover-text {
    opacity: 1;
}

.hover-card:hover {
    border-color: #f7d488;
}

.hover-button {
    background-color: #256029;
    /* dark green */
    color: #fdf9e5;
    /* cream */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 15px;
    display: inline-block;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.hover-button:hover {
    background-color: #f7d488;
    color: #256029;
    /* darker green when hovering the button */
}

.emoji {
    display: block;
    font-size: 4rem;
    margin-bottom: 10px;
    transition: transform 0.6s ease;
}

.hover-card:hover .emoji {
    transform: scale(1.2) rotate(360deg);
}

.contact-section {
    background-color: #013001;
    /* dark green background */
    padding: 50px 20px;
    text-align: center;
}

.contact-card {
    background-color: #fdf9e5;
    /* cream color */
    padding: 40px;
    margin: 0 auto;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.map-section {
    padding: 10px 20px 60px 20px;
    background-color: #fdf9e5;
    text-align: center;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto 60px auto;
    /* ⬅ This! */
    border-radius: 12px;
    overflow: hidden;

}

.map-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #256029;
    color: #fdf9e5;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.map-button:hover {
    background-color: #1a3f1f;
}

.contact-button {
    display: inline-block;
    background-color: #25D366;
    /* WhatsApp green */
    color: white;
    padding: 12px 24px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #128C7E;
    /* darker green on hover */
}

.contact-form {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #256029;
    border-radius: 8px;
    background: #ffffff;
    font-size: 1rem;
    color: #333;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    background-color: #256029;
    color: #fdf9e5;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-submit-btn:hover {
    background-color: #1a3f1f;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

/* === Mobile Styles === */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 120px 20px 20px;
    }

    .logo-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .logo {
        position: static;
        height: 160px;
        margin-bottom: 10px;
    }

    .title-area {
        padding: 0;
        width: 90%;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero-intro p {
        font-weight: bold;
    }

    .contact-btn {
        width: 90%;
        max-width: 300px;
        margin: 0 auto 20px;
    }

    .about-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-text {
        max-width: 100%;
    }

    .about-gallery {
        justify-content: center;
    }

    .about-gallery img {
        max-width: 90%;
    }

    .todo-gallery {
        flex-direction: column;
        align-items: center;
    }

    .hover-card {
        width: 90%;
        margin-bottom: 20px;
    }

    .hover-card img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

}