/* =========================
   FONTS
========================= */
@font-face { font-family: Poppins-Regular; src: url('../fonts/Poppins-Regular.ttf'); }
@font-face { font-family: Poppins-Medium;  src: url('../fonts/Poppins-Medium.ttf'); }

/* =========================
   BASE / GLOBAL
========================= */
html {
  position: relative;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: Poppins-Regular;
  width: 100%;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  background-color: #fff;
  color: #000;
}
.sec-pad { padding: 10px 0; }
a { color: inherit !important; text-decoration: none; }
a:hover { text-decoration: underline; }

p { font-size: 20px; line-height: 30px; }
.ft-16 { font-size: 16px; line-height: 28px; }
.light-color { color: #a9a9a9; }
.medium { font-family: Poppins-Medium; }
.coming-title {
  font-size: 25px; line-height: 38px;
  font-family: Poppins-Medium;
  text-transform: uppercase;
}

/* =========================
   HERO BACKGROUND
========================= */
.hero-bg {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
  background-image: url('../img/hero-bg.jpg');
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25);
}

/* =========================
   SPACERS / HEIGHTS
========================= */
/* Shorter top spacer so Enquire peeks on load */
.header-footer-div {
  height: 22dvh;
  position: relative;
}

/* =========================
   FROSTED BANNER (edge-to-edge, darker center)
========================= */
.main-div {
  background-color: transparent;    /* keep full image; overlay handles dark band */
  height: 37dvh;
  position: relative;
}

/* Darker, slimmer center band with soft edges */
.main-div::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.42) 46%,   /* start of dark band (darker than before) */
    rgba(0,0,0,0.42) 54%,   /* end of dark band — narrow center */
    rgba(0,0,0,0) 100%
  );
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  pointer-events: none;
}

/* =========================
   CONTENT IN BANNER
========================= */
.main-div-container {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
  text-align: center;
}

.contact-details {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.relative-9 { position: relative; z-index: 9; }
.h-logo     { width: 100%; max-width: 500px; height: auto; }
.riba-arb-img { width: 100%; max-width: 320px; }

/* =========================
   RESPONSIVE
========================= */
/* Large-ish screens */
@media only screen and (max-width: 1400px) {
  .contact-details p { font-size: 18px; line-height: 28px; }
  .h-logo { max-width: 420px; }
  .riba-arb-img { max-width: 300px; }
}

/* Laptop */
@media only screen and (max-width: 1200px) {
  .contact-details p { font-size: 16px; line-height: 28px; }
  .h-logo { max-width: 380px; }
}

/* Tablet & Mobile */
@media only screen and (max-width: 991px) {
  /* Make Enquire still peek */
  .header-footer-div { height: 20dvh; }
  .main-div          { height: 46dvh; }

  /* Widen the dark area a bit on smaller screens for readability */
  .main-div::before {
    background: linear-gradient(
      90deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.38) 40%,
      rgba(0,0,0,0.38) 60%,
      rgba(0,0,0,0) 100%
    );
  }

  .main-div-container { padding-bottom: 85px; }

  /* Stack contact details and shrink text */
  .contact-details {
    display: block;
    text-align: center;
  }
  .contact-details p { font-size: 15px; line-height: 24px; }
}

/* Small phones */
@media only screen and (max-width: 576px) {
  /* Smaller base copy on mobile */
  p { font-size: 16px; line-height: 26px; }
  .ft-16 { font-size: 14px; line-height: 24px; }

  /* Logo and contact */
  .h-logo { max-width: 68%; }
  .contact-details p { font-size: 14px; line-height: 22px; }

  /* Slightly wider dark center on very small screens for legibility */
  .main-div::before {
    background: linear-gradient(
      90deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.40) 38%,
      rgba(0,0,0,0.40) 62%,
      rgba(0,0,0,0) 100%
    );
  }
}

/* Tiny phones */
@media only screen and (max-width: 400px) {
  p { font-size: 15px; line-height: 24px; }
  .ft-16 { font-size: 13px; line-height: 22px; }
}
