/* ============================================
   RESET
   Removes default spacing browsers add
============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ============================================
   PAGE BACKGROUND
   Dark grey behind the phone frame
============================================ */
html, body {
  background-color: #232323;
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
}


/* ============================================
   PHONE FRAME
   Makes content look like an iPhone screen
============================================ */
.phone {
  width: 393px;        /* iPhone 17 Pro width */
  min-height: 852px;   /* iPhone 17 Pro height */
  background-color: #0c0c0c;
  margin: 0 auto;      /* centers the phone on the page */
  display: flex;
  flex-direction: column;
}


/* ============================================
   COLOR HELPERS
   Reusable color classes
============================================ */
.orange { color: #ff4922; }


/* ============================================
   HEADER
   Sticky top bar with logo, location, menu
============================================ */
.header {
  background-color: #0c0c0c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 100; /* stays on top of everything */
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 18px;
  color: #f0ebe2;
}

.location-pill {
  background-color: #252525;
  color: #888880;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 999px; /* makes it pill shaped */
}

.menu-icon {
  color: #f0ebe2;
  font-size: 20px;
  cursor: pointer;
}


/* ============================================
   HERO SECTION
   The big intro area at the top
============================================ */
.hero {
  background-color: #0c0c0c;
  padding: 32px 20px 24px 20px;
}

.hero-label {
  color: #ff4922;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.0;
  color: #f0ebe2;
  margin-bottom: 16px;
}

.hero-desc {
  color: #888880;
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 24px;
}

.btn-main {
  background-color: #ff4922;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border: none;
  border-radius: 999px;
  width: 100%;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

/* Makes button slightly see-through when you tap it */
.btn-main:active {
  opacity: 0.8;
}

.stats-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.stat {
  flex: 1;
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 900;
  color: #f0ebe2;
}

.stat-label {
  font-size: 10px;
  color: #888880;
  margin-top: 2px;
}


/* ============================================
   SECTION LABEL
   Small text between hero and cards
============================================ */
.section-label {
  color: #888880;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 20px 8px 20px;
  background-color: #0c0c0c;
}


/* ============================================
   CARDS
   Each service section is a card
============================================ */
.card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden; /* hides anything outside the rounded corners */
  margin: 0 16px 16px 16px;
  background-color: #111111;
}

/* Each card has a slightly different border color */
.card-dining { border-color: rgba(255, 73,  34,  0.3); }
.card-yellow  { border-color: rgba(245, 166, 35,  0.3); }
.card-teal    { border-color: rgba(78,  205, 196, 0.3); }


/* ============================================
   CARD IMAGE AREA
============================================ */
.card-image-wrapper {
  position: relative; /* lets us place things on top of the image */
  height: 192px;
  overflow: hidden;
  background-color: #252525;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes image fill the box without stretching */
}

/* Dark gradient overlay so text shows on the photo */
.card-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.05) 60%,
    transparent 100%
  );
}

/* Small tag badge in top-left corner of photo */
.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.45);
  padding: 4px 10px;
  border-radius: 999px;
}

/* Tag colors for each card */
.tag-orange { color: #ff4922; }
.tag-yellow  { color: #f5a623; }
.tag-teal    { color: #4ecdc4; }

/* Big number in bottom-left corner of photo */
.card-stat {
  position: absolute;
  bottom: 12px;
  left: 16px;
}

.stat-big {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.stat-small {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}


/* ============================================
   CARD TEXT BODY
============================================ */
.card-body {
  padding: 20px;
}

.card-subline {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Subline colors for each card */
.subline-orange { color: #ff4922; }
.subline-yellow  { color: #f5a623; }
.subline-teal    { color: #4ecdc4; }

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: #f0ebe2;
  line-height: 1.15;
  margin-bottom: 12px;
}

.card-desc {
  font-size: 13px;
  color: #888880;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Card button */
.btn-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid;
  font-size: 14px;
  font-weight: 600;
  background-color: transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-card:active {
  opacity: 0.7;
}

/* Button colors for each card */
.btn-orange { color: #ff4922; border-color: rgba(255, 73,  34,  0.4); }
.btn-yellow  { color: #f5a623; border-color: rgba(245, 166, 35,  0.4); }
.btn-teal    { color: #4ecdc4; border-color: rgba(78,  205, 196, 0.4); }


/* ============================================
   BOTTOM NAVIGATION BAR
============================================ */
.bottom-nav {
  background-color: #0c0c0c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 16px;
  position: sticky;
  bottom: 0;
  margin-top: auto; /* pushes nav to the bottom */
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #888880;
  font-size: 18px;
  cursor: pointer;
}

.nav-item span {
  font-size: 9px;
  letter-spacing: 0.05em;
}


/* ============================================
   HOME INDICATOR
   The little bar at the very bottom (iPhone style)
============================================ */
.home-indicator {
  background-color: #0c0c0c;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The little white pill line */
.home-indicator::after {
  content: '';
  width: 112px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}