/* General page styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
}

header {
    text-align: center;
    background-color: #f8f8f8;
    padding: 20px;
    border-bottom: 2px solid #ccc;
}

header img {
    max-width: 590px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

h1 {
    text-align: center;
    color: red;
    font-size: 28px;
    font-weight: bold;
    margin-top: 10px;
}



.category-title{
            background-color: black;
            color: white;
            text-align: center;
            padding: 10px 0;
            font-size: 24px;
            font-weight: bold;
        }
/* Adjust scroll offset for sticky menu */
section {
    scroll-margin-top: 80px; /* Adjust this value based on navbar height */
}

/* Sticky Navigation Bar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: black; /* Keeps original color */
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Navigation Links */
nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    margin: 0 15px;
    transition: color 0.3s;
}

nav a:hover {
    color: red; /* Red hover effect */
}
/* HAMBURGER MENU BUTTON - MORE VISIBLE */
.menu-toggle {
    display: none;
    background: red; /* Bright red background for visibility */
    border: none;
    color: white;
    font-size: 28px; /* Larger icon */
    font-weight: bold;
    padding: 12px 15px;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 1100;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Adds subtle shadow */
}

/* CUSTOMIZING THE HAMBURGER ICON */
.menu-toggle .bar {
    display: block;
    width: 35px;  /* Wider bars */
    height: 5px;  /* Thicker bars */
    margin: 6px auto;
    background-color: white; /* Ensure high contrast */
    border-radius: 3px;
}

/* MOBILE MENU STYLING */
@media (max-width: 991px) {
    .menu-toggle {
        display: block; /* Show hamburger icon on small screens */
    }
@media (max-width: 400px) {
  .menu-toggle {
    right: 20px;
    top: 10px;
    /* Optionally reduce padding if needed: */
    padding: 8px 10px;
  }
}

    nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    nav a {
        display: none; /* Hide menu links by default */
        width: 100%;
        text-align: left;
        padding: 10px 20px;
    }

    nav.show a {
        display: block; /* Show menu links when hamburger is clicked */
    }
}

/* Carousel styles */
.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px 0;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px;
    white-space: nowrap;
    max-width: 90%;
}

.carousel-item {
    display: inline-block;
    width: 220px;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    background-color: #f9f9f9;
    text-align: center;
    transition: box-shadow 0.3s ease-in-out;
}

.carousel-item:hover {
    box-shadow: 0px 0px 15px rgba(255, 0, 0, 0.5);
}

.carousel img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Book Now button */
.book-now {
    display: block;
    background-color: #d32f2f;
    color: #fff;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 10px;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.book-now:hover {
    background-color: #b71c1c;
}
.features i {
    margin-right: 8px;
    color: #555;
    font-size: 18px;
}


/* Reservation Section */
#reservation-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Reservation Form */
#reservation-form {
    display: none;
    background-color: white;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    border: 2px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: max-height 0.4s ease-in-out;
    overflow: hidden;
    opacity: 0;
    position: relative;
    z-index: 100;
	margin: 20px auto; /* Centers the form horizontally */
}

#reservation-form.show {
    display: block;
    opacity: 1;
    max-height: 2000px; /* Allows expansion */
    transition: opacity 0.4s ease-in-out, max-height 0.4s ease-in-out;
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap; /* Ensures proper layout on small screens */
}

.form-row label {
    font-weight: bold;
    text-align: center;
    flex: 1; /* Equal spacing */
}

.form-row input {
    flex: 2; /* Allows inputs to take more space */
    padding: 8px;
    font-size: 14px;
}

.section-header {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-top: 20px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between checkbox and text */
    justify-content: flex-start; /* Align everything to the left */
    width: 100%; /* Ensure it spans the full width */
    padding-left: 0; /* Remove any extra padding */
    flex-wrap: nowrap; /* Prevents wrapping */
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0; /* Prevents checkbox from resizing */
    margin-left: 0; /* Ensures no unwanted left margin */
}

.checkbox-container label {
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap; /* Prevents label from breaking into two lines */
    text-align: left; /* Forces left alignment */
    flex-grow: 1; /* Ensures text follows checkbox properly */
}


button[type="submit"] {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
}



/* Car Image in Form */
.responsive-car-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 10px auto;
}

/* Form Styling */
#reservation-form div {
    width: 100%;
    margin-bottom: 10px;
}

#reservation-form label {
    font-weight: bold;
    margin-bottom: 5px;
}

#reservation-form input, 
#reservation-form select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#reservation-form .checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

#reservation-form button {
    width: 100%;
    padding: 12px;
    background-color: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

#reservation-form button:hover {
    background-color: #b71c1c;
}

/* ABOUT SECTION - TWO-COLUMN LAYOUT */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 50px 0;
}

/* LEFT SIDE: BIG TEXT BOX */
.about-text-box {
    width: 50%;
    height: 600px;
    background: #f8f8f8; /* Light grey background */
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
}

/* HEADINGS & TEXT STYLING */
.about-text-box h1 {
    font-size: 2.5rem;
    color: red;
    font-weight: bold;
}

.about-text-box p {
    font-size: 1rem;
    line-height: 1.6;
}

/* VISION & MISSION BOXES */
.about-boxes {
    display: flex;
    gap: 20px;
}

.about-box {
    background-color: white;
    padding: 20px;
    flex: 1;
    text-align: center;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

/* ICON STYLING */
.about-box img {
    width: 50px;
    filter: drop-shadow(0 0 10px red);
}

.about-box h5 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 10px;
}

.about-box p {
    font-size: 1rem;
}

/* RIGHT SIDE: IMAGE */
.about-image-box {
    width: 50%;
    height: 600px;
}

.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 991px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        /* optional: add padding to the container as well, if desired */
        /* padding: 0 20px; */
    }

    .about-text-box,
    .about-image-box {
        width: 100%;
        height: auto;

        /* The key margin fix so both boxes have extra spacing from screen edges */
        margin-left: 20px;
        margin-right: 20px;
        box-sizing: border-box;
    }

    .about-boxes {
        flex-direction: column;
    }
}

/* contact styling*/
        .contact-header {
            background-color: black;
            color: white;
            text-align: center;
            padding: 5	px;
            font-size: 24px;
            font-weight: bold;
        }
        .contact-info {
            text-align: center;
            margin: 20px auto;
        }
        .contact-form {
            text-align: center;
            margin: 20px auto;
            width: 60%;
        }
        .contact-form form {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .contact-form button {
            background-color: red;
            color: white;
            padding: 10px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
/* Enhanced IDP Button Styling */
.idp-link {
  background: none !important;
  border: none !important;
  color: #0073e6 !important;
  text-decoration: underline !important;
  cursor: pointer !important;
  font: inherit !important;
  padding: 0 !important;
  display: inline !important;
  margin: 0 !important;
}

.idp-link:hover {
  color: #004a99 !important;
  text-decoration: underline !important;
}

/* Enhanced Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 25px;
  border: 1px solid #888;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  position: relative;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
}

.close:hover {
  color: black;
}