/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #3e2723;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  color: #ffccbc;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1509042239860-f550ce710b93') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 4rem;
}

.hero-text {
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 8px;
}

.hero-text h1 {
  font-size: 3rem;
}

.hero-text p {
  font-size: 1.2rem;
}

/* About Section */
.about {
  padding: 4rem 2rem;
  background-color: #f9f5f0;
}

.about-content {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #3e2723;
}

.about-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 0.8rem;
}

/* Menu Section */
.menu {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.menu h2 {
  font-size: 2.5rem;
  color: #3e2723;
  margin-bottom: 2rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}

.menu-item {
  background: #f9f5f0;
  border-radius: 10px;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.menu-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.menu-item h3 {
  color: #3e2723;
  margin-bottom: 0.5rem;
}

.menu-item p {
  color: #555;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 2rem;
  background-color: #f9f5f0;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  color: #3e2723;
  margin-bottom: 2rem;
}

.testimonial-slider {
  max-width: 700px;
  margin: auto;
  position: relative;
}

.testimonial-card {
  display: none;
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.testimonial-card.active {
  display: block;
  animation: fade 0.5s ease-in-out;
}

.testimonial-card p {
  font-style: italic;
  color: #555;
}

.testimonial-card h4 {
  margin-top: 1rem;
  color: #3e2723;
}

@keyframes fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Contact Section */
.contact {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  color: #3e2723;
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  padding: 1rem;
  background-color: #3e2723;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #5d4037;
}

.form-status {
  margin-top: 0.5rem;
  color: green;
  font-weight: bold;
}

/* Footer */
.footer {
  background-color: #3e2723;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.footer-content {
  max-width: 1000px;
  margin: auto;
}

.footer p {
  margin-bottom: 1rem;
}

.social-links a {
  color: #fff;
  margin: 0 0.5rem;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #ffccbc;
}
