/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body font */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #fffaf0;
  color: #333;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

/* Nav */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

/* Fancy cursive headers */
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;  
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Hero Section */
.hero-banner {
  position: relative;
  background-image: url("cafe-assets/IMG_1226.png"); /* double check this file path */
  background-size: cover;
  background-position: center 15%;
  background-repeat: no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  background-color: #fdf6e3;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-align: center;
  color: #333;
  margin-top: 25rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-family: 'Great Vibes', cursive;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: normal;
}

/* NEW — Tagline and Subtagline Styling */
.hero-text .subtagline {
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.hero-text .tagline {
  font-size: 2rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  line-height: 1.4;
}

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.menu-item {
  text-align: center;
}

.menu-item img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* Sections */
section {
  margin: 3rem 0;
}

.menu-intro {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  color: #555;
}


/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: #777;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }
}

.section-subtext {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-top: -1rem;
  margin-bottom: 2rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-family: 'Great Vibes', cursive;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: normal;
}

.fancy-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  font-weight: normal;
  letter-spacing: 1px;
  margin-top: 1rem;
}


