html, body {
  overflow-x: hidden; /* Prevent horizontal scrolling */
}
/* Navbar */
.navbar {
    transition: background-color 0.3s ease;
    padding: 10px 20px;
    background: transparent;
}
html, body {
  overflow-x: hidden; /* Prevent horizontal scrolling */
}
.navbar.scrolled {

    background: linear-gradient(135deg, #926268, #b58a86);
    transition: background 0.3s ease;
}

.navbar.scrolled .nav-link{
    color: white !important;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;


}

.nav-link {
    color: white !important;
    font-weight: 500;
    font-size: 1rem !important;
    margin: 0 10px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden; /* hide overflow from video */
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* cover whole section */
  z-index: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* dark overlay */
  z-index: 1;
}

.hero-content,
.booking-form {
  position: relative;
  z-index: 2; /* keep content above video */
}
.hero-content h1 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-content p {
    letter-spacing: 2px;
    margin-bottom: 30px;
}

/* Booking form container */
.booking-form {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1000px;
}

/* Each form box */
.form-box {
    background: #fff;
    padding: 15px 20px;
    border-radius: 6px;
    flex: 1;
    min-width: 180px;
    text-align: left;
}

.form-box label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.form-box input,
.form-box select {
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    margin-top: 5px;
}

/* Button */
.btn-availability {
    background: #8c7c5b;
    color: #fff;
    padding: 20px 30px;
    border-radius: 6px;
    font-weight: 500;
    border: none;
}

.btn-availability:hover {
    background: #6b5a3e;
}
/* Navbar logo */
.logo-img {
    max-height: 50px;
    /* control height */
    width: auto;
    /* keep proportions */
}
@media (max-width: 991.98px) {
  .navbar-collapse {
   background: white;
    border-radius: 8px;
  }
  .navbar-collapse .nav-link {
    color: black !important; /* keep text white */
  }
}
@media (max-width: 767px) {
    .logo-img {
        max-height: 40px;
        /* slightly smaller on mobile */
    }
}

/* ✅ Mobile adjustments */
@media (max-width: 767px) {
    .hero-section {
        justify-content: center;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .booking-form {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

    .btn-availability {
        width: 100%;
    }
}

#welcome {
    background-color: #f5f8fd;
    /* light background */
}

#welcome h2 {
    font-size: 2.5rem;
    color: #926268;
}

.btn-warning {
    background-color: #926268 !important;
    border: none;
    border-radius: 50px;
    padding: 15px !important;
}

.overlay-img {
    position: absolute;
    bottom: -45px;
    right: -5px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid #fff;

}

@media (max-width: 768px) {
    .overlay-img {
        display: none;
    }
}


#facilities {
    background: url("../images/umbrella-chair.jpg") no-repeat center center/cover;
    position: relative;
}

#facilities::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    /* dark overlay */
}

#facilities .container {
    position: relative;
    z-index: 2;
}

.facility-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: left;
}

.facility-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.facility-card .icon {
    font-size: 32px;
    color: #fbc531;
    /* golden color */
}

.room-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #d1b1a0;
    border-radius: 10px;
    text-align: center;
    background: #fff;
}

.room-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.room-info {
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    /* Always visible */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 50% 50%;
    background-position: center;
    background-repeat: no-repeat;
}

/* Black arrows inside */
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L6.707 7l4.647 4.646a.5.5 0 0 1-.708.708l-5-5a.5.5 0 0 1 0-.708l5-5a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l5 5a.5.5 0 0 1 0 .708l-5 5a.5.5 0 0 1-.708-.708L9.293 7 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.menu-section {
    background: url('../images/crilled-chicken.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    color: white;
}

.menu-section .overlay {
    background: rgba(0, 0, 0, 0.6);
    min-height: 100vh;
}

.nav-link {
    font-size: 1.2rem;
    margin: 0 10px;
}

.nav-link.active {
    border-bottom: 2px solid #fff;
}

.foodhead li a {
    color: #fff !important;
}

.pp-footer {
    background: url("../images/banner.jpg") no-repeat center center fixed;
    background-size: cover;
    padding: 60px 0;
    /* space above & below content */
    position: relative;
}

.pp-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* transparent overlay */
}

.pp-footer-wrap {
    position: relative;
    /* keep content above overlay */
    z-index: 2;
    color: #fff;
}

/* Left panel with transparent bg */
/* Left panel with more transparent bg */
.pp-left {
    background: rgba(207, 226, 215, 0.5);
    color: #111;
    /* black text */
    padding: 56px 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Right panel with more transparent bg */
.pp-right {
    background: rgba(18, 26, 34, 0.6);
    /* was 0.9 → now lighter */
    color: #e7eef3 !important;
    padding: 48px;
}

.pp-right h6,
.pp-right .nav-link,
.pp-note,
.pp-copy {
    color: #fff !important;
    /* force all text to white */
}

.pp-right .nav-link:hover {
    color: rgba(207, 226, 215, 0.5) !important;
}

.pp-left h3 {
    font-size: 38px;
    line-height: 1.25;
    font-weight: 600;
    margin: 24px 0 28px;
    letter-spacing: .2px;
}

.pp-left h3,
.pp-left .pp-cta {
    color: white;
    /* dark for heading & button */
}

.pp-left .pp-cta {
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.pp-left .pp-cta:hover {
    border-color: #ffefef;
    color: #ffffff;
}

.pp-cta {
    display: inline-block;
    border: 1.5px solid rgba(255, 255, 255, .35);
    color: #e7eef3;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
}

.pp-cta:hover {
    border-color: #fff;
    color: #fff;
}

.pp-right h6 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 14px;
}

.pp-right .nav-link {
    padding: 6px 0;
    color: white;
    opacity: .9;
    font-size: 15px;
}

.pp-right .nav-link:hover {
    color: #0b5ed7;
    opacity: 1;
}

.pp-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #926268, #b58a86);
    color: white;
    margin-right: 10px;
    text-decoration: none;
}

.pp-social a:hover {
    background: transparent;
    color: #926268;
}

.pp-copy {
    font-size: 13px;
    color: #1c2a2a;
    opacity: .9;
    margin-top: 18px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .pp-left {
        padding: 40px 28px;
    }

    .pp-right {
        padding: 32px 24px;
    }

    .pp-left h3 {
        font-size: 32px;
    }
}