:root {
  --primary-color: #D4481D;
  --secondary-color: #2A3136;
  --accent-color: #8EA78D;
  --status-color: #E67428;
  --neutral-color: #F8F5F2;
  --white: #FFFFFF;
}

/* Hero Section Logo */
.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.smashed-hero-logo {
  display: block;
  width: 520px;
    height: 200px;
  height: auto;
}


/* Footer Section Logo */
.footer-logo {
  display: flex;
  /*justify-content: center;
  margin-bottom: 30px;*/
}
.smashed-footer-logo {
  display: block;
  width: 100px;
    height: 100px;
  height: auto;
}


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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--neutral-color);
  color: var(--secondary-color);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--status-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-color);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--secondary-color);
}

/* Header Styles */
header {
  position: fixed;
  width: 100%;
  background-color: rgba(248, 245, 242, 0.9);
  z-index: 100;
  transition: all 0.3s ease;
}

.header-scrolled {
  background-color: rgba(248, 245, 242, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.nav-links {
  display: none;
}

.nav-links a {
  margin-left: 32px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.mobile-menu.open {
  max-height: 300px;
  opacity: 1;
}

.mobile-menu a {
  display: block;
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.3s ease;
}

.mobile-menu a:hover {
  background-color: #f8f8f8;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/d-4.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

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

.hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
  font-weight: 700;
}

.hero p {
  font-size: 20px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

/* About Section */
.about {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 24px;
  font-weight: 700;
}

.about-content p {
  margin-bottom: 16px;
  font-size: 16px;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.feature {
  display: flex;
  align-items: center;
}

.feature-icon {
  color: var(--primary-color);
  margin-right: 8px;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
  background-color: var(--secondary-color);
  color: white;
  padding: 48px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 24px;
}

.feature-card-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 40px;
  color: var(--accent-color);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

/* Menu Section */
.menu {
  padding: 80px 0;
  text-align: center;
}

.menu h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.menu-description {
  max-width: 700px;
  margin: 0 auto 48px;
}

.menu-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.category-btn {
  padding: 8px 16px;
  border-radius: 4px;
  background-color: var(--neutral-color);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn.active {
  background-color: var(--primary-color);
  color: white;
}

.category-btn:hover:not(.active) {
  background-color: var(--primary-color);
  color: white;
}

.menu-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.menu-item {
  display: flex;
  background-color: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.menu-item-image {
  width: 96px;
  height: 96px;
  border-radius: 4px;
  object-fit: cover;
}

.menu-item-content {
  margin-left: 16px;
  flex: 1;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}

.menu-item-name {
  font-size: 18px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

.menu-item-price {
  color: var(--primary-color);
  font-weight: 500;
}

.menu-item-description {
  color: #666;
  font-size: 14px;
}

/* Testimonials Section */
.testimonials {
  padding: 64px 0;
  background-color: rgba(142, 167, 141, 0.1);
}

.testimonials h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 48px;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  background-color: white;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
  color: var(--primary-color);
  display: flex;
  margin-bottom: 16px;
  font-size: 20px;
}

.testimonial-quote {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 24px;
}

.testimonial-author {
  font-weight: 500;
}

.testimonial-date {
  font-size: 14px;
  color: #666;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
}

.testimonial-dot.active {
  background-color: var(--primary-color);
}

/* Order Section */
.order {
    padding: 80px 0;
    background-color: var(--neutral-color);
    text-align: center;
  }
  
  .order h2 {
    font-size: 36px;
    margin-bottom: 16px;
  }
  
  .order-description {
    max-width: 700px;
    margin: 0 auto 48px;
  }
  
  .order-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .order-option {
    background-color: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .order-option:hover {
    transform: translateY(-5px);
  }
  
  .order-icon {
    font-size: 48px;
    margin-bottom: 16px;
  }
  
  .order-option h3 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .order-option p {
    color: #666;
    margin-bottom: 24px;
  }
  
  .delivery-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
  }
  
  .delivery-btn {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    transition: all 0.3s ease;
  }
  
  .delivery-btn:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  /* Media query for larger screens */
  @media (min-width: 768px) {
    .order-options {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .delivery-buttons {
      flex-direction: row;
    }
  }

/* Location Section */
.location {
  padding: 80px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.location h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.location-info {
  margin-bottom: 32px;
}

.location-info h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.info-item {
  display: flex;
  margin-bottom: 8px;
}

.info-icon {
  color: var(--primary-color);
  margin-right: 12px;
  margin-top: 4px;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 32px;
}

.hours-item p:first-child {
  font-weight: 500;
}

.hours-item p:last-child {
  color: #666;
}

.location-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}

.location-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.map {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background-color: white;
  padding: 4px 12px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  color: var(--primary-color);
}

.map-link:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Reservation Section */
.reservation {
  padding: 64px 0;
  background-color: var(--secondary-color);
  color: white;
}

.reservation h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
}

.reservation-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.reservation-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-field select,
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background-color: white;
  color: var(--secondary-color);
}

.form-field .error {
  color: #f44336;
  font-size: 14px;
  margin-top: 4px;
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  background-color: var(--status-color);
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  margin: 0 auto;
}

.submit-btn:hover {
  background-color: var(--primary-color);
}

/* Form Success Message */
.success-message {
  display: none;
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 24px;
}

.success-message.show {
  display: block;
}

/* Contact Section */
.contact {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.contact-form {
  margin-bottom: 48px;
}

.form-submit {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-submit:hover {
  background-color: var(--status-color);
}

.contact-images {
  display: grid;
  gap: 16px;
}

.main-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
}

.main-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.sub-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sub-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sub-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Newsletter Section */
.newsletter {
  padding: 48px 0;
  background-color: rgba(142, 167, 141, 0.1);
  text-align: center;
}

.newsletter h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.newsletter-description {
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.newsletter-btn {
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background-color: var(--status-color);
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.footer-description {
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  color: white;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--primary-color);
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

.contact-list,
.hours-list,
.links-list {
  list-style: none;
}

.contact-list li,
.hours-list li,
.links-list li {
  margin-bottom: 8px;
}

.links-list a {
  transition: color 0.3s ease;
}

.links-list a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #444;
}

.footer-links {
  margin-top: 8px;
}

.footer-link {
  color: #aaa;
  margin: 0 16px;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-link:hover {
  color: var(--primary-color);
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive Styles */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero-buttons {
    flex-direction: row;
  }
  
  .about-grid,
  .features-grid,
  .menu-items,
  .location-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-span-2 {
    grid-column: span 2;
  }
  
  .newsletter-form {
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}