@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wdth,wght@0,18..144,87.5,800;1,18..144,87.5,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap");
/* Fixed size for modal images */
.modal-fixed-img {
  width: 100%;
  max-width: 400px;   /* Set max width */
  height: 100%;      /* Fixed height */
  object-fit: cover;  /* Crop nicely */
}

/* Navigation arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  padding: 12px 16px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}
.nav-arrow.prev {
  left: 180px;
}
.nav-arrow.next {
  right: 180px;
}
.nav-arrow:hover {
  background: rgba(0,0,0,0.8);
}

:root {
  --nav-bg: #072b45; /* navbar dark blue */
  --accent: #1f6b8a; /* about section blue */
  --card-radius: 12px;
  --muted: #6b7b86;
  --cta-green: #25d366;
  --cta-dark: #223b4f;
}

html,
body {
  height: 100%;
}
body {
  font-family: "manrope", sans-serif;
  margin: 0;
  background: #fff;
  color: #0b2c44;
  padding-top: 78px; /* leave space for fixed navbar */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-header .topbar {
  background: linear-gradient(45deg, #1f4a92, #040d2f);
}
.site-header .main-nav {
  background: #010727;
}
.nav-item{
  font-size: 12px;
}

.logo-lg { height: 52px; border-radius: 6px; }
.logo-sm { height: 42px; border-radius: 6px; }

/* Buttons */
.btn-phone {
  background: #fff;
  color: #010727;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 6px 18px;
}
.btn-donate {
  background: #e03131;
  color: #fff;
  border-radius: 20px;
  padding: 6px 14px;
}
.btn-locate {
  background: #1b3c53;
  color: #fff;
  border-radius: 20px;
  padding: 8px 18px;
}

/* Hero */
.hero-media {
  height: 640px;
  background: url('../img/hero/hero.png') center/cover no-repeat;
  position: relative;
}
.hero-media .play-video {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -40%);
  background: transparent;
  border: none;
}

/* About */
.about-section {
  background: linear-gradient(180deg, var(--accent, #1f4a92), #0f4a63);
  padding: 60px 0;
}
.about-text {
  max-width: 880px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}
.mantra {
  margin-top: 30px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

/* Residency */
.residency-title {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin-bottom: 4px;
}
.residency-address {
  color: #666;
  font-size: 14px;
}

/* Gallery */
.gallery-wrapper {
  position: relative;
}
.gallery-item {
  min-width: 280px;
  border: none;
  padding: 2px;
}
.gallery-item:first-child {
  min-width: 700px;
}
.gallery-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: none;
}
.gallery-btn.prev { left: -20px; }
.gallery-btn.next { right: -20px; }

a {
  text-decoration: none;
}

#blue {
  color: #fff;
}

#icons img {
  height: 100px;
}

/* Shared card/image look */
.card-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  border: 3px solid #1b3c53;
}

/* Small helper */
.section-title {
  font-family: "Merriweather";
  font-weight: 800;
  font-size: 34px;
  color: #fff;
  margin-bottom: 8px;
}



#manrope {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 1px;
  font-size: 22px;
  line-height:1.6;
}
#Merriweather {
  font-family: "Merriweather", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-size: 40px;
}

#sourcecode-bold {
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
#sourcecode-medium {
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
#sourcecode-semibold {
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

/* --- specific components will be appended in step CSS blocks --- */
.site-header .navbar {
  box-shadow: 0 2px 8px rgba(2, 10, 20, 0.2);
}
.navbar .nav-link {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  letter-spacing: 0.2px;
}
.navbar .nav-link:hover {
  opacity: 0.85;
  text-decoration: underline;
}
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus,
.navbar-toggler:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  body {
    padding-top: 110px;
  } /* when navbar collapses it increases height */
  .card-img {
    height: 300px; /* reduce fixed height */
  }
  .gallery {
    height: auto; /* allow content to flow */
  }
  .section-title {
    font-size: 28px;
  }
  .footer-logo {
    max-height: 56px;
  }
  .footer-title,
  .contact-title,
  .booking-title {
    text-align: left;
  }
}
.hero-media {
  position: relative;
}
.hero-media .play-video {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
    
  .hero-media {
    height: 280px;
  }
  .section-title {
    font-size: 26px;
  }
  body { padding-top: 90px; }

  .card-img {
    height: 220px;
  }
  .gallery-btn {
    width: 36px;
    height: 36px;
    top: 45%;
  }
  .section-title {
    font-size: 24px;
    text-align: center;
  }
  .footer-logo {
    max-height: 80px;
    margin: 20px auto;
  }
  .footer-desc {
    margin: 20px 0;
    text-align: center;
  }
  .footer-title, .contact-title, .booking-title {
    text-align: center;
  }
  footer ul{
    text-align: center;
  }

}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
/* Small phones */
@media (max-width: 576px) {
  #hide{
  display: none;
}
.gallery{
    height: 210px;
  }
.gallery-item:first-child {
  min-width: 60vw;
}
.gallery-item{
  min-width: 30vw;
}
#sourcecode-medium{
  font-size: 10px;
}
#manrope {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0px;
  font-size: 10px;
  line-height:1.6;
}
#Merriweather{
  font-size: 32px;
}
.amenities-row .amenity {
    flex: 0 0 30%; /* 3 items fit per row */
  }
.hero-media{
  height: 280px;
}
  .card-img {
    height: 180px;
  }
  .section-title {
    font-size: 20px;
  }
  .gallery-btn {
    display: none; /* hide arrows if screen too small */
  }
  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .footer-desc {
    font-size: 12px;
    padding: 0 10px;
  }
  footer ul{
    text-align: center;
  }
}

/* Gallery controls */
.gallery {
  scroll-behavior: smooth;
  padding-bottom: 6px;
  
}
.gallery-item {
  background: #fff;
  border-radius: var(--card-radius);
}
.gallery-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  position: absolute;
  top: 40%;
  transform: translateY(20%);
  background: #1b3c53;
  box-shadow: 0 6px 12px rgba(4, 20, 30, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.gallery-btn.prev {
  left: -18px;
}
.gallery-btn.next {
  right: -18px;
}
.gallery-btn i {
  color: #fff;
}

/* play overlay small */
.play-overlay {
  background: transparent;
  border: 3px solid #fff;
  border-radius: 50%;
  padding: 15px;
}
.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  box-shadow: inset 0 0px 0 rgba(0, 0, 0, 0.02);
}
.amenities-row small {
  color: var(--muted);
  font-size: 13px;
}

.icon-circle img {
  height: 60px;
}
.site-footer {
  background: url("../img/footer/footer-bg.png");
  background-size: cover;
}

/* Footer tweaks */
.site-footer {
  background: url("../img/footer/footer-bg.png") center/cover no-repeat;
  color: #cfe6f2;
  font-size: 14px;
}

/* Titles */
.footer-title,
.contact-title,
.booking-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* Quick links */
.footer-links li {
  margin-bottom: 6px;
}
.footer-links a {
  color: #cfe6f2;
  transition: color 0.18s;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Center logo */
.footer-logo {
  max-height: 130px;
  display: block;
  margin: 0 auto;
}
.footer-desc {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin: 50px 0;
}

/* Social icons */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 30%;
  background: rgb(0 10 68);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.social-icon:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* Contact block */
.contact-block {
  background: transparent;
  text-align: center;
}
.contact-line a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}
.contact-line a:hover {
  text-decoration: underline;
  color: #fff;
}
.contact-line i {
  color: #fff;
  opacity: 0.95;
  width: 8px;
  text-align: center;
}

/* Divider */
.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 12px 0;
}


