/* Google Font */
@import url('https: //fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

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

/* Body Styles */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #F8F9FA;
    /* Cloud White */
    font-weight: 500;
    color: #212529;
    /* Updated color for better contrast */
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 40px 0;
}

/* Header Styles */
header {
    height: 100vh;
    background-image: linear-gradient(135deg, #41B3A3 0%, #B4E27C 74%);
    /* Ocean Breeze to Zesty Lime */
    color: #FFFFFF;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

header .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

nav {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

nav .logo {
    font-size: 2.5rem;
    font-weight: 600;
    color: #FFFFFF;
}

.hero-content {
    margin-top: 100px;
}

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    font-size: 1rem;
    color: #FFFFFF;
    text-decoration: none;
    border: 2px solid #FFFFFF;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #FFFFFF;
    color: #41B3A3;
    /* Ocean Breeze */
}

.whatsapp {
    background-color: #25D366;
    border-color: #25D366;
}

.whatsapp:hover {
    background-color: #FFFFFF;
    color: #25D366;
}

/* Section Titles */
section h2 {
    font-size: 2.5rem;
    color: #41B3A3;
    /* Ocean Breeze */
    margin-bottom: 20px;
    font-weight: 600;
}

/* About Section */
#about p {
    font-size: 1.1rem;
    color: #343a40;
    /* Updated color for better contrast */
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Location Section */
.map-container {
    margin-top: 20px;
}

.map-container img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    border: 5px solid #41B3A3;
    /* Ocean Breeze */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.map-container img:hover {
    transform: scale(1.05);
}

/* Social Links Section */
.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.social-links a {
    color: #FFFFFF;
    background-color: #FF9F80;
    /* Sunset Coral */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #8A2BE2;
    /* Electric Violet */
}

.contact-info {
    margin-top: 20px;
}

.contact-btn {
    font-size: 1.2rem;
    color: #41B3A3;
    /* Ocean Breeze */
    text-decoration: none;
    border: 2px solid #41B3A3;
    /* Ocean Breeze */
    padding: 10px 20px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #41B3A3;
    /* Ocean Breeze */
    color: #FFFFFF;
}

/* Footer Styles */
footer {
    background-color: #41B3A3;
    /* Ocean Breeze */
    color: #FFFFFF;
    padding: 20px 0;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* style.css */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #B4E27C;
    /* Zesty Lime */
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.location {
    background-color: #FF9F80;
    /* Sunset Coral */
}

.location:hover {
    background-color: #8A2BE2;
    /* Electric Violet */
}

.location i {
    margin-right: 5px;
}

.posts-container {
    display: flex;
    overflow-x: auto;
    /* Enable horizontal scrolling */
    /* Optional styling */
    gap: 10px;
    /* Add spacing between items */
    padding: 10px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    header {
        height: auto;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        margin-bottom: 15px;
        width: 80%;
        margin: 0 auto 15px;
    }

    #about p {
        padding: 0 20px;
    }

    .social-links a {
        width: 45%;
        margin-bottom: 15px;
    }

    .contact-btn {
        width: 80%;
        margin: 0 auto;
    }
}