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

body {
  font-family: 'Raleway', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f5e6d3; /* warm cream background */
}

/* Headings */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

/* Header */
header {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
}

.logo a {
  font-size: 1.5rem;
  color: #d35400;
  text-decoration: none;
  transition: color 0.3s;
}

.logo a:hover {
  color: #e67e22;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #d35400;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: #f9ede1; /* lighter warm cream */
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* Hero Parallax */
.parallax {
  background: url('images/hero-bagels.jpg') no-repeat center center/cover;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  position: relative;
}

.hero-overlay {
  background: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.hero-text h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #d35400;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #e67e22;
}

.btn-alt {
  background: #27ae60;
}

.btn-alt:hover {
  background: #2ecc71;
}

/* Sections */
section {
  padding: 4rem 2rem;
  background: #f5e6d3; /* standard warm cream */
}

/* Alternate Backgrounds for Contrast */
.intro,
.contact-section,
.menu-section,
.team {
  background: #f9ede1; /* slightly lighter cream */
}

/* Intro */
.intro {
  text-align: center;
}

.intro-img {
  margin-top: 2rem;
  width: 80%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.4s, box-shadow 0.4s;
}

.intro-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Featured */
.featured {
  background: #f5e6d3;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h4 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
}

/* CTA */
.cta {
  background: url('images/order-online.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #3e2723, #2c1815);
  color: #eee;
  text-align: center;
  padding: 1.5rem;
}

footer p {
  opacity: 0.9;
}

/* Hero Banners */
.about-hero,
.menu-hero,
.contact-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #fff;
  background-attachment: fixed;
  border-radius: 0;
}

.about-hero .hero-overlay,
.menu-hero .hero-overlay,
.contact-hero .hero-overlay {
  background: rgba(0,0,0,0.55);
  padding: 2rem 3rem;
  border-radius: 12px;
}

.about-hero h2,
.menu-hero h2,
.contact-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-hero p,
.menu-hero p,
.contact-hero p {
  font-size: 1.2rem;
}

/* About Page */
.about-section {
  padding: 4rem 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* Team Section */
.team h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.member {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.member h4 {
  margin-bottom: 0.5rem;
  color: #d35400;
}

.member p {
  font-size: 0.95rem;
  color: #555;
}

/* Menu Section */
.menu-section {
  padding: 4rem 2rem;
}

.menu-category {
  font-size: 1.8rem;
  margin: 2rem 0 1.5rem;
  font-family: 'Playfair Display', serif;
  border-bottom: 2px solid #d35400;
  display: inline-block;
  padding-bottom: 0.3rem;
}

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

.menu-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.menu-card h4 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
}

.menu-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.price {
  font-weight: bold;
  color: #d35400;
  font-size: 1rem;
}

.contact-section {
  padding: 4rem 2rem;
}
/* Contact Hero */
.contact-hero .hero-overlay {
  background: rgba(0,0,0,0.5);
  padding: 2rem 3rem;
  color: #fff;
  border-radius: 12px;
}

.contact-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  padding: 4rem 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 2rem;
  text-align: center;
}

.contact-card img {
  width: 60px;
  margin-bottom: 1rem;
}

.contact-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  color: #d35400;
}

/* Contact Form */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-form label {
  display: block;
  margin: 1rem 0 0.5rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact-form button {
  margin-top: 1.5rem;
  background: #d35400;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #e67e22;
}
img {
  max-width: 100%;
  height: auto;
}


/* On small screens */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }


  .header-container {
    flex-wrap: wrap;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-members {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
