/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Reusable Section Styles */
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #e63946;
  color: #fff;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-weight: bold;
  cursor: pointer;
}

.btn:hover {
  background-color: #ff6347;
  color: white;
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

/* Navbar */
header {
  background-color: #fff;
  padding: 20px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar a.active {
  color: #ff6347;
  border-bottom: 2px solid #ff6347;
  transition: all 0.3s ease;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links li a:hover {
  color: #e63946;
}

/* Toggle icon for mobile */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: white;
    width: 200px;
    display: none;
    padding: 15px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* Scroll Padding */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(60%);
}

.hero-text {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* About Section */
.about {
  background-color: #fff5eb;
  padding: 80px 20px;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
}

.about-content img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-text {
  text-align: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #333;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

/* For larger screens */
@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .about-text {
    max-width: 500px;
  }
}

/* Menu Section */
.menu {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.menu h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 50px;
}

.menu-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-item {
  background-color: #fefefe;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.menu-item h3 {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 10px;
}

.menu-item p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

.menu-item span {
  font-weight: bold;
  font-size: 1.1rem;
  color: #d35400;
}

/* Responsive for larger screens */
@media (min-width: 768px) {
  .menu-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Gallery Section */
.gallery {
  background-color: #fafafa;
  padding: 80px 20px;
  text-align: center;
}

.gallery h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 165px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Responsive layout */
@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Reviews Section */
.reviews {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.reviews h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 50px;
}

.review-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.review {
  background-color: #f5f5f5;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 500px;
  transition: transform 0.3s ease;
}

.review:hover {
  transform: translateY(-5px);
}

.review img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.review h4 {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 10px;
}

.review p {
  font-size: 1rem;
  color: #666;
  font-style: italic;
}

/* Responsive layout */
@media (min-width: 768px) {
  .review-cards {
    flex-direction: row;
    justify-content: center;
  }
}

/* Contact Section */
.contact {
  background-color: #fefefe;
  padding: 80px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 50px;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  resize: none;
}

.contact-form textarea {
  height: 120px;
}

.contact-form .btn {
  background-color: #e67e22;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #cf711f;
}

.contact-info {
  text-align: left;
  max-width: 500px;
}

.contact-info iframe {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 1rem;
  color: #444;
}

/* Responsive layout */
@media (min-width: 768px) {
  .contact-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .contact-form,
  .contact-info {
    flex: 1;
  }

  .contact-form {
    margin-right: 40px;
  }
}

/* Footer Section */
.footer {
  background-color: #222;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

.footer p {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #ddd;
}

.footer .social-links a {
  color: #e67e22;
  text-decoration: none;
  margin: 0 8px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer .social-links a:hover {
  color: #fff;
}

/* Scroll to Top Button */
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  padding: 10px 15px;
  font-size: 20px;
  background-color: #e67e22;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: none;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: #cf711f;
}




