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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  background-color: #fefefe;
}

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

/* Header & Navigation */
.header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo-image {
    width: 45px; 
    height: auto;
}
.logo h1 {
  font-size: 1.5rem;
  color: #d97706;
  margin-bottom: 0.25rem;
}

.logo .tagline {
  font-size: 0.75rem;
  color: #78716c;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #2c2c2c;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #d97706;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #d97706;
}

/* Hero Section */
.hero {
  height: 500px;
   background-image: url('images/General.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 62.4%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity (0.5) as needed */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #fbbf24;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-description {
  font-size: 1.25rem;
  font-weight: 300;
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #2c2c2c;
}

.section-subtitle {
  text-align: center;
  color: #78716c;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* Menu Section */
.menu-section {
  padding: 5rem 0;
  background-color: #fafaf9;
}

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

.menu-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.menu-category {
  font-size: 1.5rem;
  color: #d97706;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #fbbf24;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.item-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #2c2c2c;
}

.item-info p {
  font-size: 0.9rem;
  color: #78716c;
  line-height: 1.4;
}

.price {
  font-weight: 700;
  color: #d97706;
  font-size: 1.1rem;
  white-space: nowrap;
}

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

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

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  display: none;
}

.slide.active {
  display: block;
}

.slide-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* Needed for overlay text */
    border-radius: 8px;
    overflow: hidden;   /* Prevent image from spilling out */
}

.slide-placeholder img {
    max-width: 80%;   /* adjust as needed */
    max-height: 80%;  /* adjust as needed */
    object-fit: contain; /* preserves aspect ratio */
    display: block;
}

.slide-text {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7); /* Makes text readable */
    pointer-events: none;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 2rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
  color: #2c2c2c;
}

.slider-btn:hover {
  background-color: #fff;
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d1d5db;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #d97706;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: #fafaf9;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-text h3 {
  font-size: 2rem;
  color: #d97706;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #44403c;
}

.signature {
  font-style: italic;
  color: #78716c;
  margin-top: 2rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: #fff;
}

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

.contact-info h3,
.contact-form-wrapper h3 {
  font-size: 1.5rem;
  color: #d97706;
  margin-bottom: 1.5rem;
}

.address {
  margin-bottom: 2rem;
  line-height: 1.8;
  color: #44403c;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #e7e5e4;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d97706;
}

.submit-btn {
  background-color: #d97706;
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #b45309;
}

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

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

.footer-section h4 {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  margin-bottom: 0.5rem;
  color: #d1d5db;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #44403c;
  color: #9ca3af;
}

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

  .nav.active {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f5f5f4;
  }

  .nav-link.active::after {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .slide-placeholder {
    height: 300px;
    font-size: 1.2rem;
  }

  .slider-btn {
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
  }

  .slider-btn.prev {
    left: 10px;
  }

  .slider-btn.next {
    right: 10px;
  }

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    height: 400px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .menu-section,
  .gallery-section,
  .about-section,
  .contact-section {
    padding: 3rem 0;
  }

  .menu-card {
    padding: 1.5rem;
  }

  .slide-placeholder {
    height: 250px;
    font-size: 1rem;
  }
}
