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

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.6;
  color: #2c1810;
  background-color: #f8f4f0;
  font-weight: 400;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
}

body.mobile-menu-open {
  overflow: hidden;
}

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

/* Pizzeria Header */
.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: visible;
}

.header-logo-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 6px rgba(139, 69, 19, 0.3));
  position: relative;
  z-index: 10;
}

.header-logo-image:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 6px 12px rgba(184, 134, 11, 0.4));
}

.logo-text h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #8b4513;
  margin: 0;
  letter-spacing: -0.025em;
  text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.2);
}

/* Pizzeria Header */
header {
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
  backdrop-filter: blur(20px);
  padding: 0.4rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #d2691e;
  box-shadow: 0 2px 15px rgba(139, 69, 19, 0.25);
  overflow: visible;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
}

.logo-text h1 {
  color: #ffd700;
  font-family: 'Georgia', serif;
  font-size: 1.8rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  margin: 0;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.desktop-nav ul {
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 500;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-family: 'Georgia', serif;
  border: 1px solid transparent;
}

.desktop-nav a:hover {
  background-color: rgba(255, 215, 0, 0.15);
  color: #fff;
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-1px);
}

/* Mobile Navigation Container */
.mobile-nav-container {
  display: none;
  align-items: center;
  gap: 1rem;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
  transition: all 0.3s ease;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #ffd700;
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  padding-top: 80px;
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-nav a {
  display: block;
  color: #ffd700;
  text-decoration: none;
  padding: 1.5rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  font-family: 'Georgia', serif;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: rgba(255, 215, 0, 0.2);
  color: #fff;
  padding-left: 2.5rem;
}

.mobile-lang-toggle {
  font-size: 0.8rem;
  padding: 0.4rem 0.6rem;
  min-width: auto;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 215, 0, 0.9);
  border: 2px solid #d2691e;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  color: #8b4513;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  font-weight: 600;
}

.language-toggle:hover {
  background: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Section - Italian Pizzeria Style */
.hero {
  background: 
    linear-gradient(135deg, rgba(139, 69, 19, 0.85) 0%, rgba(160, 82, 45, 0.8) 30%, rgba(205, 133, 63, 0.75) 100%),
    url('https://images.unsplash.com/photo-1513104890138-7c749659a591?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 99, 71, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 69, 19, 0.2) 0%, transparent 70%);
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.hero-logo-container {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.hero-logo-image {
  width: 550px;
  height: 550px;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.hero-logo-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(210, 105, 30, 0.1) 50%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
  z-index: -1;
}

.hero-logo h1 {
  font-size: 4rem;
  color: #ffd700;
  margin: 1rem 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 
    3px 3px 6px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(139, 69, 19, 0.6),
    0 0 40px rgba(139, 69, 19, 0.4);
  font-family: 'Georgia', serif;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ff6347;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(139, 69, 19, 0.6);
  font-family: 'Georgia', serif;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: #f5f5dc;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 
    1px 1px 2px rgba(0, 0, 0, 0.8),
    0 0 10px rgba(139, 69, 19, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  border: none;
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  font-family: 'Georgia', serif;
}

.cta-button.primary {
  background: linear-gradient(135deg, #ffd700 0%, #ff6347 100%);
  color: #8b4513;
  border: 3px solid #d2691e;
}

.cta-button.secondary {
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
  color: #ffd700;
  border: 3px solid #ffd700;
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cta-button.primary:hover {
  background: linear-gradient(135deg, #ff6347 0%, #ffd700 100%);
}

.cta-button.secondary:hover {
  background: linear-gradient(135deg, #ffd700 0%, #ff6347 100%);
  color: #8b4513;
}

/* Menu Section - Pizzeria Style */
.menu-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f4f0 0%, #faf6f2 100%);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(139, 69, 19, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(210, 105, 30, 0.05) 0%, transparent 50%);
}

.menu-section h2 {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 3rem;
  color: #8b4513;
  font-weight: 700;
  font-family: 'Georgia', serif;
  text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.3);
}

.menu-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
  padding: 0 1rem;
}

.menu-nav-btn {
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
  border: 2px solid #d2691e;
  color: #ffd700;
  padding: 1rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-family: 'Georgia', serif;
  box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
}

.menu-nav-btn:hover,
.menu-nav-btn.active {
  background: linear-gradient(135deg, #ffd700 0%, #ff6347 100%);
  color: #8b4513;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(139, 69, 19, 0.4);
}

.menu-category {
  margin-bottom: 6rem;
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.1);
}

.menu-category h3 {
  font-size: 2.8rem;
  color: #8b4513;
  margin-bottom: 2.5rem;
  text-align: center;
  font-weight: 700;
  font-family: 'Georgia', serif;
  text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.2);
}

.sub-category {
  font-size: 1.8rem;
  color: #8b4513;
  margin: 3rem 0 2rem 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff6347 100%);
  border-radius: 15px;
  border-left: 6px solid #8b4513;
  font-weight: 600;
  font-family: 'Georgia', serif;
  box-shadow: 0 4px 8px rgba(139, 69, 19, 0.2);
}

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

.menu-item {
  background: linear-gradient(135deg, #ffffff 0%, #faf6f2 100%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.15);
  border: 2px solid #d2691e;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8b4513, #ffd700, #ff6347);
}

.menu-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(139, 69, 19, 0.25);
  border-color: #ff6347;
}

.menu-item.featured {
  background: linear-gradient(135deg, #ffd700 0%, #ff6347 100%);
  color: #8b4513;
  border: 3px solid #8b4513;
}

.menu-item.featured h4 {
  color: #8b4513;
  font-size: 1.8rem;
}

.menu-item.small {
  padding: 1.5rem;
  text-align: center;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-item.small h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  line-height: 1.4;
}

.menu-item h4 {
  color: #8b4513;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: 'Georgia', serif;
}

.menu-item p {
  color: #654321;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
}

.menu-item .time {
  color: #dc2626;
  font-weight: 600;
  font-style: italic;
}

.price {
  font-weight: 700;
  color: #8b4513;
  font-size: 1.1rem;
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff6347 100%);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  border: 2px solid #8b4513;
  font-family: 'Georgia', serif;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.menu-item.small .price {
  position: static;
  display: inline-block;
  margin-top: 1rem;
  font-size: 1rem;
  padding: 0.3rem 0.6rem;
}

/* About Section - Pizzeria Style */
.about-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
  color: #f5f5dc;
}

.about-section h2 {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 3rem;
  color: #ffd700;
  font-weight: 700;
  font-family: 'Georgia', serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.about-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: #f5f5dc;
  font-weight: 400;
}

/* Location Section */
.location-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8f4f0 0%, #faf6f2 100%);
}

.location-section h2 {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 3rem;
  color: #8b4513;
  font-weight: 700;
  font-family: 'Georgia', serif;
  text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.3);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-block {
  padding: 2.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #faf6f2 100%);
  border-radius: 15px;
  border: 2px solid #d2691e;
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.15);
}

.info-block h3 {
  color: #8b4513;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: 'Georgia', serif;
}

.info-block p {
  color: #654321;
  line-height: 1.6;
  font-size: 1.1rem;
}

.phone-link {
  color: #ff6347;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
}

.phone-link:hover {
  text-decoration: underline;
  color: #8b4513;
}

.hours p {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.2);
  border: 3px solid #d2691e;
}

/* Contact Section */
.contact-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
  text-align: center;
  color: #ffd700;
}

.contact-section h2 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  font-family: 'Georgia', serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #f5f5dc;
}

.call-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff6347 100%);
  color: #8b4513;
  text-decoration: none;
  padding: 2rem 4rem;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 3px solid #8b4513;
  font-family: 'Georgia', serif;
}

.call-button:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.phone-icon {
  font-size: 1.8rem;
  animation: bounce 2s ease-in-out infinite;
}

.contact-note {
  font-size: 1.1rem;
  color: #f5f5dc;
  margin-top: 2rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%);
  color: #ffd700;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-image {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.footer-logo span {
  font-weight: 700;
  color: #ffd700;
  font-size: 1.3rem;
  font-family: 'Georgia', serif;
}

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

.footer-nav a {
  color: #f5f5dc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  font-family: 'Georgia', serif;
}

.footer-nav a:hover {
  color: #ffd700;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.footer-bottom p {
  color: #d2691e;
  font-size: 0.9rem;
  font-family: 'Georgia', serif;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #ffd700 0%, #ff6347 100%);
  color: #8b4513;
  border: 3px solid #8b4513;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: linear-gradient(135deg, #ff6347 0%, #ffd700 100%);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  header {
    padding: 0.4rem 0;
    min-height: 60px;
  }

  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    height: 100%;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
  }

  .logo-text h1 {
    font-size: 1.6rem;
    line-height: 1.2;
    margin: 0;
  }

  .header-logo-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }

  /* Mobile nav container styling */
  .mobile-nav-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
  }

  .mobile-lang-toggle {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
    min-width: auto;
    height: 36px;
    border-radius: 6px;
  }

  .mobile-menu-toggle {
    width: 32px;
    height: 24px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
  }

  .hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #ffd700;
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
  }

  /* Hide desktop navigation */
  .desktop-nav {
    display: none;
  }

  /* Show mobile navigation */
  .mobile-nav {
    display: block;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 40px;
    min-height: 100vh;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-logo h1 {
    font-size: 2.5rem;
    margin: 1rem 0;
    line-height: 1.2;
  }

  .hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }

  .cta-button {
    width: 85%;
    max-width: 300px;
    padding: 1.3rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
  }

  .menu-section {
    padding: 4rem 0;
  }

  .menu-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .menu-nav {
    gap: 0.6rem;
    padding: 0 1rem;
    margin-bottom: 3rem;
  }

  .menu-nav-btn {
    padding: 0.8rem 1.3rem;
    font-size: 0.9rem;
    border-radius: 20px;
    min-width: fit-content;
    white-space: nowrap;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .menu-item {
    padding: 1.8rem;
    border-radius: 12px;
  }

  .menu-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .menu-item p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .price {
    font-size: 1.1rem;
    padding: 0.5rem 0.8rem;
    top: 1rem;
    right: 1rem;
  }

  .sub-category {
    font-size: 1.4rem;
    margin: 2.5rem 1rem 1.5rem 1rem;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
  }

  .about-section, .location-section, .contact-section {
    padding: 5rem 0;
  }

  .about-section h2, .location-section h2, .contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }

  .about-content {
    padding: 2.5rem 2rem;
    margin: 0 1rem;
    border-radius: 15px;
  }

  .about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .info-block {
    padding: 2.2rem 1.8rem;
    margin: 0 1rem;
    border-radius: 12px;
  }

  .info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }

  .info-block p {
    font-size: 1.1rem;
  }

  .map-container {
    margin: 0 1rem;
    border-radius: 12px;
  }

  .call-button {
    padding: 1.6rem 2.8rem;
    font-size: 1.3rem;
    margin: 0 1rem;
    border-radius: 40px;
    max-width: 320px;
  }

  .contact-content p {
    font-size: 1.2rem;
    padding: 0 1rem;
  }

  .contact-note {
    padding: 0 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
    padding: 0 1rem;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.8rem;
  }

  .footer-nav a {
    font-size: 1rem;
  }

  .footer-bottom {
    padding: 2rem 1rem 0;
  }

  .hero-logo-image {
    width: 350px;
    height: 350px;
  }

  .hero-logo-container::before {
    width: 450px;
    height: 450px;
  }

  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

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

  header {
    padding: 0.3rem 0;
  }

  header .container {
    padding: 0 0.8rem;
  }

  .logo-text h1 {
    font-size: 1.4rem;
  }

  .header-logo-image {
    width: 55px;
    height: 55px;
  }

  .mobile-lang-toggle {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
    height: 32px;
  }

  .mobile-menu-toggle {
    width: 28px;
    height: 20px;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-logo-image {
    width: 280px;
    height: 280px;
  }

  .hero-logo-container::before {
    width: 380px;
    height: 380px;
  }

  .hero-logo h1 {
    font-size: 2.2rem;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .cta-button {
    width: 90%;
    padding: 1.2rem 1.8rem;
    font-size: 1rem;
  }

  .menu-section h2,
  .about-section h2,
  .location-section h2,
  .contact-section h2 {
    font-size: 2.2rem;
    padding: 0 0.5rem;
  }

  .menu-nav {
    padding: 0 0.5rem;
  }

  .menu-nav-btn {
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
  }

  .menu-grid {
    padding: 0 0.5rem;
  }

  .menu-item {
    padding: 1.5rem;
  }

  .sub-category {
    font-size: 1.2rem;
    margin: 2rem 0.5rem 1rem 0.5rem;
    padding: 1rem 1.2rem;
  }

  .about-content, .info-block {
    padding: 1.8rem 1.2rem;
    margin: 0 0.5rem;
  }

  .map-container {
    margin: 0 0.5rem;
  }

  .call-button {
    padding: 1.4rem 2.2rem;
    font-size: 1.2rem;
    margin: 0 0.5rem;
    max-width: 280px;
  }

  .contact-content p, .contact-note {
    padding: 0 0.5rem;
  }

  .footer-content {
    padding: 0 0.5rem;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}