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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

body.loaded {
  opacity: 1;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #2c2c2c;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  margin-bottom: 1rem;
}

/* Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-logo img {
  height: 48px;
  border-radius: 8px;
  transition: transform 0.3s;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.navbar ul li a {
  text-decoration: none;
  color: #2c2c2c;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #e67e22;
}

.nav-cta {
  background: #e67e22;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  transition: background 0.3s;
}

.nav-cta:hover {
  background: #d35400;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 3px;
  background: #2c2c2c;
  margin: 5px 0;
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;

}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  color: white;
}

.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-1 { background-image: url('./images/chickenSandwich.jpg'); }
.hero-slide-2 { background-image: url('./images/clamchowder.jpg'); }
.hero-slide-3 { background-image: url('./images/club.jpg'); }
.hero-slide-4 { background-image: url('./images/Chilli.jpg'); }

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.hero-content h1 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f39c12;
  margin-bottom: 0.5rem;
  text-shadow: none;
}

.hero-content p {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #e67e22;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-button:hover {
  background: #d35400;
  transform: translateY(-2px);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid #fff;
}

.cta-button.secondary:hover {
  background: #fff;
  color: #2c2c2c;
}

/* Section Animations */
.section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.animate {
  opacity: 1;
  transform: translateY(0);
}

.section-subtitle {
  text-align: center;
  color: #666;
  max-width: 600px;
  margin: -0.5rem auto 2rem;
  font-size: 1.1rem;
}

/* Results Banner */
.results-banner {
  background: #2c2c2c;
  padding: 2.5rem 0;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.result-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #e67e22;
}

.stat-label {
  font-size: 0.95rem;
  color: #ccc;
  margin-top: 0.25rem;
}

/* About Section */
.about {
  padding: 5rem 0;
  background: #fff;
}

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

.about-content p {
  color: #555;
  line-height: 1.8;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}

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

/* Value Proposition */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

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

.value-item:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #e67e22;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: #f8f8f8;
}

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

.service-item {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,0,0,0.04);
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.service-item.featured-service {
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
  color: #fff;
}

.service-item.featured-service h3,
.service-item.featured-service p {
  color: #fff;
}

/* Pricing Section */
.pricing-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
  opacity: 0.1;
  z-index: -1;
}

.pricing {
  position: relative;
  padding: 4rem 0;
}

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

.pricing-item {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,0,0,0.04);
}

.pricing-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.pricing-item.featured {
  background: #e67e22;
  color: #fff;
}

.pricing-item.featured h3,
.pricing-item.featured p,
.pricing-item.featured ul li {
  color: #fff;
}

.pricing-item.featured .cta-button {
  background: #fff;
  color: #2c2c2c;
}

.pricing-item.featured .cta-button:hover {
  background: #f1f1f1;
}

.popular-badge,
.special-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #2c2c2c;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
}

.special-badge {
  background: #27ae60;
}

.pricing-item ul {
  list-style: none;
  margin: 1.5rem 0;
}

.pricing-item ul li {
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #e67e22;
  margin: 1rem 0;
}

.price-period {
  font-size: 1rem;
  font-weight: 400;
  color: #888;
}

.pricing-item.featured .price-period {
  color: rgba(255,255,255,0.8);
}

.pricing-item.featured .price {
  color: #fff;
}

/* Testimonials */
.recommendations {
  padding: 5rem 0;
  background: #fdf8f3;
}

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

.testimonial {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #e67e22;
  transition: transform 0.3s;
}

.testimonial:hover {
  transform: translateY(-4px);
}

.testimonial-result {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #e67e22;
  margin-bottom: 0.75rem;
}

.stars {
  color: #e67e22;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-author {
  margin-top: 1rem;
  font-style: italic;
}

.author-title {
  display: block;
  color: #999;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* Gallery */
.gallery {
  padding: 5rem 0;
  background: #fff;
}

.gallery-intro {
  text-align: center;
  color: #666;
  max-width: 600px;
  margin: 0 auto 1rem;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 1rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .overlay {
  transform: translateY(0);
}

/* Free Menu Audit Section */
.audit-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
}

.audit-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.audit-cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.audit-cta p {
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

.audit-benefits {
  list-style: none;
  margin-top: 1.5rem;
}

.audit-benefits li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255,255,255,0.9);
}

.audit-benefits li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

.audit-form {
  background: rgba(255,255,255,0.08);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audit-form .form-group label {
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.audit-form .form-group input {
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.9);
  font-size: 1rem;
  color: #333;
}

.audit-form .form-group input:focus {
  background: #fff;
  outline: 2px solid #e67e22;
}

.audit-submit {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.audit-form .form-note {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-align: center;
}

/* FAQ */
.faq {
  padding: 5rem 0;
  background: #f8f8f8;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  background: #fff;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f8f8f8;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 1rem;
}

/* Contact */
.contact {
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
  padding: 4rem 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-details {
  color: #fff;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  transition: background 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: #fff;
  outline: none;
}

.form-group textarea {
  resize: vertical;
}

.form-note {
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
}

/* Footer */
footer {
  background: #2c2c2c;
  color: #fff;
  padding: 3rem 0;
}

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

.footer-section h3,
.footer-section h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #e67e22;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: #fff;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #e67e22;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
  color: #e67e22;
  text-decoration: none;
}

/* Scroll to Top */
.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #e67e22;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background: #d35400;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .navbar ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar ul.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about-flex,
  .contact-info-grid,
  .audit-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .pricing-table {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
  }

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

  .stat-number {
    font-size: 2rem;
  }

  .cta-button {
    padding: 0.6rem 1.5rem;
  }

  .gallery-item img {
    height: 200px;
  }
}