/* --- General Styles & Dark Theme Variables --- */
:root {
  --bg-color: #121212;        /* Very dark grey (almost black) - unchanged for base */
  --surface-color: #1e1e1e;     /* Dark grey for cards/header - unchanged for consistency */
  --primary-color: #CCCCCC;     /* Pale Green - a softer, pleasant green */
  --secondary-color: #008080;   /* Teal - can complement green well */
  --text-color: #AAAAAA;       /* Light grey text - unchanged for readability */
  --text-secondary: #CCCCCC;    /* Dimmer text - unchanged for hierarchy */
  --border-color: #333333;      /* Dark border - unchanged for subtlety */
  --header-height: 160px;
}

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

html {
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
    scroll-padding-top: var(--header-height); /* Offset for fixed header */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Play", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color); /* Accent color for headers */
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px; /* Add some space below the fixed header */
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

.text-bold {
    font-weight: bold;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

section {
    padding: 60px 0;
}

/* Give alternating sections a slightly different background */
.alternate-bg {
    background-color: var(--surface-color);
}

.top-bar {
    background-color: #1a1a1a; /* Slightly darker than surface for subtle separation */
    padding: 5px 0;
    border-bottom: 1px solid var(--border-color); /* The separator line */
}

.top-bar-container {
    display: flex;
    justify-content: flex-end; /* Align items to the right */
    align-items: center;
}

.contact-info-top {
    display: flex;
    align-items: center;
}

.contact-item {
    display: inline-flex; /* Align icon and text */
    align-items: center;
    margin-left: 20px; /* Space between phone and email */
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.contact-item:first-child {
    margin-left: 0; /* No margin for the first item */
}

.contact-item a {
    color: var(--text-secondary); /* Match text color */
    margin-left: 6px; /* Space between icon and link */
}
.contact-item a:hover {
    color: var(--primary-color);
}
/* Optional: Style for Unicode icons if Font Awesome isn't used */
.contact-item span { /* Assuming icons are wrapped in span if needed */
    margin-right: 6px;
    font-size: 1.1em; /* Slightly larger icon */
    line-height: 1; /* Prevent extra line height */
}

/* --- Header & Navigation --- */
header {
    background-color: var(--surface-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky; /* Fixed header */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo a {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    display: flex; /* Align image/text nicely if needed */
    align-items: center;
}
.logo img {
    vertical-align: middle; /* Better alignment for image logo */
}

.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative; /* For potential underline effects */
}

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

.menu-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
}

/* --- About Section --- */
#about .banner {
    position: relative; /* Required to position the overlay absolutely within it */
    height: 45vh; /* Adjust height as needed - maybe taller now with text */
    background: url('images/baner.jpg') no-repeat center center/cover;
    background-color: var(--surface-color); /* Fallback color */
    display: flex; /* Helps with alignment if needed, but overlay handles centering */
    align-items: center;
    justify-content: center;
    color: #fff; /* Default text color for content directly in banner (if any) */
     /* Removed margin-bottom and border-bottom from original style if they existed */
}

/* The overlay DIV */
.banner-overlay {
    position: absolute; /* Take up full space of parent (.banner) */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.7); /* Semi-transparent dark overlay (adjust 0.7 for more/less transparency) */
    display: flex; /* Use flexbox to center content */
    flex-direction: column;
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    text-align: center;
    padding: 20px; /* Add some padding */
}

/* Container for the text elements, limits width */
.banner-text {
   max-width: 900px; /* Adjust max width as needed */
}

/* Styling the main heading on the banner */
.banner-overlay h1 {
    font-size: 2.8rem;
    font-weight: 700; /* Bold */
    color: var(--primary-color); /* Use accent color for the main heading */
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Dark shadow for readability */
    line-height: 1.3;
}

/* Styling the sub-heading paragraph on the banner */
.banner-overlay p {
    font-size: 1.6rem;
    font-weight: 400; /* Regular weight */
    color: var(--text-color); /* Use the standard light text color */
    margin-bottom: 0; /* Reset paragraph margin */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6); /* Slightly lighter shadow */
    line-height: 1.4;
}


/* Content BELOW the banner */
#about .about-content {
    text-align: justify;
    max-width: 1200px;
    margin: 40px auto 0 auto; /* Add margin-top to separate from banner */
}
#about .about-content h2 {
     margin-bottom: 20px;
}
#about .about-content p {
    color: var(--text-color);
    font-size: 1.1rem;
}


/* --- Media Queries for Banner Text Responsiveness --- */
@media (max-width: 992px) {
    .banner-overlay h1 {
        font-size: 2.4rem;
    }
    .banner-overlay p {
        font-size: 1.4rem;
    }
     #about .banner {
        height: 50vh;
    }
}

@media (max-width: 768px) {
     #about .banner {
        height: 45vh;
    }
    .banner-overlay h1 {
        font-size: 2rem;
    }
    .banner-overlay p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
     #about .banner {
        height: 40vh;
    }
    .banner-overlay h1 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    .banner-overlay p {
        font-size: 1rem;
        line-height: 1.3;
    }
}


/* --- Offer Section --- */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 30px;
}

.offer-card {
    background-color: var(--bg-color); /* Slightly different from alternate bg */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; /* Use flexbox for card layout */
    flex-direction: column;
}
/* .offer-card p { */
/*     text-align: center; */
/* } */

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(187, 134, 252, 0.2); /* Glow effect on hover */
}

.offer-card img {
    width: 100%;
    height: 200px; /* Fixed height for images */
    object-fit: cover; /* Crop images nicely */
}

.offer-card-content {
    padding: 20px;
    flex-grow: 1; /* Allow content to take remaining space */
    display: flex;
    flex-direction: column;
}
.offer-card-content h3 {
    margin-bottom: 10px;
}
.offer-card-content p {
    flex-grow: 1; /* Push content down if needed */
     color: var(--text-secondary);
}

/* --- Contact Section --- */
.contact-info {
    display: grid;
    grid-template-columns: 1fr; /* Default to single column */
    gap: 40px;
    text-align: center;
}

/* Layout for wider screens */
@media (min-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr 1fr; /* Two columns */
        text-align: left;
    }
    .contact-details {
        margin: 80px 0 0 60px;
        text-align: left;
    }
}

.contact-details h3 {
    margin-bottom: 0.5rem;
}
.contact-details p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}
.contact-details p a {
     color: var(--secondary-color);
}
.contact-details p a:hover {
     color: var(--primary-color);
}


.map-container {
    position: relative;
    width: 100%;
    /* Maintain aspect ratio for embedded map */
    padding-bottom: 75%; /* Adjust this percentage based on desired map height */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
     border: 1px solid var(--border-color);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Footer --- */
footer {
    background-color: var(--surface-color);
    color: var(--text-secondary);
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}

/* --- Responsiveness --- */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

    /* Mobile Menu Styles */
    .menu-toggle {
        display: block; /* Show hamburger */
    }

    .nav-menu {
        display: none; /* Hide nav links by default */
        position: absolute;
        top: var(--header-height); /* Position below header */
        left: 0;
        width: 100%;
        background-color: var(--surface-color);
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .nav-menu.active {
        display: flex; /* Show menu when active */
    }

    .nav-menu li {
        margin: 10px 0;
        margin-left: 0; /* Reset margin for vertical layout */
    }

    .nav-menu a {
       padding: 10px;
       display: block; /* Make links take full width */
    }

    #about .banner {
        height: 30vh;
    }

    .contact-info {
        grid-template-columns: 1fr; /* Stack columns */
        text-align: center; /* Center text on mobile */
    }
     .contact-details {
        text-align: center; /* Center text on mobile */
    }
     .map-container {
        padding-bottom: 100%; /* Make map more square on mobile */
    }

}
