/* ===== CONTACT HERO (MATCH SCREENSHOT) ===== */

.contact-hero{
  position: relative;
  min-height: 620px;
  height: 78vh;
  overflow: hidden;
  background: #0e0e0e;
}

/* background image */
.contact-hero__bg{
  position: absolute;
  inset: 0;
  background-image: url("../images/contact-hero.jpg"); /* <-- add this image */
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  
}

/* overlay blur + dark tone like screenshot */
.contact-hero__overlay{
  position: absolute;
  inset: 0;
 
}

/* make navbar appear above overlay */
.contact-hero .nav{
  position: relative;
  z-index: 3;
}

.contact-hero__content{
  position: relative;
  height: calc(78vh - 120px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 20px 120px;
}

.contact-hero__title{
  font-size: clamp(44px, 4.6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  font-family: "Fraunces", serif;
  margin: 0;
}

.contact-hero__subtitle{
  font-family: "IBM Plex Sans", sans-serif;
  margin: 12px 0 0;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 880px;
}
/* ===== WHITE SECTION BELOW (like screenshot start) ===== */
.contact-section{
  background: #f7f3ee;
  padding: 90px 0 -1px;
}

.contact-section__inner{
  width: min(1240px, 92%);
  margin: 0 auto;
}

/* responsive */
@media (max-width: 768px){
  .contact-hero{
    min-height: 680px;
  }
  .contact-hero__content{
    min-height: 680px;
    padding-top: 120px;
  }
  .contact-hero__subtitle br{
    display: none;
  }
}


/* ===== VISIT US SECTION ===== */
.visit{
  background: #ffffff;               /* soft cream like screenshot */
  padding: 110px 0;
}

.visit__inner{
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.visit__title{
  font-size: clamp(42px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.2px;
  color: #2b2b2b;
  margin: 0 0 18px;
  font-family: "Georgia", serif;
  font-weight: 500;
}

.visit__text{
  font-family: "IBM Plex Sans", sans-serif;
  margin: 0 0 44px;
  color: #6f6a63;
  font-size: 20px;
  line-height: 1.75;
}

/* Info block */
.visit__info{
  display: grid;
  grid-template-columns: 22px 1fr;
  column-gap: 26px;
  align-items: start;
}

.visit__line{
  width: 1px;
  height: 185px;
  background: rgba(160, 142, 120, 0.45);
  justify-self: center;
  margin-top: 6px;
}

.visit__blocks{
  display: grid;
  gap: 26px;
}

.visit__row{
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 16px;
  align-items: start;
}

.visit__icon{
  width: 30px;
  height: 30px;
  color: #8E5207; /* matches your brand orange */
  opacity: 0.95;
  margin-top: 2px;
}
.visit__icon svg{ width: 100%; height: 100%; }

.visit__label{
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #8E5207;
  margin-bottom: 8px;
  font-weight: 600;
}

.visit__value{
  font-family: "IBM Plex Sans", sans-serif;
  color: #6f6a63;
  font-size: 20px;
  line-height: 1.65;
}

/* Right image with offset background */
.visit__imgWrap{
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

.visit__bgCard{
  position: absolute;
  inset: auto auto -16px -18px; /* bottom-left offset */
  width: 100%;
  height: 100%;
  background: #efe2cf;          /* beige card behind */
  border-radius: 2px;
  z-index: 0;
}

.visit__img{
  position: relative;
  z-index: 1;
      width: 117%;
    height: 538px;

  object-fit: cover;
  border-radius: 2px;
  display: block;
}

/* ===== Responsive ===== */
@media (max-width: 1024px){
  .visit{
    padding: 80px 0;
  }
  .visit__inner{
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .visit__imgWrap{
    margin: 0;
    max-width: 640px;
  }
  .visit__img{ height: 420px; }
  .visit__line{ height: 160px; }
}

@media (max-width: 560px){
  .visit{
    padding: 64px 0;
  }
  .visit__text{
    font-size: 16px;
  }
  .visit__value{
    font-size: 16px;
  }
  .visit__img{ height: 320px; }
}

/* ===== Drop Us a Message ===== */
.drop{
  background: #ffffff;
  padding: 90px 0 70px;
}

.drop__inner{
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: start;
}

.drop__title{
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(36px, 3.2vw, 54px);
  color: #3b3b3b;
  margin: 0 0 36px;
}

.drop__form{
  max-width: 560px;
}

.drop__label{
  display: block;
  font-size: 14px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(59,59,59,0.75);
  margin: 0 0 10px;
}

.drop__input,
.drop__textarea{
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.14);
  padding: 14px 4px 16px;
  font-size: 20px;
  font-family: "Georgia", serif;
  color: #6d6d6d;
  outline: none;
  margin-bottom: 36px;
}

.drop__textarea{
  resize: none;
  line-height: 1.6;
}

.drop__input::placeholder,
.drop__textarea::placeholder{
  color: rgba(90,90,90,0.45);
}

.drop__bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
}

.drop__btn{
  background: transparent;
  border: none;
  padding: 0;
  font-size: 18px;
  color: #3b3b3b;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.drop__btn::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 160px;
  height: 1px;
  background: rgba(0,0,0,0.18);
}

.drop__arrow{
  font-size: 18px;
}

.drop__note{
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(80,80,80,0.35);
  text-transform: none;
  white-space: nowrap;
}

.drop__mapTitle{
  font-family: "Georgia", serif;
  font-weight: 500;
  color: #3b3b3b;
  margin: 12px 0 18px;
  font-size: 22px;
}

.drop__mapLink{
  display: block;
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
}

.drop__map{
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  pointer-events: none; /* important so clicking triggers the link */
  filter: saturate(0.95) contrast(1.02);
}

.drop__flash{
  margin-top: 26px;
}

.drop__flashText{
  margin: 0;
  color: #6a4b1c;
  font-size: 14px;
}

.drop__divider{
  width: min(1180px, 92%);
  margin: 70px auto 0;
  height: 1px;
  background: rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 1024px){
  .drop__inner{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .drop__form{
    max-width: 100%;
  }
  .drop__map{
    height: 320px;
  }
}

/* ===============================
   STAY CONNECTED — CONTACT PAGE
=================================*/

.page-contact .stay{
  background: #fbf6ef;
  padding: 127px 0 110px;
}

.page-contact .stay__inner{
  width: min(1180px, 92%);
  margin: 0 auto;
  text-align: center;
}

.page-contact .stay__title{
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(40px, 3.2vw, 54px);
  color: #3b3b3b;
  margin: 0 0 14px;
}

.page-contact .stay__sub{
  font-family: "IBM Plex Sans", sans-serif;
  margin: 0 auto 38px;
  max-width: 820px;
  font-size: 20px;
  letter-spacing: 0.4px;
  color: rgba(90, 90, 90, 0.55);
}

.page-contact .stay__links{
  display: inline-flex;
  gap: 46px;
  align-items: center;
  justify-content: center;
}

.page-contact .stay__link{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(60, 60, 60, 0.75);
  font-size: 18px;
  transition: transform 200ms ease, color 200ms ease;
}

.page-contact .stay__icon{
  width: 40px;
  height: 45px;
  
  display: grid;
  place-items: center;
  color: rgba(60, 60, 60, 0.75);
}

.page-contact .stay__link:hover{
  transform: translateY(-1px);
  color: rgba(60, 60, 60, 0.92);
}

.page-contact .stay__link:hover .stay__icon{
  color: rgba(60, 60, 60, 0.92);
  border-color: rgba(0,0,0,0.26);
}

@media (max-width: 768px){
  .stay__links{
    flex-direction: column;
    gap: 18px;
  }
}

/* ===== Events & Collaborations (dark section) ===== */
.events{
  padding: 120px 0 140px;
  position: relative;
  color: #fff;

  /* background similar to screenshot */
  background:#1b1b1b
}
    

.events__inner{
  width: min(1180px, 92%);
  margin: 0 auto;
  text-align: center;
}

.events__title{
  margin: 0 0 18px;
  font-family: "Georgia", serif;
  font-weight: 500;
  font-size: clamp(44px, 3.4vw, 62px);
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.95);
}

.events__sub{
   font-family: "IBM Plex Sans", sans-serif;
  margin: 0 auto 48px;
  max-width: 820px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
}

.events__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  min-width: 420px;
  height: 54px;

  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;

  text-decoration: none;
  color: rgba(255,255,255,0.9);

  border: 1px solid rgba(255,255,255,0.45);
  background: transparent;

  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease, color 200ms ease;
}

.events__btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.7);
  color: rgba(255,255,255,0.98);
}

/* thin divider line at bottom like screenshot */
.events::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255,255,255,0.14);
}

@media (max-width: 768px){
  .events{
    padding: 90px 0 110px;
  }

  .events__btn{
    min-width: 0;
    width: 92%;
    max-width: 420px;
  }
}

/* ===== Reservations & Enquiries ===== */
.enquiry{
  background: #fbf6ef; /* same cream */
  padding: 100px 0 110px;
}

.enquiry__inner{
  width: min(1180px, 92%);
  margin: 0 auto;
  text-align: center;
}

.enquiry__title{
  font-family: "Georgia", serif;
  font-weight: 500;
  font-size: clamp(34px, 3.2vw, 48px);
  letter-spacing: 0.2px;
  color: #7a4b10; /* warm brown like screenshot */
  margin: 0 0 14px;
}

.enquiry__sub{
  font-family: "IBM Plex Sans", sans-serif;
  margin: 0 auto 54px;
  max-width: 820px;
  color: #8c877f;
  font-size: 20px;
  line-height: 1.75;
}

.enquiry__cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  align-items: stretch;
}

.enquiry__card{
  background: transparent;
  border: 1px solid rgba(122, 75, 16, 0.18); /* thin border */
  padding: 38px 20px 34px;
}

.enquiry__icon{
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  color: rgba(122, 75, 16, 0.55);
}
.enquiry__icon svg{ width: 100%; height: 100%; }

.enquiry__label{
  font-size: 14px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: rgba(122, 75, 16, 0.55);
  margin-bottom: 12px;
  font-weight: 600;
}

.enquiry__value{
  font-family: "Georgia", serif;
  font-weight: 500;
  font-size: 22px;
  color: #7a4b10;
  text-decoration: none;
}

.enquiry__value:hover{
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* Responsive */
@media (max-width: 1024px){
  .enquiry__cards{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .enquiry__card{
    padding: 34px 18px;
  }
}
