@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;700&family=Bree+Serif&family=Playfair+Display&display=swap');

/* --- General Body & Page Structure Styles --- */
body {
    font-family: 'Open Sans', Arial, sans-serif; /* Prioritize Open Sans or a suitable sans-serif */
    margin: 0;
    padding-top: 70px; /* Adjust based on your fixed navbar height */
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.contact-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px; /* Consistent padding for all containers */
}

section {
    background: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h2 {
    color: #333;
    text-align: center;
    margin-bottom: 25px;
    font-family: 'Bree Serif', serif; /* Consistent heading font */
    font-size: 2rem;
}

/* --- Navbar Styles (Consistent across all pages) --- */
.navbar.fixed-top {
    background-color: #d2b48c;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-brand img {
    background-color: transparent;
    width: 60px; /* Consistent logo size */
    height: 60px; /* Consistent logo size */
    border-radius: 50%; /* If you want the logo to be circular */
}

.navbar h5 {
    font-family: 'Roboto', sans-serif;
    color: #000;
    margin-left: 10px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

/* Hide center title on small screens */


.navbar-nav .nav-link {
    color: black !important; /* Force black color for links */
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #555 !important; /* Darker on hover */
}

/* Active state for current page link */
.navbar-nav .nav-link.active {
    font-weight: 700; /* Make active link bolder */
    color: #5d4037 !important; /* A distinct color for the active link */
}


.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler-icon {
    /* Customizing the hamburger icon to be black for visibility */
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Ensure the collapsed menu has a background and proper positioning on mobile */
@media (max-width: 991.98px) {
    .navbar-collapse.show {
        background-color: #d2b48c;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        border-radius: 5px;
        padding: 10px 0;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    .navbar-nav .nav-link {
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}


/* --- Hero Image (Banner) Styles --- */
.hero-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px; /* Default max-height for larger screens */
}


/* --- Contact Form Styles --- */
.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
    font-family: 'Open Sans', sans-serif;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"], /* Corrected type for phone number */
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding and border are included in the 100% width */
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical; /* Allow vertical resizing */
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

.contact-form .send-button {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background-color: #007bff; /* Keep original blue for action button */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

.contact-form .send-button:hover {
    background-color: #0056b3;
}

/* --- Google Map Styles --- */
.gmap-location .map-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio for responsive height */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Add shadow for consistency */
}

.gmap-location .map-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    border-radius: 8px;
}

/* --- WhatsApp Float Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050; /* Higher z-index to ensure it's above other elements */
    background-color: transparent;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px); /* Simple hover effect */
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
}

/* --- Footer Styles (Consistent across all pages) --- */
.bg-container-bottom {
    background-color: #d2b48c;
    color: black;
    padding-top: 50px;
    padding-bottom: 30px;
}

.bg-container-bottom .logo-image {
    max-width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 15px; /* Center and add bottom margin for small screens */
}

@media (min-width: 768px) {
    .bg-container-bottom .logo-image {
        margin: 0 0 15px 0; /* Align left on larger screens */
    }
}

.bg-container-bottom h5 {
    color: black;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

.bg-container-bottom p {
    color: #333;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
}

.bg-container-bottom i {
    margin-right: 8px;
    color: #5d4037; /* A subtle accent color for icons */
}

.bg-container-bottom hr {
    border-color: black;
    margin-top: 30px;
    margin-bottom: 20px;
}

.bg-container-bottom .text-center {
    font-size: 0.85rem;
    color: rgba(0,0,0,0.8);
}

/* Responsive adjustments for footer columns */
@media (max-width: 767.98px) {
    .bg-container-bottom .col-12.col-md-6.col-lg-3.mb-4 {
        margin-bottom: 30px;
        text-align: center;
    }

    .bg-container-bottom h5 {
        text-align: center;
    }
}


/* --- Responsive Design (Media Queries) --- */

/* Small devices (phones, portrait and landscape, less than 768px) */
@media (max-width: 767.98px) {
    body {
        padding-top: 60px; /* Adjust for smaller navbar height on mobile */
    }

    .hero-image img {
        max-height: 200px;
        object-position: center top;
    }

    .whatsapp-float img {
        width: 50px;
        height: 50px;
    }

    h2 {
        font-size: 1.75rem;
    }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    body {
        padding-top: 70px; /* Default for tablets */
    }
    .hero-image img {
        max-height: 300px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    body {
        padding-top: 80px; /* Standard padding for large screens */
    }
    .hero-image img {
        max-height: 400px;
    }
}
.about-banner {
    position: relative;
    overflow: hidden;
}

.about-banner img {
    max-height: 100vh;
    object-fit: cover;
    width: 100%;
    height: auto;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 20px;
    border-radius: 8px;
}

.banner-content h1,
.banner-content p {
    margin: 0;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7); /* Improves readability */

}

.about-banner {
    position: relative;
    overflow: hidden;
}

.about-banner img {
    width: 100%;
    height: auto;
    max-height: 500px; /* Limit image height */
    object-fit: cover;
    object-position: center;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for readability */
    color: white;
    border-radius: 8px;
    max-width: 90%;
}

.banner-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

.banner-content p {
    font-size: 1.1rem;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

/* --- Responsive Adjustments for Small Screens --- */
@media (max-width: 767.98px) {
    .banner-content {
        padding: 1rem;
    }

    .banner-content h1 {
        font-size: 1.75rem;
    }

    .banner-content p {
        font-size: 0.95rem;
    }

    .about-banner img {
        max-height: 300px;
    }
}

