*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-dark: #050608;
  --gold: #d4af37;
  --text-light: #f5f5f5;
  --text-muted: #c0c0c0;
  --card-bg: rgba(0, 0, 0, 0.72);
}

/* Single font everywhere (Foundation variant renders better on web) */
body {
  font-family: "Edu NSW ACT Foundation", cursive;
  color: var(--text-light);
  min-height: 100vh;
  background: var(--bg-dark);
  position: relative;
  overflow-x: hidden;
}

/* Entrance background */
.background {
  position: fixed;
  inset: 0;
  background: url("front.jpg") center center / cover no-repeat;
  filter: brightness(0.45);
  z-index: -2;
}

/* Overlay */
.overlay {
  position: relative;
  min-height: 100vh;
  padding: 24px clamp(24px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: radial-gradient(circle at top, rgba(0,0,0,0.3), rgba(0,0,0,0.9));
  z-index: -1;
}

/* Top bar with phone */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.top-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand {
  font-size: 2.4rem;          /* bigger */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;           /* bolder */
  color: var(--gold);
}

.tagline {
  font-size: 1.1rem;          /* bigger */
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 500;           /* semi-bold */
  color: var(--text-muted);
}


.top-phone {
  font-size: 0.9rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Main layout */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 28px;
  margin-bottom: 28px;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-content {
  max-width: 640px;
  padding: 22px 24px;
  border-radius: 14px;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  text-align: center;
}

.hero-logo {
  width: 160px;
  max-width: 70%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 10px;
}

.sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.highlight {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Feature sections */
.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.78);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

.feature-image {
  border-radius: 10px;
  min-height: 180px;
  background-size: cover;
  background-position: center;
}

/* dining.jpg */
.feature--interior .feature-image {
  background-image: url("dining.jpg");
}

/* food.jpg */
.feature--food .feature-image {
  background-image: url("food.jpg");
}

.feature-text h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--gold);
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.footer p:first-child {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Desktop spacing */
@media (min-width: 768px) {
  .overlay {
    padding: 32px 72px;
  }

  .footer {
    display: flex;
    justify-content: space-between;
    max-width: 640px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .top-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero {
    justify-content: center;
  }

  .feature {
    grid-template-columns: 1fr;
  }

  .feature-image {
    order: -1;
  }
  .brand {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1rem;
  }

}
