:root {
  --primary-color: #8b4513;
  --secondary-color: #f5deb3;
  --accent-color: #d2691e;
  --text-color: #333;
  --light-color: #fff8dc;
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray-medium: #6c757d;
  --gray-dark: #343a40;
  --success-color: #28a745;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.2);
  --border-radius: 10px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  background-color: var(--light-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.pre-header {
  background-color: black;
  color: white;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.pre-header .container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.pre-header-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.pre-header-link i {
  color: var(--secondary-color);
  transition: var(--transition);
}

.pre-header-link:hover,
.pre-header-link:hover i {
  color: var(--accent-color);
}

.main-header {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-light);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid white;
  margin-right: 10px;
}

.logo span {
  font-family: "Playfair Display", serif;
  line-height: 1;
}

.nav-links {
  display: flex;
  list-style: none;
  position: relative;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 0;
}

.nav-indicator {
  position: absolute;
  bottom: -5px;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--secondary-color);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.carousel-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background-color: var(--secondary-color);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: inherit;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary {
  background-color: var(--accent-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.btn-outline:hover {
  background-color: var(--accent-color);
  color: white;
}

/* ===== SECTIONS ===== */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== MENU SECTION ===== */
.menu-section {
  background-color: var(--white);
}

.menu-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.menu-category {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.menu-category.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.menu-category:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.menu-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.menu-overlay i {
  font-size: 3rem;
  color: white;
}

.menu-category:hover .menu-overlay {
  opacity: 1;
}

.menu-category:hover .menu-image img {
  transform: scale(1.1);
}

.menu-category-content {
  padding: 2rem;
}

.menu-category h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background-color: var(--gray-light);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.service-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background-color: var(--white);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

.about-container.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.about-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.about-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background-color: var(--gray-light);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
}

.contact-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-right: 1rem;
  width: 30px;
  flex-shrink: 0;
}

.contact-text h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.map {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  height: 400px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 0;
}

.page-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hero-content p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ===== MENU PAGE ===== */
.full-menu-section {
  padding: 3rem 0;
}

.menu-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.menu-nav-btn {
  padding: 0.8rem 1.5rem;
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.menu-nav-btn.active,
.menu-nav-btn:hover {
  background-color: var(--accent-color);
  color: white;
}

.menu-category-full {
  display: none;
}

.menu-category-full.active {
  display: block;
}

.menu-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.menu-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.menu-item-image {
  height: 200px;
  overflow: hidden;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.1);
}

.menu-item-content {
  padding: 1.5rem;
}

.menu-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.menu-item p {
  color: var(--gray-medium);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-color);
}

/* ===== SERVICES PAGE ===== */
.services-full-section {
  padding: 3rem 0;
}

.services-full-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-full-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

.service-full-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.service-full-card:nth-child(even) {
  direction: rtl;
}

.service-full-card:nth-child(even) > * {
  direction: ltr;
}

.service-full-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.service-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-overlay {
  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));
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-overlay i {
  font-size: 4rem;
  color: white;
}

.service-full-content {
  padding: 2rem;
}

.service-full-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-full-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.service-features i {
  color: var(--success-color);
  margin-right: 0.5rem;
}

/* ===== ABOUT PAGE ===== */
.about-carousel {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.carousel-container {
  position: relative;
  height: 400px;
}

.about-carousel .carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.about-carousel .carousel-slide.active {
  opacity: 1;
}

.about-carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
  z-index: 2;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}

.about-carousel .carousel-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.values-section {
  background-color: var(--gray-light);
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.value-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.value-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* ===== CONTACT PAGE ===== */
.contact-full-section {
  padding: 3rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-info-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

.contact-info-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.contact-info-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-intro {
  margin-bottom: 2rem;
  color: var(--gray-medium);
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-link {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--primary-color);
}

.social-section h4 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.social-section .social-icons {
  flex-direction: column;
  gap: 0.5rem;
}

.social-section .social-link {
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--text-color);
  border-radius: 0;
  padding: 0.5rem;
  justify-content: flex-start;
  transition: var(--transition);
}

.social-section .social-link:hover {
  color: var(--accent-color);
  background-color: transparent;
  transform: translateX(5px);
}

.social-section .social-link i {
  margin-right: 0.5rem;
  width: 20px;
}

.social-section .social-link.facebook:hover {
  color: #1877f2;
}

.social-section .social-link.instagram:hover {
  color: #e4405f;
}

.social-section .social-link.twitter:hover {
  color: #1da1f2;
}

.contact-form-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

.contact-form-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.contact-form-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.map-section {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

.map-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.map-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--gray-dark) 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  font-family: "Playfair Display", serif;
  margin-bottom: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social .social-link {
  width: 35px;
  height: 35px;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.footer-contact i {
  margin-right: 0.5rem;
  width: 15px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.schedule {
  margin-top: 1rem;
}

.schedule-item {
  margin-bottom: 1rem;
  display: block;
}

.schedule-day {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
  display: block;
}

.schedule-time {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
  display: block;
}

.schedule-time:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-links a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--secondary-color);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 140px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 140px);
    background-color: var(--primary-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.3s;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 1.5rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .page-hero-content h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .menu-container {
    grid-template-columns: 1fr;
  }

  .services-container {
    grid-template-columns: 1fr;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-container,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-full-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-full-card:nth-child(even) {
    direction: ltr;
  }

  .menu-nav {
    flex-direction: column;
    align-items: center;
  }

  .menu-nav-btn {
    width: 200px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .carousel-btn {
    padding: 0.5rem;
    font-size: 1rem;
  }

  .carousel-btn.prev {
    left: 0.5rem;
  }

  .carousel-btn.next {
    right: 0.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .menu-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .menu-category-content,
  .service-full-content {
    padding: 1.5rem;
  }

  .values-container {
    grid-template-columns: 1fr;
  }

  .social-section .social-icons {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
