html {
  scroll-behavior: smooth;
}

body{font-family:'Segoe UI',sans-serif;margin:0;padding:0; color:#333;}

/* NAVBAR */
.navbar{
  background:transparent;
  transition:0.3s;
}
.navbar.scrolled{
  background:#3d3105!important;
}
.navbar-brand{font-family:'Playfair Display',serif;font-size:26px;color:#fff!important}

/* MENU HOVER: background color change */
.navbar-nav .nav-link{
  color:#fff!important;
  margin:0 6px;
  padding:8px 15px;
  border-radius:6px;
  transition:0.3s;
}
.navbar-nav .nav-link:hover{
  background:rgba(224,177,68,0.8);
  color:#000!important;
}
@media (min-width:992px){
  .navbar-collapse{
    justify-content:flex-end;
  }
}
.logo img{max-width:240px;}

/* HERO SLIDER */
.hero-slider{
  position:relative;
  height:100vh;
  overflow:hidden;
}
.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1s ease-in-out;
}
.hero-slide.active{opacity:1;}
.hero-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  color:#fff;
  text-align:center;
  text-shadow:0 0 10px rgba(0,0,0,.7);
}
.hero-content h1{font-size:60px;margin-bottom:20px}
.hero-content p{font-size:22px}

@media (max-width: 768px){
  .hero-content h1{
    font-size: 36px;
  }
  .hero-content p{font-size:18px}
  
  .navbar{
  background:#3d3105;
  transition:0.3s;
}

}


/* SLIDER ARROWS */
.slider-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:20px;
  color:#fff;
  cursor:pointer;
  background:rgba(0,0,0,0.3);
  border-radius:50%;
  width:50px;
  height:50px;
  line-height:50px;
  text-align:center;
  z-index:10;
  transition:0.3s;
}
.slider-arrow:hover{background:rgba(224,177,68,0.8);color:#000;}
.slider-prev{left:20px;}
.slider-next{right:20px;}

/* SLIDER BULLETS */
.slider-bullets{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
}
.slider-bullets span{
  width:12px;
  height:12px;
  background:rgba(255,255,255,0.5);
  border-radius:50%;
  display:block;
  cursor:pointer;
  transition:0.3s;
}
.slider-bullets span.active{background:#e0b144;}

/* SECTION TITLES */
.section-title{
  font-family:'Playfair Display',serif;
  text-align:center;
  margin:60px 0 40px;
}

.text-primary h4{color:#3d3105;}
.text-primary h3{color:#333;font-size:14pt;}
.text-primary p{color:#333;}

/* ================= SECTION ================= */
.testimonial-section{
  background:#3d3105;
  padding:80px 0;
}

/* ================= TITLE ================= */
.testimonial-title h2{
  color:#fff;
}
.testimonial-title p{
  color:#aaa;
}

/* ================= CARD ================= */
.testimonial-card{
  max-width:700px;
  margin:0 auto;
  background:#1c1c1c;
  padding:35px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 15px 40px rgba(0,0,0,.5);
}

.testimonial-card p{
  color:#ddd;
  font-size:16px;
  font-style:italic;
  margin-bottom:20px;
}

.testimonial-card h6{
  color:#fff;
  margin-bottom:4px;
}

.testimonial-card small{
  color:#aaa;
}

/* ================= ARROWS (FIXED) ================= */
.carousel-control-prev-icon,
.carousel-control-next-icon{
  width:42px;
  height:42px;
  background-color:#fff;
  border-radius:50%;
  background-size:60% 60%;
}

/* LEFT ARROW */
.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 d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

/* RIGHT ARROW */
.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 d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.carousel-control-prev, .carousel-control-next{background:transparant;}
.carousel-control-prev:hover,
.carousel-control-next:hover{
  opacity:.85;
}

/* ================= MOBILE ================= */
@media(max-width:576px){
  .testimonial-card{
    padding:25px;
  }
}
/* FACILITIES */


.facility-card{
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    transition: all 0.3s ease;
    height: 150px;
    background: #ffffff;
    text-align: center;
    padding: 20px;margin-bottom:15px;
}

.facility-card .material-icons{
    font-size: 30pt;
    transition: all 0.25s ease;
}

/* Hover card */
.facility-card:hover{
    transform: translateY(-6px) scale(1.05);
    background: #333;
    color: #e0b144;
}

/* Hover icon when card is hovered */
.facility-card:hover .material-icon{
    transform: scale(1.1);
    color: #e0b144;
}
/* GALLERY */
/* Filter buttons */
.gallery-filter{
  text-align:center;
  margin:30px 0;
}

.gallery-filter button{
  border:none;
  background:#eee;
  padding:10px 20px;
  margin:5px;
  border-radius:30px;
  cursor:pointer;
  font-size:15px;
  transition:.3s ease;
}

.gallery-filter button.active,
.gallery-filter button:hover{
  background:#0d6efd;
  color:#fff;
}

/* ===== GALLERY GRID ===== */
.photo-gallery{
 
  padding:0;
}

.gallery-item, .inaround-card img, .about-img img{
 
  border-radius:14px;
  cursor:pointer;
  transform:scale(1);
  opacity:1;
  transition:transform .4s ease, opacity .4s ease;margin-bottom:20px;
}

.gallery-item img{
  width:100%;
  height:200px;
  object-fit:cover;
  transition:.4s ease;
}

.gallery-item:hover, .inaround-card:hover img, .about-img:hover img{
  transform:scale(1.1);
}

/* ===== FILTER ANIMATION ===== */
.gallery-item{
  transition:opacity .35s ease, transform .35s ease;
}

.gallery-item.hide{
  opacity:0;
  transform:scale(.85);
}

/* FINAL REMOVAL (no gap) */
.gallery-item.hidden{
  display:none;
}


/* ===== MOBILE OPTIMIZATION ===== */
@media(max-width:576px){
  .gallery-item img{height:160px}
}

/* CONTACT */
.contact-section .form-control{
  border-radius:8px;
}
.contact-section .btn-submit, .btn-primary{
  background:#e0b144;
  border:none;
  color:#000;
  font-weight:600;
  transition:.3s;
}
.contact-section .btn-submit:hover, .btn-primary:hover{background:#cfa233}

/* FOOTER */
.site-footer {
  background: #0f172a;
  padding: 20px 0;
  font-size: 14px;
}

.site-footer p {
  margin: 10px 0 0;
  color: #cbd5e1;
}

.site-footer a {
  color: #38bdf8;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Social icons */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  font-size: 22px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #38bdf8;
  color: #0f172a;
  transform: translateY(-3px);
}

/* Mobile spacing */
@media (max-width: 576px) {
  .site-footer {
    padding: 25px 10px;
  }
}

