@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', sans-serif;
}

body {
  background-color: #fff8f5;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #8B0000;
  color: white;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
  font-size: 1.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: background 0.3s;
}

nav ul li a:hover {
  background-color: yellow;
  color: #8B0000;
  border-radius: 5px;
}

section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.hero {
  background: url('images/image-header-1.jpg') center center / cover no-repeat;
  color: white;
  text-align: center;
  padding: 8rem 2rem;

  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
}


.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.menu-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.menu-item {
  background-color: white;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-item h4 {
  margin-bottom: 0.5rem;
  color: #8B0000;
}

.menu-card img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 1rem;
  background-color: #fff;
}

.about-hero {
  position: relative;
  width: 100%;
  height: 100vh; 
  background: url('images/about-page-background.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 2rem;
  box-sizing: border-box;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent dark overlay */
  z-index: 1;
}

.about-hero .hero-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1); /* optional subtle background */
  border-radius: 10px;
}

.about-hero .hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-hero .hero-text p {
  font-size: 1.2rem;
  line-height: 1.6;
}
.about, .contact {
  background-color: #fff0ec;
  border-radius: 10px;
  padding: 2rem;
  margin-top: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
}

form input, form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

form button {
  padding: 0.75rem;
  background-color: #8B0000;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background-color: #A52A2A;
}

footer {
  background-color: #8B0000;
  color: white;
  text-align: center;
  padding: 1rem 2rem;
  margin-top: 2rem;
}

/* NEW SECTION: How We Cook */
.how-we-cook {
  background-color: #fff0ec;
  border-radius: 10px;
  padding: 3rem 2rem;
  text-align: center;
}

.how-we-cook h2 {
  color: #8B0000;
  margin-bottom: 1rem;
}

.how-we-cook p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* NEW SECTION: Top Sellers */
.top-sellers {
  background-color: #fff0ec;
  border-radius: 10px;
  padding: 3rem 2rem;
  margin-top: 2rem;
}

.top-sellers h2 {
  text-align: center;
  color: #8B0000;
  margin-bottom: 2rem;
}

.top-sellers .product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.top-sellers .product {
  background-color: white;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  transition: transform 0.2s;
  text-align: center;
}

.top-sellers .product:hover {
  transform: translateY(-5px);
}

.top-sellers .product img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.top-sellers .product h4 {
  color: #8B0000;
  margin-bottom: 0.5rem;
}

.top-sellers .product p {
  font-size: 0.95rem;
  color: #555;
}

/* ABOUT PAGE */

.about-content {
  background-color: #fff0ec;
  border-radius: 10px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Box around each content block */
.about-content h2,
.about-content p,
.about-content ul,
.about-content blockquote,
.about-content .staff-story {
  background-color: #ffffff;
  border: 1px solid #e0d5d0;
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}


.about-content ul {
  list-style: none;
  padding-left: 0;
}

.about-content ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.about-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #8B0000;
  font-weight: bold;
}

.about-content blockquote {
  font-style: italic;
  color: #555;
  border-left: 4px solid #8B0000;
}


.about-content .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #8B0000;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 1rem;
  transition: background-color 0.3s;
}

.about-content .cta-button:hover {
  background-color: #A52A2A;
}


.parallax-section {
  background: url('images/parallax-bg.jpg') center/cover fixed no-repeat;
  padding: 5rem 2rem;
  color: white;
  text-align: center;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  margin-top: 3rem;
}

.parallax-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.parallax-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* CONTACT */

.contact-hero {
  background-color: #8B0000;
  color: white;
  text-align: center;
  padding: 5rem 2rem;
}

.contact-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Contact and Career Forms */
.contact-content,
.career-section {
  background-color: #fff0ec;
  border-radius: 10px;
  padding: 3rem 2rem;
  margin-top: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-content h2,
.career-section h2 {
  color: #8B0000;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #e0d5d0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.contact-form label {
  font-weight: bold;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  background-color: #fff8f5;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8B0000;
  outline: none;
  background-color: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .cta-button {
  background-color: #8B0000;
  color: white;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}

.contact-form .cta-button:hover {
  background-color: #A52A2A;
}

.career-section p {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Menu Page Styles */

.menu-hero {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
  background: url('images/pexels-minchephoto-6990118 (3).jpg') no-repeat center center / cover;
  color: white;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
}

.menu-hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.menu-hero-text p {
  font-size: 1.2rem;
  font-weight: 400;
}

.offers-section {
  background-color: #fff4f0;
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
}

.offers-section h2 {
  font-size: 2rem;
  color: #d62828;
  text-align: center;
  margin-bottom: 20px;
}

.offers-list {
  list-style: none;
  padding-left: 0;
  max-width: 600px;
  margin: 0 auto;
}

.offers-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #333;
}

.menu-grid {
  padding: 60px 20px;
  background: #fafafa;
}

.menu-grid h2 {
  text-align: center;
  font-size: 2rem;
  color: #222;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.menu-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.menu-card img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  background-color: #fff;
  padding: 10px;
}

.menu-card h3 {
  font-size: 1.3rem;
  margin: 15px 0 10px;
  color: #d62828;
}

.menu-card p {
  font-size: 0.95rem;
  color: #555;
  padding: 0 15px 20px;
}

/* Customer Review */
.testimonial-hero {
  background-color: #ffcccc;
  padding: 60px 20px;
  text-align: center;
}

.testimonial-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #990000;
}

.testimonial-hero p {
  font-size: 1.2rem;
  color: #333;
}

/* Testimonials Section */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  background-color: #fff5f5;
}

.testimonial-card {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.review {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 20px;
  color: #444;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.customer-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.customer-info h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #990000;
}

.customer-info span {
  font-size: 0.9rem;
  color: #666;
}

.site-footer {
  background-color: #990000;
  color: #fff;
  padding: 3rem 1rem 2rem;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.footer-logo h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  font-size: 0.95rem;
  color: #ffdede;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffcccb;
}

.footer-contact p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid #cc6666;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #ffdede;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    padding-top: 0.5rem;
  }

  .hero h2,
  .menu-hero-text h1 {
    font-size: 2rem;
  }

  .menu-hero-text p {
    font-size: 1rem;
  }

  .top-sellers .product,
  .menu-card,
  .testimonial-card {
    padding: 1rem;
  }

  .about-hero .hero-text h1 {
    font-size: 2rem;
  }

  .about-hero .hero-text p {
    font-size: 1rem;
  }

  .grid,
  .product-list,
  .testimonials {
    grid-template-columns: 1fr !important;
  }
}

html, body {
  overflow-x: hidden;
}

section, .contact-content, .career-section, .menu-grid {
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}