@charset "utf-8";
/* CSS Document */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
:root {
  --gold: #C7A46A;
  --gold-light: #E6D2AE;

  --teal: #1E5C58;
  --teal-light: #2D726D;

  --bg-main: #0F1113;
  --bg-secondary: #171A1D;
  --bg-card: #1C2024;
  --bg-soft: #23282D;

  --text-main: #F4F1EA;
  --text-muted: #A8ADB4;
  --text-soft: #7C828A;
 --mid: #6B6B6B;
  --light-border: rgba(255,255,255,0.08);

  --serif: 'Montserrat", sans-serif;
/*  --sans: 'Jost', sans-serif;*/
	--sans: 'Montserrat", sans-serif;
}
  html { scroll-behavior: smooth; }
html, body{
  overflow-x:hidden;
  width:100%;
}
  body {
    font-family: var(--sans);
    color: var(--charcoal);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
	background: var(--bg-main);
  color: var(--text-main);
  }

.container{max-width:1200px; margin:auto;}
  /* ─── NAV ─── */
  header{
  width:100%;
  background:#0F1113;
  padding:15px 20px;
  position:fixed;
  z-index: 999;
  top:0;left:0;
  border-bottom:1px solid rgba(199,164,106,0.5);
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.nav-logo{
 font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--charcoal);
    text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.nav-links{
  display:flex;
  list-style:none;
  gap:30px;
}

.nav-links li a{
  color:var(--mid);
  text-decoration:none;
  font-size:16px;
  transition:0.3s;
}

.nav-links li a:hover{
  color:var(--gold);
}
.nav-cta {
    background: var(--teal) !important;
    color: #fff !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: 2px !important;
    letter-spacing: 0.15em !important;
  }
  .nav-cta:hover { background: var(--teal-light) !important; }
/* Hamburger */
.hamburger{
  display:none;
  flex-direction:column;
  cursor:pointer;
  gap:5px;
  z-index:999;
}

.hamburger span{
  width:28px;
  height:3px;
  background:var(--gold);
  border-radius:3px;
  transition:0.3s ease;
}

/* Animate to X */
.hamburger.active span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}

/* ─── HERO ─── */
  .hero {
   position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  }
  .hero-img { 
  position: absolute;
  inset: 0;
  background-image: url('../images/Living_room 4.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;

  transform: scale(1.02);
  animation: heroZoom 8s ease-out forwards;
  }

  @keyframes heroZoom {
    from { transform: scale(1.02); }
  	to   { transform: scale(1); }
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(10,10,10,0.72) 0%,
      rgba(10,10,10,0.18) 55%,
      rgba(10,10,10,0.05) 100%
    );
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 4rem 6rem;
    max-width: 760px;
    animation: fadeUp 1.1s 0.3s both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-label {
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1rem;
	background: rgba(153, 116, 76, 0.5);
  	border-radius: 20px;
  	padding: 5px 0 5px 10px;
  	max-width: 300px;
  }
  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 5.2rem);
    font-weight: 300;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold-light);
  }
  .hero-sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.04em;
    margin-bottom: 2.4rem;
	 background: rgba(153, 116, 76, 0.5); 
	  border-radius: 20px;
  	padding: 5px 0 5px 10px;
  }
  .hero-btns { display: flex; gap: 1rem; align-items: center; }
  .btn-primary {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.25s;
  }
  .btn-primary:hover { background: #a07840; }
  .btn-ghost {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border: 1px solid rgba(255,255,255,0.45);
    color: #fff;
    text-decoration: none;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.25s, border-color 0.25s;
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.1); }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    right: 4rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeUp 1.1s 0.8s both;
  }
  .scroll-line {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
  }
  .scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 1px;
    height: 100%;
    background: var(--gold);
    animation: scrollDown 1.8s infinite;
  }
  @keyframes scrollDown {
    0%   { top: -100%; }
    100% { top: 100%; }
  }

  /* ─── STATS BAR ─── */
  .stats-bar {
    background: var(--charcoal);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .stat-item {
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    animation: fadeIn 0.6s both;
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
  }
  .stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
  }

  /* ─── SECTION UTILS ─── */
  section { padding: 7rem 4rem; }
  .section-tag {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1.4rem;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-body {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.85;
/*    max-width: 56ch;*/
	  width: 100%; padding-right:20px;
  }
  .divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 2rem 0;
  }

  /* ─── INTRO ─── */
  .intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
/*    background: #fff;*/
  }
  .intro-text {}
  .intro-image {
    position: relative;
  }
  .intro-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
  }
  .intro-image::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    border: 1px solid var(--gold-light);
    z-index: -1;
  }
  .badge-float {
    position: absolute;
    bottom: -1.5rem;
    left: -2rem;
    background: var(--teal);
    color: #fff;
    padding: 1.5rem;
    font-family: var(--serif);
    text-align: center;
    min-width: 140px;
  }
  .badge-float .big { font-size: 2.2rem; font-weight: 300; line-height: 1; }
  .badge-float .sm { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7; margin-top: 0.25rem; }

  /* ─── AMENITIES ─── */
  .amenities { background: var(--off-white); }
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .amenity-card {
    
   padding: 2rem;
   transition: box-shadow 0.25s, transform 0.25s;
   border: 1px solid #3A3A3A;
   border-radius: 12px;
  }
  .amenity-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transform: translateY(-3px);
  }
  .amenity-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 1.2rem;
    color: var(--gold);
  }
  .amenity-title {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
  }
  .amenity-desc {
    font-size: 0.85rem;
    color: var(--mid);
    line-height: 1.7;
  }

  /* ─── ROOMS ─── */
  #rooms {padding:7rem 4rem;}
  .rooms-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 3.5rem;
  }
  .rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .room-card { position: relative; overflow: hidden;
	border: 1px solid #3a3a3a;
  border-radius: 12px;
	}
  .room-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
	 
  }
  .room-card:hover img { transform: scale(1.04); }
  .room-info {
    padding: 1.5rem;
    border: 1px solid var(--light-border);
    border-top: none;
  }
  .room-info h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
  }
  .room-info p {
    font-size: 0.83rem;
    color: var(--mid);
  }
  .room-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--teal);
    color: #fff;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
  }

  /* ─── POOL ─── */
  .pool-section {
    background: var(--teal);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }
  .pool-img {
    position: relative;
    overflow: hidden;
  }
  .pool-img img {
    width: 100%;
    height: 100%;
    min-height: 550px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
    transition: transform 0.5s;
  }
  .pool-img:hover img { transform: scale(1.03); }
  .pool-content {
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .pool-content .section-tag { color: var(--gold-light); }
  .pool-content .section-title { color: #fff; }
  .pool-content .section-body { color: rgba(255,255,255,0.65); }
  .pool-content .divider { background: var(--gold-light); }
  .pool-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 2.5rem;
  }
  .pool-feat {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
  }
  .pool-feat::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--gold);
    margin-top: 0.65rem;
    flex-shrink: 0;
  }

  /* ─── GALLERY ─── */
  .gallery { padding: 7rem 4rem; background: var(--off-white); }
  .gallery-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .gallery-header .section-body { margin: 0 auto; }
  .gallery-header .divider { margin: 1.5rem auto; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 0.8rem;
  }
  .g-img {
    overflow: hidden;
    position: relative;
  }
  .g-img.span2 { grid-column: span 2; }
  .g-img.tall { grid-row: span 2; }
  .g-img img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    border-radius:12px;
  }
  .g-img:hover img { transform: scale(1.05); }
  .gallery-cta {
    text-align: center;
    margin-top: 2.5rem;
  }
  .btn-outline {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    border: 1px solid var(--gold-light);
    color: var(--light-gold);
    text-decoration: none;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.25s, color 0.25s;
  }
  .btn-outline:hover {
    background: var(--charcoal);
    color: #fff;
  }

/*-video--*/
.video-wrapper{
	width:80%; height:70vh; border-radius:12px;margin:20px auto;
	
}
.video-section{
  position:relative;
  width:100%;
  height:100%; display:block;
  overflow:hidden; border-radius:12px;

/*
  display:flex;
  align-items:center;
  justify-content:center;
*/
}

.bg-video{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;
}

.video-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.video-content{
  position:absolute; bottom:0;
  z-index:2;

  text-align:center;
  color:#fff;

  padding:20px;
}

.video-content h1{
  font-size:clamp(2.5rem,6vw,5rem);
  margin-bottom:20px;
}

.video-content p{
  font-size:1.1rem;
  margin-bottom:30px;
}

.video-btn{
  border:none;
  outline:none;

  padding:14px 30px;

  background:var(--teal);
  color:#ffffff;

  font-size:16px;
  font-weight:600;

  border-radius:40px;

  cursor:pointer;

  transition:0.3s;
}

.video-btn:hover{
  transform:translateY(-2px);
}

/* Mobile */
@media(max-width:768px){

  .video-section{
    min-height:70vh;
  }

  .video-content h1{
    font-size:2.5rem;
  }

}

/* Mobile */
@media(max-width:768px){

  .video-section{
    min-height:70vh;
  }

  .video-content h2{
    font-size:2.2rem;
  }

}


  /* ─── LOCATION ─── */
  .location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .nearby-list { list-style: none; margin-top: 2rem; }
  .nearby-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-border);
    font-size: 0.88rem;
    color: var(--charcoal);
  }
  .nearby-list li:first-child { border-top: 1px solid var(--light-border); }
  .nearby-dist {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--gold);
    font-style: italic;
  }
  .map-placeholder {
    background: var(--cream);
    border: 1px solid var(--light-border);
    height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--mid);
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
  }
  .map-placeholder:hover { background: var(--gold-light); }
  .map-placeholder svg { opacity: 0.4; }
  .map-placeholder span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }
  .addr-block {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--off-white);
    border-left: 2px solid var(--gold);
  }
  .addr-block p {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.9;
  }
  .addr-block strong { color: var(--charcoal); font-weight: 500; }


.booking-prtnr .contact-detail {display:block;padding-top:10px;margin-top:0;}
.contact-left-title{font-size:25px;font-weight: 300; padding-top:50px!important; color: var(--gold);}
.contact-left-title:after{content: '';width:100px; height:1px; background-color: var(--gold);display: block}
.booking-prtnr {margin-top:15px;padding:10px 0px; color:var(--mild);border-radius: 12px; display: flex;align-items: center; justify-content: start;}
.booking-prtnr h3{color:var(--gold-light);padding-top:20px 15px }
.logo-wrap{background:#d7d7d7;width:200px;padding-right:2%; padding-top:5px; padding-bottom:15px; display: block;text-align: center;}
.logo-wrap img{width:100px;display: block; margin:5px auto 10px auto;paddng-bottom:10px;}
.logo-wrap .contact-detail span{font-size: 0.88rem;background:var(--teal); color:#d7d7d7;margin:10px auto; padding:5px 10px; border-radius: 8px;}



  /* ─── CONTACT ─── */
  .contact {
    background: var(--charcoal);
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    padding: 0;
  }
  .contact-left {
    padding: 6rem 4rem;
    background: var(--teal);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .contact-left .section-tag { color: var(--gold-light); }
  .contact-left .section-title { color: #fff; }
  .contact-left .section-body { color: rgba(255,255,255,0.6); max-width: 38ch; }
  .contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.8rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-detail:hover { color: #fff; }
  .contact-detail .icon-circle {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .contact-right {
    padding: 6rem 4rem;
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .form-group { margin-bottom: 1.5rem; }
  .form-group label {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.5rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.8rem 1rem;
    color: #fff;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    border-radius: 0;
    transition: border-color 0.2s;
    appearance: none;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--gold); }
  .form-group select option { background: #1C1C1C; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .submit-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: background 0.25s;
    border-radius: 0;
  }
  .submit-btn:hover { background: #a07840; }

  /* ─── FOOTER ─── */
  footer {
    background: #111;
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-logo {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.1em;
    text-decoration: none;
  }
  .footer-logo span { color: var(--gold); }
  footer p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.06em;
  }
  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  .footer-links a {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: rgba(255,255,255,0.7); }

  /* ─── IMAGE FALLBACK ─── */
  img.img-error {
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: 0.08em;
  }
  img[alt]::after {
    content: attr(alt);
    display: block;
    position: absolute;
    inset: 0;
    background: var(--cream);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
  }

  /* ─── REVEAL ANIMATIONS ─── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }

  
	
/*--form--*/
/* OPTIONAL STYLING */

.form-row{
  display:flex;
  gap:15px;
}

.form-group{
  width:100%;
  margin-bottom:15px;
}

input,
select,
textarea{
  width:100%;
  padding:12px;
  border:1px solid #ddd;
  border-radius:6px;
}

.submit-btn{
  padding:12px 24px;
  border:none;
  cursor:pointer;
}

#responseMsg{
  margin-top:15px;
  font-weight:600;
}
