body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background-color: #fafafa;
    color: #333;
}

header {
    background-color: #cbc385;
    color: rgb(232, 230, 230);
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(20, 16, 16, 0.2);
}

/* Base nav layout */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    color: #0a0b04;
}

/* Logo or site name */
.text {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: 'Source Sans Pro', sans-serif;
}

/* Nav links container */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

/* Nav links styling */
.nav-links a {
    position: relative;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: #761128;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #761128;
}

.nav-links a:hover::after {
    width: 100%;
}

/* 🔽 Responsive mobile styles */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 10px;
    }

    .nav-links a {
        padding: 10px 0;
        width: 100%;
        display: block;
    }

    .text {
        font-size: 18px;
        margin-bottom: 5px;
    }
}


.nav-links li {
    margin: 5px 15px;
}

/* Base styles */
.nav-links a {
    position: relative;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

/* Underline effect */
.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: #761128;
    transition: width 0.3s ease;
}

/* Hover effect */
.nav-links a:hover {
    color: #761128;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

#home {
    background: url('images/home-image.jpg.jpeg') no-repeat center center/cover;
    color: rgb(238, 239, 247);
    text-align: center;
    padding: 160px 20px 100px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#home .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
}

#home h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

#home p {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 300;
}

#bookButton {
    background-color: #ffcc00;
    color: #333;
    border: none;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#bookButton:hover {
    background-color: #e6b800;
    transform: scale(1.05);
}

#bookingForm {
    margin-top: 20px;
    background-color: rgba(20, 127, 156, 0.95);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#bookingForm label {
    display: block;
    margin: 12px 0 6px;
    font-weight: bold;
    color: white;
}

#bookingForm input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

#bookingForm button {
    background-color: #ffcc00;
    color: #333;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#bookingForm button:hover {
    background-color: #e6b800;
}

#gallery {
    background-color: #c2c9ce;
    text-align: center;
    padding: 80px 20px;
}

#gallery h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
}

.gallery-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

.gallery-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Testimonials section */
#testimonials {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

#testimonials h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

/* Testimonials container */
.testimonial-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.testimonial {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: left;
}

.testimonial p {
    margin: 0 0 10px;
    color: #555;
    font-size: 1em;
}

/* Review form styling */
.review-form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.review-form h3 {
    margin-bottom: 15px;
    color: #333;
}

.review-form textarea,
.review-form input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
    font-size: 1em;
}

.review-form button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.review-form button:hover {
    background-color: #0056b3;
}

/* ---------- Responsive Layout ---------- */
@media (min-width: 768px) {
    #testimonials h2 {
        font-size: 2.5em;
    }

    .testimonial-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .testimonial {
        flex: 1 1 45%;
        margin: 10px;
    }

    .review-form {
        width: 70%;
    }
}

#google-review {
    padding: 40px 20px;
    text-align: center;
    background-color: #e5e3ed;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

#google-review h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #333;
}

#google-review p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

#googleReviewBtn {
    padding: 12px 25px;
    background-color: #4285F4;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#googleReviewBtn:hover {
    background-color: #3367D6;
}


html {
    scroll-behavior: smooth;
  }
  
  .contact-section {
    margin-top: 20px;
    background-color: rgba(20, 127, 156, 0.95);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(125, 15, 15, 0.2);
    color: #040d28;
    text-align: center;

  }
  
#contact-textarea {
    width: 100%;
    height: 200%;
}


footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    #home h1 {
        font-size: 36px;
    }

    #home p {
        font-size: 18px;
    }

    .testimonial-container {
        flex-direction: column;
    }

    section {
        padding: 80px 20px;
    }
}
