@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

* {
  box-sizing: border-box;
  margin: 0; padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #121212;
  color: #e0e0e0;
  line-height: 1.6;
  scroll-behavior: smooth;
  min-height: 100vh;
}

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(18,18,18,0.85);
  backdrop-filter: saturate(180%) blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.8);
  z-index: 1000;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 1rem;
  justify-items: center;
}

/* Small fixed-shape images */
.small-img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 2 / 1; /* 400x200 ratio */
  object-fit: cover;
  border-radius: 8px;
}

/* Large full-width images */
.large-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.navbar {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.8rem;
  color: #f87171; /* soft red */
  letter-spacing: 2px;
  user-select: none;
}

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

.nav-links li a {
  color: #ddd;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.nav-links li a:hover,
.nav-links li a:focus {
  color: #f87171;
  background: rgba(248,113,113,0.1);
  outline: none;
}

/* Hero Section */

.hero {
    background-image:linear-gradient(rgba(0, 0, 0, 0.522), rgba(0, 0, 0, 0.515)), url('./images/platter.jpeg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 85lvb;
    margin-top: 60px; /* for fixed header */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 2px 10px rgb(0, 0, 0);
    padding: 0 1rem;
  
    /* stretch full width */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 1px;
}

/* Sections */

main {
  max-width: 1100px;
  margin: 2rem auto 5rem;
  padding: 0 1.5rem;
}

.section {
  margin-bottom: 5rem;
}

.section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #f87171;
  margin-bottom: 2rem;
  text-align: center;
}

/* Gallery */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1.25rem;
  justify-items: center;
}

.gallery img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(248,113,113,0.25);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover,
.gallery img:focus {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(248,113,113,0.5);
  outline: none;
}

/* Video Gallery */

.video-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.video-gallery iframe {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(248,113,113,0.25);
  transition: transform 0.3s ease;
  max-width: 320px;
  width: 100%;
  height: 180px;
}

.video-gallery iframe:hover,
.video-gallery iframe:focus {
  transform: scale(1.05);
  outline: none;
}

/* Feedback cards */

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

.card {
  background: #1e1e1e;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(248,113,113,0.15);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.card:hover,
.card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(248,113,113,0.4);
  outline: none;
}

.card p {
  font-weight: 400;
  font-style: italic;
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.card h4 {
  font-weight: 700;
  color: #f87171;
  text-align: right;
}

/* Facts section */

.facts-section {
  background: #1a1a1a;
  padding: 3rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(248,113,113,0.1);
  max-width: 800px;
  margin: auto 0 5rem;
}

.facts-list {
  list-style: inside disc;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #f87171;
  font-weight: 600;
}

/* Footer */

footer {
  text-align: center;
  padding: 1.8rem 1rem;
  background: #121212;
  font-weight: 300;
  color: #f87171;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* Fade-in animations */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.quote-section {
    background-color: #1f2937; /* dark slate */
    color: #f87171;
    text-align: center;
    padding: 3rem 1rem;
    margin: 3rem 0;
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .quote-section h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
  }
  
  .quote-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .quote-section form {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
  }
  
  .quote-section input[type="email"] {
    flex: 1;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
  }
  
  .quote-section button {
    background-color: #f87171;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .quote-section button:hover {
    background-color: #dc2626;
  }
  
  .form-message {
    margin-top: 1rem;
    font-size: 1rem;
    color: #a7f3d0; /* soft green for success */
  }

  main > section:nth-last-child(2),
  main > section:nth-last-child(1) {
    display: inline-block;
    width: 48%;
    vertical-align: top;
    box-sizing: border-box;
    margin-top: 40px;
    margin-left: 15px;
  }

  footer {
    background-color: #004d40;
    color: white;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    width: 100%;
max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .contact-info h3,
  .social-media h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
  }
  
  .contact-info p,
  .contact-info a {
    font-size: 1rem;
    color: white;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  .social-media a {
    margin-right: 1rem;
    display: inline-block;
    width: 64px;
    height: 64px;
  }
  
  .social-media img {
    width: 100%;
    height: 100%;
    transition: filter 0.3s ease;
  }
  
  .social-media a:hover img {
    filter: brightness(0.7) invert(0.7);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
  }
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 1rem;
    justify-items: center;
  }
  
  /* Large images: full-width always */
  .large-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
  }
  
  /* Small images: fixed size on desktop */
  .small-img {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    border-radius: 8px;
  }
  
  /* 🔁 On mobile: all images full width, stacked */
  @media (max-width: 768px) {
    .gallery {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .small-img,
    .large-img {
      width: 100%;
      max-width: 100%;
      aspect-ratio: 2 / 1;
      object-fit: cover;
    }
  }
  
  
  /* === BOTTOM SECTIONS WRAPPER === */
.bottom-sections {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin: 4rem auto;
  max-width: 1100px;
  padding: 0 1rem;
}

/* === FACTS SECTION === */
.facts-section {
  background: #1a1a1a;
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(248,113,113,0.1);
  flex: 1;
}

.facts-list {
  list-style: inside disc;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #f87171;
  font-weight: 600;
}

/* === QUOTE SECTION === */
.quote-section {
  background-color: #1f2937;
  color: #f87171;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 16px;
  flex: 1;
}

.quote-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.quote-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.quote-section form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.quote-section input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}

.quote-section button {
  background-color: #f87171;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.quote-section button:hover {
  background-color: #dc2626;
}

.form-message {
  margin-top: 1rem;
  font-size: 1rem;
  color: #a7f3d0;
}


.hero {
  background: url('./images/platter.jpeg') center center / cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
}

.hero-content {
  max-width: 800px;
}

@media (max-width: 768px) {
  .hero {
    margin-top: 150px;
    height: 40vh; /* Reduce height on mobile */
    padding: 1.5rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}


/* === RESPONSIVE FOR MOBILE === */
@media (max-width: 768px) {
  .bottom-sections {
    flex-direction: column;
    align-items: center;
  }

  .facts-section,
  .quote-section {
    width: 100%;
    margin-bottom: 2rem;
  }

  .quote-section form {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .quote-section input[type="email"],
  .quote-section button {
    width: 100%;
  }
}
/* Feedback cards container */
.feedback-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

/* Each card style */
.feedback-cards .card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  flex: 1 1 280px; /* grow, shrink, base width */
  max-width: 350px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Optional: style for feedback quotes */
.feedback-cards .card p {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.feedback-cards .card h4 {
  text-align: right;
  color: #555;
  font-weight: 600;
}

/* Responsive bottom sections (facts + quote) */
.bottom-sections {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.facts-section, .quote-section {
  flex: 1 1 320px;
  min-width: 280px;
}

/* Stack on smaller screens */
@media (max-width: 768px) {
  .bottom-sections {
    flex-direction: column;
  }
}

#feedback {
  width: 100%;
  max-width: 100%;
  padding: 2rem 2rem;
  box-sizing: border-box;
}

/* Responsive */

@media (max-width: 700px) {
  /* Navbar */
  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-links li {
    margin-bottom: 8px;
  }

  /* Hero section */
  .hero-content h1 {
    font-size: 2rem;
    text-align: center;
    padding: 0 1rem;
  }

  .hero-content p {
    font-size: 1rem;
    text-align: center;
    padding: 0 1rem;
  }

  /* Gallery images */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    padding: 0 1rem;
  }

  .gallery img {
    width: 100%;
    height: auto;
    border-radius: 6px;
  }

  /* Video gallery */
  .video-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 1rem;
  }

  .video-gallery iframe {
    width: 100%;
    height: 160px;
  }

  /* Feedback cards */
  .feedback-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 1rem;
  }

  .card {
    padding: 1rem;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    background-color: white;
  }

  /* Facts and Quote sections side by side => stack vertically */
  .bottom-sections {
    flex-direction: column;
    padding: 0 1rem;
  }

  .facts-section, .quote-section {
    width: 100%;
    margin-bottom: 30px;
  }

  /* Quote form */
  form#quoteForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  form#quoteForm input[type="email"] {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
  }

  form#quoteForm button {
    padding: 12px;
    font-size: 1.1rem;
    background-color: #004d40;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  form#quoteForm button:hover {
    background-color: #00695c;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .social-media a {
    margin: 0 0.5rem 0.5rem 0.5rem;
  }
}
