:root {
  --bg-page: #08090b;
  --text-main: #f7f7f7;
  --text-muted: #d1d1d1;

  --accent-balerno: #f5b21a;  /* yellow */
  --accent-loanhead: #b61257; /* magenta */

  --surface-dark: #15161b;
  --surface-card: #18191f;
  --border-soft: rgba(255, 255, 255, 0.06);

  --radius-large: 32px;
  --radius-card: 24px;
  --radius-pill: 999px;

  --shadow-soft: 0 32px 72px rgba(0, 0, 0, 0.75);
  --shadow-card: 0 18px 46px rgba(0, 0, 0, 0.75);

  --transition-fast: 180ms ease-out;
  --transition-med: 260ms ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #171922 0, #050506 65%);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

a{
    text-decoration: none;
    color: var(--accent-balerno);
}

.dhaba36-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

/* HERO */

.hero {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 420px;
  margin-bottom: 28px;
}

/* Background image without text */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("dhaba36-hero-bg.jpg") center top / cover no-repeat;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
}

/* Dark gradient so text is readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.14) 0%,
    rgba(0, 0, 0, 0.65) 55%,
    rgba(0, 0, 0, 0.96) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 32px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.hero-logo {
  max-width: 160px;
  width: 40%;
  margin-bottom: 14px;
}

.hero-subtitle {
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* CONTENT SECTIONS */

.content {
  background: linear-gradient(to bottom, #121317 0, #08090c 100%);
  border-radius: var(--radius-large);
  padding: 26px 30px 28px;
  box-shadow: var(--shadow-card);
}

/* About */

.about {
  text-align: center;
  margin-bottom: 26px;
}

.about h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-balerno);
  margin-bottom: 10px;
}

.about p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Locations */

.locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.location-card {
  background: radial-gradient(circle at top left, #262734 0, #15161d 70%);
  border-radius: var(--radius-card);
  padding: 18px 18px 16px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(12px);
  opacity: 0;
  transition:
    transform var(--transition-med),
    opacity var(--transition-med),
    box-shadow var(--transition-med),
    border-color var(--transition-med);
}

.location-card.visible {
  transform: translateY(0);
  opacity: 1;
}

.location-card:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.85);
  border-color: rgba(255, 255, 255, 0.12);
}

.location-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  padding: 0.26rem 0.86rem;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}

.location-label--balerno {
  background: rgba(245, 178, 26, 0.12);
  color: var(--accent-balerno);
}

.location-label--loanhead {
  background: rgba(182, 18, 87, 0.14);
  color: var(--accent-loanhead);
}

.location-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.location-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
}

.location-actions {
  margin-top: 8px;
}

/* Buttons */

.btn {
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.78rem 1.9rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.5),
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.25)
  );
  opacity: 0;
  transform: translateX(-100%);
  pointer-events: none;
  transition: opacity 220ms ease-out, transform 520ms ease-out;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.6);
}

.btn:hover::after {
  opacity: 0.9;
  transform: translateX(100%);
}

.btn:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.65);
}

.btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

/* primary buttons under hero */

.btn-primary-balerno {
  background: var(--accent-balerno);
  color: #211400;
  box-shadow: 0 12px 26px rgba(245, 178, 26, 0.55);
}

.btn-primary-loanhead {
  background: var(--accent-loanhead);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(182, 18, 87, 0.6);
}

/* outline buttons on cards */

.btn-outline-balerno {
  background: transparent;
  color: var(--accent-balerno);
  border: 1px solid rgba(245, 178, 26, 0.75);
}

.btn-outline-loanhead {
  background: transparent;
  color: var(--accent-loanhead);
  border: 1px solid rgba(182, 18, 87, 0.8);
}

/* Footer */

.footer {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
}

/* SIMPLE RESPONSIVE TWEAKS */

@media (max-width: 900px) {
  .content {
    padding-inline: 22px;
  }

  .hero-content {
    padding-inline: 20px;
  }

  .hero-logo {
    width: 45%;
    max-width: 200px;
  }
}

@media (max-width: 720px) {
  .dhaba36-page {
    padding-inline: 10px;
  }

  .hero {
    border-radius: 24px;
    min-height: 380px;
  }

  .content {
    border-radius: 24px;
    padding-inline: 18px;
  }

  .locations {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }
}