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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #654321;
  background-color: #FAF0E6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.section-title {
  text-align: center;
  color: #8B4513;
  margin-bottom: 1rem;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3a270b, #452710);
  border-radius: 2px;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }
}

.nav-logo h2 {
  font-family: "Playfair Display", serif;
  color: #8B4513;
  font-size: 1.8rem;
  margin: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 2rem;
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #FFFFFF;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 3rem 0;
  }
  .nav-menu.active {
    left: 0;
  }
}

.nav-link {
  color: #654321;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #3a270b;
  transition: width 0.3s ease;
}
.nav-link:hover {
  color: #8B4513;
}
.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}
.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #8B4513;
  margin: 3px 0;
  transition: 0.3s ease;
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("https://images.unsplash.com/photo-1442512595331-e89e73853f31?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: #FFFFFF;
  max-width: 800px;
  padding: 0 2rem;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-subtitle {
  color: #FFFFFF;
  font-size: 1.3rem;
  margin-bottom: 3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

.cta-button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background: linear-gradient(135deg, #3a270b, #452710);
  color: #FFFFFF;
  font-size: 1.1rem;
  padding: 2rem 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, rgb(100.8695652174, 67.8260869565, 19.1304347826), rgb(110.4, 62.4, 25.6));
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: #FFFFFF;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
.about {
  padding: 6rem 0;
  background: #FFFFFF;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666666;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.stat {
  text-align: center;
  padding: 2rem;
  background: #FAF0E6;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.stat:hover {
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #8B4513;
  font-family: "Playfair Display", serif;
}

.stat-label {
  font-size: 0.9rem;
  color: #666666;
  font-weight: 500;
}

.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.about-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid #3a270b;
  border-radius: 15px;
  z-index: -1;
}

.menu {
  padding: 6rem 0;
  background: #FAF0E6;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}
@media (min-width: 1200px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.menu-card {
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.5s ease;
}
.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.menu-card-image {
  height: 200px;
  overflow: hidden;
}
.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.1);
}

.menu-card-content {
  padding: 2rem;
  text-align: center;
}

.menu-card-content h3 {
  color: #8B4513;
  margin-bottom: 1rem;
}

.menu-card-content p {
  color: #666666;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.price {
  display: inline-block;
  background: linear-gradient(135deg, #3a270b, #452710);
  color: #FFFFFF;
  padding: 0.5rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
}

.gallery {
  padding: 6rem 0;
  background: #FFFFFF;
}

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

.gallery-item {
  position: relative;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.gallery-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.gallery-overlay p {
  color: #F5F5DC;
  font-size: 0.95rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.testimonials {
  padding: 6rem 0;
  background: #FAF0E6;
}

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

.testimonial {
  display: none;
  text-align: center;
  padding: 3rem;
}
.testimonial.active {
  display: block;
}

.testimonial-content {
  background: #FFFFFF;
  padding: 4rem;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: #3a270b;
  font-family: "Playfair Display", serif;
}

.stars {
  margin-bottom: 2rem;
}
.stars i {
  color: #3a270b;
  font-size: 1.2rem;
  margin: 0 2px;
}

.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 3rem;
  color: #654321;
}

.testimonial-author h4 {
  color: #8B4513;
  margin-bottom: 0.5rem;
}

.testimonial-author span {
  color: #666666;
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #666666;
  cursor: pointer;
  transition: background 0.3s ease;
}
.dot.active {
  background: #3a270b;
}
.dot:hover {
  background: #452710;
}

.footer {
  background: #654321;
  color: #FFFFFF;
  padding: 6rem 0 3rem;
}

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

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

.footer-section p {
  color: #F5F5DC;
  margin-bottom: 2rem;
}

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

.footer-section ul li {
  margin-bottom: 1rem;
  color: #F5F5DC;
}
.footer-section ul li i {
  margin-right: 1rem;
  color: #ffffff;
}

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

.social-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: #654321;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-link:hover {
  background: #FFFFFF;
  transform: translateY(-3px);
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }
}
.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 25px;
  font-family: "Poppins", sans-serif;
}
.newsletter-form input:focus {
  outline: 2px solid #3a270b;
}
.newsletter-form button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background: #ffffff;
  color: #654321;
  border-radius: 25px;
}
.newsletter-form button:hover {
  background: rgb(100.8695652174, 67.8260869565, 19.1304347826);
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease forwards;
}

.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 3rem;
}

.mb-5 {
  margin-bottom: 4rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 2rem;
}

.mt-4 {
  margin-top: 3rem;
}

.mt-5 {
  margin-top: 4rem;
}

.hidden {
  opacity: 0;
  transform: translateY(30px);
}

.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/*# sourceMappingURL=main.css.map */
