:root {
  --clr-p: #ae902f;
  --clr-s: #493c12;
  --clr-t: #ffffff;
  --clr-bg: #f8f9fa;
  --clr-text: #333333;
  --font-primary: "Roboto", sans-serif;
}

body {
  font-family: var(--font-primary);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--clr-s);
}

.section-heading {
  color: var(--clr-p);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--clr-p);
}

/* Navbar */
.navbar {
  background-color: var(--clr-t) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.nav-link {
  color: var(--clr-s) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-p) !important;
}

.navbar-brand img {
  max-height: 50px;
}

/* Banner */
.banner {
  position: relative;
  overflow: hidden;
  padding: 0 !important; /* Touch navbar */
}

.glide__slide img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.info-box {
  position: absolute;
  top: 50%;
  left: 2%; /* Adjusted left */
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem; /* Reduced padding */
  border-radius: 10px;
  max-width: 320px; /* Reduced width */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 10;
  text-align: center;
}

.info-box h1 {
  font-size: 1.5rem; /* Reduced font size */
  color: var(--clr-p);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

/* Custom Glide Navigation */
.glide__arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 40px;
  display: flex !important;
  justify-content: space-between;
  pointer-events: none; /* Allow clicks through the container */
  z-index: 20;
}

.glide__arrow {
  background-color: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.3) !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  pointer-events: auto; /* Enable clicks on buttons */
  transition: all 0.3s ease !important;
  color: var(--clr-t) !important;
  font-size: 1.5rem !important;
}

.glide__arrow:hover {
  background-color: var(--clr-p) !important;
  border-color: var(--clr-p) !important;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.info-box h2 {
  font-size: 0.9rem; /* Reduced font size */
  color: var(--clr-s);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.info-box h3 {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.info-box .status {
    background-color: var(--clr-p);
    color: #fff;
    padding: 2px 8px;
    font-size: 0.65rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
}

.info-box .mb-ext-box h4 {
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 4px;
}

.info-box .mb-ext-box h5 {
    font-size: 1.1rem;
    color: var(--clr-p);
    font-weight: 700;
    margin-bottom: 12px;
}

.btn-cta {
  background-color: var(--clr-p);
  border: none;
  color: var(--clr-t);
  padding: 10px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-cta:hover {
  background-color: var(--clr-s);
  color: var(--clr-t);
}

/* Sections */
section {
  padding: 4rem 0;
}

#overview p {
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Pricing */
.price-card {
  background: var(--clr-t);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid #eee;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--clr-p);
  color: var(--clr-t);
}

.price-card h5 {
  color: var(--clr-p);
}


/* Amenities Custom Style */
.amenities-block-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 250px; /* Fixed height for consistency */
}

.amenities-block-wrapper:hover {
  transform: translateY(-5px);
}

.amenities-block-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
}

.amenities-block-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.amenities-block-wrapper:hover img {
  transform: scale(1.1);
}

.amenity-name {
  position: absolute;
  bottom: 20px;
  left: 0;
  background-color: var(--clr-t);
  color: var(--clr-s);
  padding: 8px 25px 8px 15px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
  z-index: 2;
}

.artistic-impression {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.7rem;
  color: #555;
  font-weight: 500;
  z-index: 2;
}

/* Gallery Grid */
.gallery-img {
    display: block;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-img:hover img {
    transform: scale(1.05);
}


/* Plan Blocks */
.plan-block {
  background: var(--clr-t);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.plan-block img {
  border-radius: 5px;
  margin-bottom: 15px;
  max-height: 300px;
  object-fit: contain;
}

/* Sidebar / Form */
sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--clr-t);
  padding: 20px;
  border-radius: 10px 0 0 10px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  width: 300px;
  display: none; /* Hidden by default on mobile, can be toggled */
}

@media (min-width: 992px) {
  sidebar {
    display: block;
  }
}

.enq-form input {
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 10px;
}

.enq-form .btn {
  width: 100%;
  margin-top: 10px;
}

/* Footer */
footer {
  background: var(--clr-t);
  color: var(--clr-text);
  padding: 3rem 0;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid #eee;
}

.disclaimer-box h6 {
  color: var(--clr-s);
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 700;
}

.disclaimer {
  color: #555;
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.copyright p {
  color: #555;
}

.copyright a {
  color: var(--clr-s) !important;
  transition: color 0.3s ease;
  text-decoration: none;
}

.copyright a:hover {
  color: var(--clr-p) !important;
  text-decoration: underline;
}

/* Utilities */
.text-gold {
  color: var(--clr-p);
}

.bg-gold {
  background-color: var(--clr-p);
}
