:root {
  /* Change this to any CSS color for your card backgrounds */
  --card-bg: #000000;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  padding-top: 35px; /* space for fixed header */
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 20px 15px;
  z-index: 1000;
}

header h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  margin-bottom: 5px;
  margin-top: 0;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin: 0;
}

nav ul li {
  margin-right: 15px;
  position: relative;
}

nav ul li:last-child {
  margin-right: 0;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000000;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #ffffff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ─────────────────────────────────────────────────────────── */
/* HERO SECTION BACKGROUND */
.hero {
  position: relative;
  background-image: url('Static Background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #000000;
  text-align: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.hero h2 {
  margin-top: 15px;
  margin-bottom: 5px;
}

/* ─────────────────────────────────────────────────────────── */
/* (Existing .hero-image rules are retained, but not used for the homepage full image) */
/* 1) Let the .hero-image container fill 100% of its parent */
.hero-image {
  width: 100%;
  /* optional: if you want some top/bottom spacing */
  margin: 1rem 0;
  /* If you want it centered but still fluid, you could use
     margin: 1rem auto;  and a max-width, but to be fully fluid,
     leave width:100% and no max-width. */
}

/* 2) Make the image itself scale responsively */
.hero-image img {
  display: block;       /* removes any stray whitespace below */
  width: 100%;          /* fill its container’s width */
  height: auto;         /* maintain aspect ratio */
  object-fit: cover;    /* optional—if you want it to crop-to-fill */
}

/* ─────────────────────────────────────────────────────────── */
/* MENU CARD GRID */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 0.5rem;
  margin: 0 auto;   /* centers grid, removes extra side margin */
  padding: 0;       /* remove left/right padding */
  width: 100%;      /* fill available space */
  /* optional: max-width if you want to cap overall width */
  /* max-width: 1200px; */
}

.menu-card {
  /* this is the rounded background layer */
  background-color: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  /* ensure it fills its grid cell */
  width: 100%;
  padding-top: calc(164 / 435 * 100%); /* preserve 435x164 aspect ratio */
}

.menu-card img {
  /* overlay PNG: fills the entire card */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* ─────────────────────────────────────────────────────────── */
/* FOOTER */
footer {
  color: #ffffff;
  background-color: #000000;
  text-align: center;
  padding: 20px;
  font-size: 0.8em;
}
  
/* ─────────────────────────────────────────────────────────── */
/* Responsive tweaks */
@media (max-width: 768px) {
  header {
    padding: 10px;
  }

  nav ul {
    flex-wrap: wrap;
  }

  .hero {
    padding: 50px 10px;
  }

  footer {
    padding: 10px;
  }
}

@media (min-width: 769px) {
  header {
    padding: 20px;
  }
  .menu-cards {
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1rem; /* optionally widen the gap on desktop */
  }

  .hero {
    padding: 100px 20px;
  }

  footer {
    padding: 20px;
  }
}

/* ─────────────────────────────────────────────────────────── */
/* FONT UTILITIES */
.breakfast-font {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem; 
}

.bold-text {
  font-weight: bold;
}

/* ─────────────────────────────────────────────────────────── */
/* ONLY for About/Contact pages: text‐overlay styling */ 

.hero .text-overlay {
  position: relative;             /* sits above the hero background */
  max-width: 800px;               /* limit line length */
  width: min(800px, calc(100% - 3rem));
  margin: 2rem auto; /* 2rem top/bottom; “auto” left/right to center when it doesn’t fill the full viewport */
  padding: 1rem 1rem;             /* breathing room around text */
  background-color: rgba(0, 0, 0, 0.75); /* semi-transparent black box */
  border-radius: 8px;             /* optional corner rounding */
}
.contact-page .hero .text-overlay {
  max-width: 400px;
  width: min(800px, calc(100% - 5rem));
}
/* Force all text inside that overlay to be white */
.hero .text-overlay h2,
.hero .text-overlay p,
.hero .text-overlay .bold-text,
.hero .text-overlay .contact-info strong {
  color: #ffffff;
}

/* If you want to keep bolded lines in the overlay bold (e.g., .bold-text) */
.hero .text-overlay .bold-text {
  font-weight: bold;
}

/* ─────────────────────────────────────────────────────────── */
/* NEW: Make the homepage “hero-full” image fill edge-to-edge */
.hero-full {
  margin: 0;
  padding: 0;
}

.hero-full {
  display: block;                /* eliminate inline‐img whitespace */
  width: 100vw;                  /* 100% of the viewport width */
  max-width: 100vw;              /* never grow larger than viewport */
  height: auto;                  /* preserve aspect ratio */
  margin-left: calc((100% - 100vw) / 2);
  margin-right: calc((100% - 100vw) / 2);
  object-fit: cover;             /* optional: crop to fill, if needed */
}

.different-font {
  font-family: 'Rubik', sans-serif;
  font-size: 1.3em;
  letter-spacing: 0.02em;
  display: inline-block;
  font-weight: 600;
}


