/* Base styles and variables */
:root {
  --primary-color: #932724;
  --primary-light: #c53a36;
  --primary-dark: #6a1c1a;
  --secondary-color: #e6b76c;
  --secondary-light: #f0cb96;
  --secondary-dark: #c99c58;
  --background-color: #fff8e6;
  --text-color: #333;
  --accent-color: #5d8c3e;
  --accent-light: #7aad5a;
  --accent-dark: #476c30;
  --font-primary: "Noto Sans Georgian", sans-serif;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 8px 15px rgba(0, 0, 0, 0.2);
  --border-radius: 8px;
  --border-radius-large: 16px;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.8s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.main-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Pattern Background */
.pattern-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M50,30 L70,50 L50,70 L30,50 Z" fill="none" stroke="%23932724" stroke-width="0.5" opacity="0.1"/></svg>');
  background-size: 100px 100px;
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  color: var(--primary-color);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--accent-color);
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all var(--transition-medium);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all var(--transition-medium);
  z-index: -1;
}

.btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn:hover::before {
  left: 100%;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
}

.section-title {
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: hidden;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.logo-wrapper {
  position: relative;
  width: 80px;
  height: 60px;
}

.logo {
  height: 60px;
  width: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform var(--transition-medium);
}

.logo:hover {
  transform: scale(1.1);
}

.site-title {
  position: relative;
  color: var(--primary-color);
  text-shadow: 2px 2px 0 var(--secondary-light);
}

/* Header Animation with Georgian Dancers */
.header-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.dancer-container {
  position: absolute;
  bottom: -20px;
  right: 20%;
  display: flex;
  gap: 15px;
}

.dancer {
  width: 40px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  opacity: 0.7;
}

.dancer-1 {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 60"><circle cx="20" cy="10" r="8" fill="%23f5d0a9"/><rect x="15" y="18" width="10" height="25" fill="%23932724" rx="2"/><rect x="13" y="43" width="5" height="15" fill="%23333"/><rect x="22" y="43" width="5" height="15" fill="%23333"/><circle cx="17" cy="8" r="2" fill="%23333"/><circle cx="23" cy="8" r="2" fill="%23333"/><path d="M17,13 Q20,15 23,13" fill="none" stroke="%23333" stroke-width="1"/></svg>');
  animation: dancerMove1 10s infinite linear;
}

.dancer-2 {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 60"><circle cx="20" cy="10" r="8" fill="%23f5d0a9"/><path d="M15,18 L25,18 L23,43 L17,43 Z" fill="%235d8c3e"/><rect x="13" y="43" width="5" height="15" fill="%23333"/><rect x="22" y="43" width="5" height="15" fill="%23333"/><circle cx="17" cy="8" r="2" fill="%23333"/><circle cx="23" cy="8" r="2" fill="%23333"/><path d="M17,13 Q20,15 23,13" fill="none" stroke="%23333" stroke-width="1"/></svg>');
  animation: dancerMove2 10s infinite linear;
}

.dancer-3 {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 60"><circle cx="20" cy="10" r="8" fill="%23f5d0a9"/><path d="M15,18 L25,18 L25,43 L15,43 Z" fill="%23e6b76c"/><rect x="13" y="43" width="5" height="15" fill="%23333"/><rect x="22" y="43" width="5" height="15" fill="%23333"/><circle cx="17" cy="8" r="2" fill="%23333"/><circle cx="23" cy="8" r="2" fill="%23333"/><path d="M18,12 Q20,14 22,12" fill="none" stroke="%23333" stroke-width="1"/></svg>');
  animation: dancerMove3 10s infinite linear;
}

/* Mobile Dancers Animation */
.mobile-dancers {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.mobile-dancer {
  width: 40px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.mobile-dancer-1 {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 60"><circle cx="20" cy="10" r="8" fill="%23f5d0a9"/><rect x="15" y="18" width="10" height="25" fill="%23932724" rx="2"/><rect x="13" y="43" width="5" height="15" fill="%23333"/><rect x="22" y="43" width="5" height="15" fill="%23333"/><circle cx="17" cy="8" r="2" fill="%23333"/><circle cx="23" cy="8" r="2" fill="%23333"/><path d="M17,13 Q20,15 23,13" fill="none" stroke="%23333" stroke-width="1"/></svg>');
  animation: dancerMove1 10s infinite linear;
}

.mobile-dancer-2 {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 60"><circle cx="20" cy="10" r="8" fill="%23f5d0a9"/><path d="M15,18 L25,18 L23,43 L17,43 Z" fill="%235d8c3e"/><rect x="13" y="43" width="5" height="15" fill="%23333"/><rect x="22" y="43" width="5" height="15" fill="%23333"/><circle cx="17" cy="8" r="2" fill="%23333"/><circle cx="23" cy="8" r="2" fill="%23333"/><path d="M17,13 Q20,15 23,13" fill="none" stroke="%23333" stroke-width="1"/></svg>');
  animation: dancerMove2 10s infinite linear;
}

.mobile-dancer-3 {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 60"><circle cx="20" cy="10" r="8" fill="%23f5d0a9"/><path d="M15,18 L25,18 L25,43 L15,43 Z" fill="%23e6b76c"/><rect x="13" y="43" width="5" height="15" fill="%23333"/><rect x="22" y="43" width="5" height="15" fill="%23333"/><circle cx="17" cy="8" r="2" fill="%23333"/><circle cx="23" cy="8" r="2" fill="%23333"/><path d="M18,12 Q20,14 22,12" fill="none" stroke="%23333" stroke-width="1"/></svg>');
  animation: dancerMove3 10s infinite linear;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  bottom: 0;
  left: 0;
  transition: width var(--transition-medium);
}

.nav-link:hover::after {
  width: 100%;
}

.cart-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: bold;
}

.language-selector {
  display: flex;
  gap: 1rem;
}

.language-selector a {
  padding: 5px 10px;
  border-radius: var(--border-radius);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.language-selector a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transform: translateY(100%);
  transition: transform var(--transition-medium);
  z-index: -1;
}

.language-selector a:hover::before {
  transform: translateY(0);
}

.language-selector a:hover {
  color: white;
}

.language-selector a.active {
  background-color: var(--primary-color);
  color: white;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  transition: all var(--transition-fast);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 999;
  padding: 2rem;
  transform: translateY(-100%);
  transition: transform var(--transition-medium);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  margin-top: 4rem;
}

.mobile-menu li {
  margin-bottom: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  display: block;
  padding: 0.5rem 0;
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--accent-color);
  transform: translateX(10px);
}

.mobile-language-selector {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.mobile-language-selector a {
  padding: 8px 16px;
  border-radius: var(--border-radius);
  font-weight: 600;
}

.mobile-language-selector a.active {
  background-color: var(--primary-color);
  color: white;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  min-height: 90vh;
  background: linear-gradient(135deg, #fff8e6 0%, #f9e8ca 100%);
  position: relative;
  overflow: hidden;
}

/* Georgian Cartoon Scene */
.georgian-cartoon-scene {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.cartoon-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><path d="M0,300 L0,150 L100,200 L200,100 L300,180 L400,80 L500,200 L600,120 L700,180 L800,100 L900,200 L1000,150 L1000,300 Z" fill="%235d8c3e" opacity="0.2"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.cartoon-village {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200"><path d="M50,200 L50,150 L80,150 L80,200 Z" fill="%23932724" opacity="0.3"/><path d="M100,200 L100,130 L150,100 L200,130 L200,200 Z" fill="%23932724" opacity="0.3"/><path d="M250,200 L250,140 L300,140 L300,200 Z" fill="%23932724" opacity="0.3"/><path d="M350,200 L350,120 L400,80 L450,120 L450,200 Z" fill="%23932724" opacity="0.3"/><path d="M500,200 L500,150 L550,150 L550,200 Z" fill="%23932724" opacity="0.3"/><path d="M600,200 L600,130 L650,100 L700,130 L700,200 Z" fill="%23932724" opacity="0.3"/><path d="M750,200 L750,140 L800,140 L800,200 Z" fill="%23932724" opacity="0.3"/><path d="M850,200 L850,120 L900,80 L950,120 L950,200 Z" fill="%23932724" opacity="0.3"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.cartoon-character {
  position: absolute;
  width: 80px;
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.character-tamada {
  bottom: 10%;
  left: 20%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 120"><circle cx="40" cy="30" r="20" fill="%23f5d0a9"/><path d="M25,50 L55,50 L55,100 L25,100 Z" fill="%23932724"/><rect x="20" y="100" width="15" height="20" fill="%23333"/><rect x="45" y="100" width="15" height="20" fill="%23333"/><circle cx="30" cy="25" r="5" fill="%23333"/><circle cx="50" cy="25" r="5" fill="%23333"/><path d="M30,40 Q40,45 50,40" fill="none" stroke="%23333" stroke-width="2"/><path d="M15,60 L25,50 M55,50 L65,60" fill="none" stroke="%23f5d0a9" stroke-width="5"/><path d="M30,15 L35,10 M50,10 L55,15" fill="none" stroke="%23333" stroke-width="2"/></svg>');
  animation: characterFloat 5s infinite ease-in-out;
}

.character-dancer {
  bottom: 10%;
  left: 40%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 120"><circle cx="40" cy="30" r="20" fill="%23f5d0a9"/><path d="M25,50 L55,50 L50,100 L30,100 Z" fill="%235d8c3e"/><rect x="20" y="100" width="15" height="20" fill="%23333"/><rect x="45" y="100" width="15" height="20" fill="%23333"/><circle cx="30" cy="25" r="5" fill="%23333"/><circle cx="50" cy="25" r="5" fill="%23333"/><path d="M30,40 Q40,45 50,40" fill="none" stroke="%23333" stroke-width="2"/><path d="M15,60 L25,50 M55,50 L65,60" fill="none" stroke="%23f5d0a9" stroke-width="5"/></svg>');
  animation: characterDance 3s infinite ease-in-out;
}

.character-musician {
  bottom: 10%;
  left: 60%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 120"><circle cx="40" cy="30" r="20" fill="%23f5d0a9"/><path d="M25,50 L55,50 L55,100 L25,100 Z" fill="%23e6b76c"/><rect x="20" y="100" width="15" height="20" fill="%23333"/><rect x="45" y="100" width="15" height="20" fill="%23333"/><circle cx="30" cy="25" r="5" fill="%23333"/><circle cx="50" cy="25" r="5" fill="%23333"/><path d="M35,40 Q40,42 45,40" fill="none" stroke="%23333" stroke-width="2"/><path d="M15,60 L25,50 M55,50 L65,60" fill="none" stroke="%23f5d0a9" stroke-width="5"/><path d="M10,70 L70,70" fill="none" stroke="%23333" stroke-width="2"/></svg>');
  animation: characterPlay 4s infinite ease-in-out;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
  position: relative;
  z-index: 2;
}

.hero-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 600px;
  position: relative;
}

.hero-image {
  flex: 1;
  position: relative;
  z-index: 2;
}

.restaurant-image-container {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  animation: float 6s ease-in-out infinite;
}

.restaurant-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.restaurant-image-container:hover .restaurant-image {
  transform: scale(1.05);
}

.decorative-element {
  position: absolute;
  opacity: 0.7;
  pointer-events: none;
}

.wine-glass {
  bottom: 10%;
  left: 5%;
  animation: sway 4s ease-in-out infinite;
}

.grape {
  top: 15%;
  right: 10%;
  animation: rotate 10s linear infinite;
}

.georgian-ornament {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 3;
}

.georgian-ornament.top {
  top: -2px;
  bottom: auto;
  transform: rotate(180deg);
}

.ornament-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 3s linear forwards;
}

/* Menu Section */
.menu-section {
  padding: 6rem 2rem;
  background-color: white;
  position: relative;
}

/* Georgian Chef Character */
.georgian-chef-character {
  position: absolute;
  top: 100px;
  right: 5%;
  width: 120px;
  height: 180px;
  z-index: 10;
}

.chef-body {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 80px;
  background-color: white;
  border-radius: 10px;
  border: 2px solid var(--primary-color);
}

.chef-head {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: #f5d0a9;
  border-radius: 50%;
}

.chef-hat {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 30px;
  background-color: white;
  border-radius: 10px 10px 0 0;
  animation: chefHatBob 3s infinite ease-in-out;
}

.chef-arm {
  position: absolute;
  width: 40px;
  height: 10px;
  background-color: #f5d0a9;
}

.chef-arm.left {
  bottom: 60px;
  left: 10px;
  transform-origin: left center;
  animation: chefArmLeft 3s infinite ease-in-out;
}

.chef-arm.right {
  bottom: 60px;
  right: 10px;
  transform-origin: right center;
  animation: chefArmRight 3s infinite ease-in-out;
}

.chef-speech {
  position: absolute;
  top: 20px;
  left: -120px;
  background-color: white;
  padding: 10px 15px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  max-width: 150px;
  animation: fadeIn 1s ease 1s forwards, float 4s ease-in-out 1s infinite;
}

.chef-speech::after {
  content: "";
  position: absolute;
  bottom: 15px;
  right: -10px;
  border-width: 10px 0 10px 10px;
  border-style: solid;
  border-color: transparent transparent transparent white;
}

.menu-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.category-btn {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.category-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all var(--transition-medium);
}

.category-btn:hover::before {
  left: 100%;
}

.category-btn:hover,
.category-btn.active {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-item {
  perspective: 1000px;
}

.menu-item-inner {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition-medium);
  transform-style: preserve-3d;
}

.menu-item:hover .menu-item-inner {
  transform: translateY(-10px) rotateY(5deg);
  box-shadow: var(--shadow-strong);
}

.menu-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.menu-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.menu-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5));
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.menu-item:hover .menu-image-overlay {
  opacity: 1;
}

.menu-details {
  padding: 1.5rem;
  position: relative;
}

.menu-details h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.menu-details h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width var(--transition-medium);
}

.menu-item:hover .menu-details h3::after {
  width: 100%;
}

.price {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.menu-item-decoration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12,2 L15,8 L22,9 L17,14 L18,21 L12,17.5 L6,21 L7,14 L2,9 L9,8 Z" fill="%23e6b76c" opacity="0.3"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  transition: all var(--transition-medium);
}

.menu-item:hover .menu-item-decoration {
  transform: rotate(360deg);
  opacity: 1;
}

/* Order Form */
.order-form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quantity-control {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  background-color: var(--secondary-color);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.quantity-btn:hover {
  background-color: var(--primary-color);
  transform: scale(1.1);
}

.quantity-input {
  width: 50px;
  height: 30px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  margin: 0 0.5rem;
}

.add-to-cart-btn {
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.add-to-cart-btn:hover {
  background-color: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Cart Section */
.cart-section {
  padding: 6rem 2rem;
  background-color: var(--background-color);
  min-height: 50vh;
}

.empty-cart {
  text-align: center;
  padding: 3rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

.empty-cart-icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.empty-cart-message {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cart-container {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.cart-table th,
.cart-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.cart-table th {
  background-color: var(--primary-color);
  color: white;
}

.cart-table tbody tr:hover {
  background-color: #f9f9f9;
}

.cart-total-label {
  text-align: right;
  font-weight: bold;
}

.cart-total-amount {
  font-weight: bold;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.remove-item {
  color: var(--primary-color);
  transition: all var(--transition-fast);
}

.remove-item:hover {
  color: var(--primary-light);
  transform: scale(1.2);
}

.cart-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.order-form-container {
  background-color: var(--background-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-top: 2rem;
}

.order-form-container h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.place-order-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.place-order-form .form-group:last-child {
  grid-column: 1 / -1;
}

.place-order-form button {
  grid-column: 1 / -1;
  justify-self: end;
}

/* Order Confirmation Section */
.order-confirmation-section {
  padding: 6rem 2rem;
  background-color: white;
  min-height: 50vh;
  display: none;
}

.order-confirmation-section.active {
  display: block;
}

.confirmation-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.confirmation-icon {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.confirmation-title {
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.confirmation-details {
  text-align: left;
  margin-bottom: 2rem;
  display: inline-block;
}

.confirmation-details p {
  margin-bottom: 0.5rem;
}

.order-items {
  text-align: left;
  margin-bottom: 2rem;
}

.order-items h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.order-items ul {
  list-style: none;
}

.order-items li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed #ddd;
}

.confirmation-message {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.wine-bottle-animation {
  position: absolute;
  bottom: 50px;
  left: 5%;
  width: 150px;
  height: 200px;
  perspective: 1000px;
}

.wine-bottle {
  position: relative;
  width: 40px;
  height: 150px;
  margin: 0 auto;
  transform-style: preserve-3d;
  animation: bottleWobble 5s ease-in-out infinite;
}

.wine-bottle-body {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80%;
  background-color: var(--primary-dark);
  border-radius: 5px 5px 10px 10px;
}

.wine-bottle-neck {
  position: absolute;
  bottom: 80%;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 15%;
  background-color: var(--primary-dark);
}

.wine-bottle-cap {
  position: absolute;
  bottom: 95%;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 5%;
  background-color: var(--secondary-dark);
  border-radius: 2px;
}

.wine-glass-container {
  position: absolute;
  bottom: 0;
  right: -50px;
  width: 60px;
  height: 80px;
  perspective: 500px;
}

.wine-glass {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.wine-glass-stem {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10%;
  height: 40%;
  background-color: rgba(255, 255, 255, 0.7);
}

.wine-glass-bowl {
  position: absolute;
  bottom: 40%;
  left: 0;
  width: 100%;
  height: 60%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50% / 30% 30% 70% 70%;
}

.wine-liquid {
  position: absolute;
  bottom: 42%;
  left: 5%;
  width: 90%;
  height: 0%;
  background-color: rgba(147, 39, 36, 0.7);
  border-radius: 50% / 0% 0% 50% 50%;
  animation: fillGlass 5s ease-in-out 2s forwards;
}

/* About Section */
.about-section {
  display: flex;
  align-items: center;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #fff8e6 0%, #f9e8ca 100%);
  position: relative;
}

.about-content {
  flex: 1;
  padding-right: 2rem;
  position: relative;
}

.about-text-container {
  position: relative;
  z-index: 2;
}

.about-text-container p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.tamada {
  position: absolute;
  bottom: -30px;
  right: 30px;
  transform: rotate(10deg);
  animation: sway 5s ease-in-out infinite;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image-frame {
  position: relative;
  padding: 20px;
  background-color: white;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  transform: rotate(-3deg);
  transition: transform var(--transition-medium);
}

.about-image-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

.georgian-scene {
  width: 100%;
  height: auto;
  border-radius: calc(var(--border-radius) - 10px);
  display: block;
}

.frame-decoration {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.7;
}

.frame-decoration.top-left {
  top: -10px;
  left: -10px;
}

.frame-decoration.top-right {
  top: -10px;
  right: -10px;
}

.frame-decoration.bottom-left {
  bottom: -10px;
  left: -10px;
}

.frame-decoration.bottom-right {
  bottom: -10px;
  right: -10px;
}

.animated-note {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 150px;
  height: 150px;
  transform: rotate(15deg);
  animation: float 4s ease-in-out infinite;
  z-index: 10;
}

.note-paper {
  width: 100%;
  height: 100%;
  background-color: var(--secondary-light);
  padding: 15px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.note-paper p {
  margin: 0;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.note-pin {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.georgian-dancers {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
}

.dancer {
  position: relative;
  width: 50px;
  height: 100px;
}

.dancer-head {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background-color: #f5d0a9;
  border-radius: 50%;
}

.dancer-body {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 5px;
}

.dancer-arm {
  position: absolute;
  top: 25px;
  width: 30px;
  height: 5px;
  background-color: #f5d0a9;
}

.dancer-arm.left {
  left: 0;
  transform-origin: left center;
  animation: armWaveLeft 2s ease-in-out infinite;
}

.dancer-arm.right {
  right: 0;
  transform-origin: right center;
  animation: armWaveRight 2s ease-in-out infinite;
}

.dancer-leg {
  position: absolute;
  top: 60px;
  width: 5px;
  height: 40px;
  background-color: #333;
}

.dancer-leg.left {
  left: 15px;
  transform-origin: top center;
  animation: legKickLeft 2s ease-in-out infinite;
}

.dancer-leg.right {
  right: 15px;
  transform-origin: top center;
  animation: legKickRight 2s ease-in-out infinite;
}

.dancer-man {
  animation: dancerJump 2s ease-in-out infinite;
}

.dancer-woman {
  animation: dancerSpin 4s ease-in-out infinite;
}

/* Contact Section */
.contact-section {
  padding: 6rem 2rem;
  background-color: white;
  position: relative;
}

.contact-container {
  display: flex;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info {
  flex: 1;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-medium);
}

.info-item:hover {
  transform: translateX(10px);
}

.icon {
  margin-right: 1rem;
  color: var(--primary-color);
}

.map-container {
  margin-top: 2rem;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-link {
  display: block;
  position: relative;
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
}

.map-caption {
  text-align: center;
  padding: 10px;
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  transition: background-color var(--transition-medium);
}

.map-link:hover .map-caption {
  background-color: var(--accent-color);
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 30px;
  background-color: var(--primary-color);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  animation: pinBounce 2s ease-in-out infinite;
  pointer-events: none;
}

.map-pin::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}

.contact-form {
  flex: 2;
  background-color: var(--background-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-dark);
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  transition: border-color var(--transition-medium), box-shadow var(--transition-medium);
  position: relative;
  z-index: 2;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(147, 39, 36, 0.2);
}

.input-animation {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-medium);
  z-index: 1;
}

.form-group:hover .input-animation {
  width: 100%;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.btn-icon {
  transition: transform var(--transition-medium);
}

.submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

.georgian-hat {
  position: absolute;
  bottom: 50px;
  right: 50px;
  width: 80px;
  height: 60px;
  perspective: 500px;
  animation: float 5s ease-in-out infinite;
}

.hat-body {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70%;
  background-color: var(--primary-dark);
  border-radius: 5px 5px 10px 10px;
  transform: rotateX(20deg);
}

.hat-top {
  position: absolute;
  bottom: 70%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 30%;
  background-color: var(--primary-color);
  border-radius: 50% 50% 0 0;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: white;
  padding: 4rem 2rem 2rem;
  position: relative;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-small {
  height: 40px;
  width: auto;
  animation: pulse 3s infinite;
}

.footer-hours,
.footer-social {
  flex: 1;
  min-width: 200px;
}

.footer-hours h4,
.footer-social h4 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.footer-hours h4::after,
.footer-social h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: var(--secondary-color);
}

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

.social-icon {
  color: white;
  transition: all var(--transition-medium);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  transform: translateY(-5px) rotate(10deg);
  color: var(--secondary-color);
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-ornament {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 50px;
  transform: translateY(-50%);
  opacity: 0.2;
  pointer-events: none;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 100;
  opacity: 0;
  transform: translateY(100px);
  transition: all var(--transition-medium);
  cursor: pointer;
}

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

.back-to-top:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity var(--transition-medium);
}

.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

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

.preloader-logo {
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

.preloader-image {
  width: 100px;
  height: 100px;
}

.preloader-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.preloader-spinner {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.spinner-dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.spinner-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.spinner-dot:nth-child(2) {
  animation-delay: -0.16s;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero,
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-content,
  .about-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .contact-container {
    flex-direction: column;
  }

  .decorative-element {
    display: none;
  }

  /* Keep animations on tablet */
  .georgian-chef-character {
    position: relative;
    top: auto;
    right: auto;
    margin: 0 auto 30px;
  }

  .wine-bottle-animation {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 50px auto;
  }

  .georgian-dancers {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 50px auto;
    justify-content: center;
  }

  .georgian-hat {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 30px auto;
  }
  
  .header-animation {
    display: block;
  }
  
  .georgian-cartoon-scene {
    display: block;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  .logo-container {
    margin-bottom: 0;
  }

  nav {
    display: none;
  }

  .language-selector {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-hours h4::after,
  .footer-social h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons {
    justify-content: center;
  }
  
  /* Mobile animations */
  .mobile-dancers {
    display: flex;
  }
  
  /* Keep cartoon characters visible on mobile */
  .cartoon-character {
    display: block;
  }
  
  .georgian-cartoon-scene {
    display: block;
  }
  
  .cart-table {
    font-size: 0.9rem;
  }
  
  .cart-table th,
  .cart-table td {
    padding: 0.5rem;
  }
}

@media (max-width: 576px) {
  .hero-content h2 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .animated-note {
    display: none;
  }
  
  /* Ensure mobile animations are visible */
  .mobile-dancers {
    display: flex;
  }
  
  .cart-table {
    display: block;
    overflow-x: auto;
  }
  
  .place-order-form {
    grid-template-columns: 1fr;
  }

.google-reviews-text {
    background: linear-gradient(45deg, #4285f4, #34a853);
    color: white !important;
    transition: all 0.3s ease;
    width: auto !important;
    height: 40px !important;
    padding: 0 12px !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.google-reviews-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
}

.google-g {
    font-family: 'Product Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.reviews-text {
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.google-reviews-text:hover {
    background: linear-gradient(45deg, #34a853, #4285f4);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(66, 133, 244, 0.4);
}
}