/* =====================
   Global Reset & Theme
===================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000000; /* Pure black to eliminate visible gaps */
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* =====================
   Headings & Clean UI (FIXED OVERLAP)
===================== */
h1, h2, h3 {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 { font-size: 3rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 2rem; }

/* Fixed Service Header to stop image overlap and remove white lines */
hr, .service-header {
    border: none !important;
    border-bottom: none !important;
    outline: none !important;
}

.service-header {
    display: block;
    width: 100%;
    text-align: left;
    height: auto !important; /* Forces header to occupy actual space */
    margin-top: 40px;
    margin-bottom: 25px !important; /* Pushes the gallery down away from text */
    position: relative;
    z-index: 10;
    color: #fff;
    font-size: 1.4rem;
}

/* =====================
   Navbar
===================== */
.navbar {
    background-color: #111;
    padding: 12px 20px;
}

.navbar .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: #f04e23;
}

.navbar .nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
}

.navbar .nav-menu li a {
    padding: 8px 15px;
    background-color: #f04e23;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

/* =====================
   Restored Services Grid (Horizontal Wrap)
===================== */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding-top: 20px;
}

.service-card {
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    flex: 0 1 calc(33.333% - 30px);
    min-width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(240, 78, 35, 0.3);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border: none !important;
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-content h3 { color: #f04e23; margin-bottom: 10px; }
.card-content .price { font-weight: bold; color: #fff; font-size: 1.2rem; }

/* =====================
   Home Page Gallery (Grid Style)
===================== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    clear: both; /* Ensures it starts after headers */
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
    background: #111;
    border: none !important;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none !important;
}

/* =====================
   Booking Form & Footer
===================== */
.booking-form {
    max-width: 600px;
    margin: 40px auto;
    background: #111;
    padding: 25px;
    border-radius: 15px;
}

footer {
    background-color: #111;
    text-align: center;
    padding: 20px 0;
    color: #666;
    margin-top: auto;
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .service-card { flex: 0 1 calc(50% - 30px); }
}

@media (max-width: 600px) {
    .service-card { flex: 1 1 100%; }
    .gallery { grid-template-columns: 1fr; }
}