/* =====================
   BASE & RESET
===================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

/* =====================
   NAVBAR & LOGO
===================== */
.transparent-nav {
  background: transparent !important;
  padding-top: 25px;
  padding-bottom: 25px;
  z-index: 100;
  transition: padding 0.3s ease;
}

.brand-logo {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  border-radius: 10px;
}

.btn-nav-login {
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-nav-login:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-1px);
}

/* =====================
   HERO SECTION
===================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('../src/home-page-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

.hero-center-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 800px;
  transform: translateY(-40px);
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4b066;
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  background: #d4b066;
  color: #000;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 176, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn-hero-cta:hover {
  background: #e5c47a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 176, 102, 0.6);
  color: #000;
}

/* =====================
   CONTACT STRIP
===================== */
.contact-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: rgba(15, 15, 20, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 40px;
  gap: 30px;
  flex-wrap: nowrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
}

.contact-item:first-child {
  flex: 0 1 750px;
  min-width: 0;
}

.contact-item:not(:first-child) {
  flex: 0 0 auto;
  white-space: nowrap;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 176, 102, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4b066;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #d4b066;
  font-weight: 600;
  margin-bottom: 2px;
  white-space: nowrap;
}

.contact-value {
  font-size: 0.88rem;
  color: #e0e0e0;
  font-weight: 400;
}

.contact-item:first-child .contact-value {
  white-space: normal;
  line-height: 1.4;
}

.contact-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* =====================
   RESPONSIVE — TABLET (993px–1199px)
===================== */
@media (min-width: 993px) and (max-width: 1199px) {
  .contact-strip {
    padding: 16px 24px;
    gap: 16px;
  }

  .contact-item:first-child {
    flex: 0 1 420px;
  }

  .contact-value {
    font-size: 0.82rem;
  }
}

/* =====================
   RESPONSIVE — TABLET (768px–992px)
===================== */
@media (min-width: 768px) and (max-width: 992px) {
  html, body {
    overflow: auto;
  }

  /* Navbar */
  .transparent-nav {
    padding: 18px 24px;
  }

  .brand-logo {
    height: 55px;
  }

  .btn-nav-login {
    padding: 7px 18px;
    font-size: 0.85rem;
  }

  /* Hero */
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding-bottom: 180px; /* room for contact strip */
  }

  .hero-center-content {
    transform: translateY(-20px);
    max-width: 640px;
    padding: 0 24px;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 2px;
  }

  /* Contact Strip — horizontal but tighter */
  .contact-strip {
    position: absolute;
    bottom: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    gap: 12px;
    background: rgba(15, 15, 20, 0.75);
  }

  .contact-item {
    gap: 10px;
    padding: 0;
  }

  /* Address gets less width on tablet */
  .contact-item:first-child {
    flex: 0 1 280px;
    min-width: 0;
  }

  .contact-item:not(:first-child) {
    flex: 0 0 auto;
  }

  .contact-icon {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .contact-label {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  .contact-value {
    font-size: 0.78rem;
  }

  /* Address value: allow wrapping on 2 lines */
  .contact-item:first-child .contact-value {
    white-space: normal;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .contact-divider {
    height: 32px;
  }
}

/* =====================
   RESPONSIVE — MOBILE (max-width: 767px)
===================== */
@media (max-width: 767px) {
  html, body {
    overflow: auto;
  }

  /* Navbar */
  .transparent-nav {
    padding: 14px 16px;
  }

  .brand-logo {
    height: 42px;
  }

  .btn-nav-login {
    padding: 6px 16px;
    font-size: 0.82rem;
  }

  /* Hero — shrinks to fit above contact strip */
  .hero-section {
    height: auto;
    min-height: 100svh;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-center-content {
    transform: translateY(0);
    padding: 100px 20px 40px; /* top padding clears navbar */
    max-width: 100%;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-bottom: 14px;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  /* Contact Strip — stacked vertically */
  .contact-strip {
    position: relative;
    bottom: auto;
    left: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px;
    gap: 20px;
    background: #0f0f14;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .contact-item {
    padding: 0;
    width: 100%;
    flex: unset;
    white-space: unset;
    gap: 12px;
  }

  .contact-item:first-child {
    flex: unset;
  }

  .contact-item:not(:first-child) {
    flex: unset;
    white-space: unset;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .contact-label {
    font-size: 0.68rem;
    letter-spacing: 1.2px;
  }

  .contact-value {
    font-size: 0.85rem;
    white-space: normal;
    line-height: 1.4;
  }

  .contact-item:first-child .contact-value {
    white-space: normal;
    -webkit-line-clamp: unset;
    overflow: visible;
  }

  .contact-divider {
    display: none;
  }
}

/* =====================
   RESPONSIVE — SMALL MOBILE (max-width: 380px)
===================== */
@media (max-width: 380px) {
  .brand-logo {
    height: 36px;
  }

  .btn-nav-login {
    padding: 5px 13px;
    font-size: 0.78rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 9vw, 2.2rem);
  }

  .hero-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }

  .hero-sub {
    font-size: 0.88rem;
  }

  .contact-strip {
    padding: 22px 16px;
    gap: 16px;
  }

  .contact-icon {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .contact-value {
    font-size: 0.8rem;
  }
}