* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background-color: #fff7f0;
  color: #3d2a26;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fredoka", cursive;
  font-weight: 600;
}
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #3d2a26;
  position: relative;
}
.section-title::after {
  content: "✨";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
}
.sparkles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.sparkle {
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, #e6c8ff, #f7b9a6);
  border-radius: 50%;
  animation: sparkleFloat 3s ease-out forwards;
}
@keyframes sparkleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) scale(1);
  }
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, #d95d39, #f7b9a6);
  color: #fff;
  box-shadow: 0 8px 25px rgba(217, 93, 57, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(217, 93, 57, 0.4);
}
.btn-secondary {
  background: rgba(0, 0, 0, 0);
  color: #d95d39;
  border: 2px solid #d95d39;
}
.btn-secondary:hover {
  background: #d95d39;
  color: #fff;
  transform: translateY(-3px);
}
.boom-btn {
  position: relative;
  overflow: hidden;
}
.boom-effect {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
  transform: scale(0);
  pointer-events: none;
}
.boom-effect.boom {
  animation: boomAnimation 0.6s ease-out;
}
@keyframes boomAnimation {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 247, 240, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(247, 185, 166, 0.2);
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(255, 247, 240, 0.98);
  box-shadow: 0 5px 20px rgba(61, 42, 38, 0.1);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.logo h1 {
  font-size: 2rem;
  color: #d95d39;
  margin-bottom: -5px;
  font-family: "Fredoka", cursive;
}
.logo span {
  font-size: 0.8rem;
  color: #e6c8ff;
  font-weight: 400;
  letter-spacing: 1px;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-link {
  color: #3d2a26;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}
.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f7b9a6, #e6c8ff);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.nav-link:hover::before,
.nav-link.active::before {
  opacity: 0.2;
}
.nav-link:hover,
.nav-link.active {
  color: #d95d39;
  transform: translateY(-2px);
}
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}
.burger-menu span {
  width: 25px;
  height: 3px;
  background: #d95d39;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 247, 240, 0.98);
  backdrop-filter: blur(10px);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
  border-bottom: 1px solid rgba(247, 185, 166, 0.2);
}
.mobile-menu.active {
  transform: translateX(0);
  top: 80px;
}
.mobile-menu ul {
  list-style: none;
  padding: 2rem;
}
.mobile-menu li {
  margin-bottom: 1rem;
}
.mobile-menu a {
  color: #3d2a26;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  padding: 1rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.mobile-menu a:hover {
  background: linear-gradient(135deg, #f7b9a6, #e6c8ff);
  color: #fff;
  transform: translateX(10px);
}
.hero {
  padding: 156px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(247, 185, 166, 0.1),
    rgba(230, 200, 255, 0.1)
  );
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(230, 200, 255, 0.3), transparent);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e6c8ff, #f7b9a6);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #3d2a26;
  line-height: 1.2;
}
.highlight {
  background: linear-gradient(135deg, #f7b9a6, #e6c8ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  position: relative;
}
.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(61, 42, 38, 0.8);
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
}
.image-stack {
  position: relative;
  height: 500px;
}
.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(61, 42, 38, 0.2);
  border: 3px solid rgba(247, 185, 166, 0.3);
}
.floating-image {
  position: absolute;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(61, 42, 38, 0.3);
  border: 2px solid #fff;
}
.floating-1 {
  width: 120px;
  height: 120px;
  top: -20px;
  right: -20px;
  animation: floatImage1 4s ease-in-out infinite;
}
.floating-2 {
  width: 100px;
  height: 100px;
  bottom: -20px;
  left: -20px;
  animation: floatImage2 5s ease-in-out infinite;
}
@keyframes floatImage1 {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}
@keyframes floatImage2 {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-3deg);
  }
}
.features {
  padding: 80px 0;
  background: rgba(230, 200, 255, 0.05);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(247, 185, 166, 0.2);
  opacity: 0;
  transform: translateY(30px);
}
.feature-card[data-aos="fade-up"].animate-in {
  opacity: 1;
  transform: translateY(0);
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(247, 185, 166, 0.3);
  border-color: #f7b9a6;
}
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f7b9a6;
}
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #3d2a26;
}
.feature-card p {
  color: rgba(61, 42, 38, 0.7);
  line-height: 1.6;
}
.menu-preview {
  padding: 80px 0;
}
.menu-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.9);
}
.category-card[data-aos="zoom-in"].animate-in {
  opacity: 1;
  transform: scale(1);
}
.category-card:hover {
  transform: scale(1.05);
}
.category-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.category-card:hover .category-image img {
  transform: scale(1.1);
}
.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(61, 42, 38, 0.9));
  padding: 2rem;
  color: #fff;
  text-align: center;
}
.category-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.category-overlay p {
  margin-bottom: 1rem;
  opacity: 0.9;
}
.category-btn {
  background: linear-gradient(135deg, #f7b9a6, #e6c8ff);
  color: #fff;
  padding: 8px 16px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.category-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(247, 185, 166, 0.4);
}
.seasonal-specials {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(247, 185, 166, 0.1),
    rgba(230, 200, 255, 0.1)
  );
}
.specials-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.special-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d95d39, #f7b9a6);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.specials-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #3d2a26;
}
.specials-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(61, 42, 38, 0.8);
  line-height: 1.8;
}
.specials-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(61, 42, 38, 0.2);
}
.order-section {
  padding: 80px 0;
  background: #fff;
}
.order-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}
.order-form-wrapper {
  background: rgba(247, 185, 166, 0.05);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid rgba(247, 185, 166, 0.2);
}
.order-form {
  max-width: none;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  margin-bottom: 0.5rem;
  color: #3d2a26;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(247, 185, 166, 0.3);
  border-radius: 12px;
  background: #fff;
  color: #3d2a26;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f7b9a6;
  box-shadow: 0 0 0 3px rgba(247, 185, 166, 0.2);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(61, 42, 38, 0.5);
}
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.3s ease;
}
.radio-label:hover {
  background: rgba(247, 185, 166, 0.1);
}
.radio-label input[type="radio"] {
  display: none;
}
.radio-custom {
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #f7b9a6;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  transition: all 0.3s ease;
}
.radio-label input[type="radio"]:checked + .radio-custom {
  background: #f7b9a6;
  border-color: #d95d39;
}
.radio-label input[type="radio"]:checked + .radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  color: rgba(61, 42, 38, 0.8);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  display: none;
}
.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #f7b9a6;
  border-radius: 4px;
  margin-right: 10px;
  margin-top: 2px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #f7b9a6;
  border-color: #d95d39;
}
.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: bold;
  font-size: 12px;
}
.checkbox-label a {
  color: #d95d39;
  text-decoration: underline;
}
.order-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  margin-top: 1rem;
}
.order-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.info-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 15px;
  border: 2px solid rgba(230, 200, 255, 0.2);
  transition: all 0.3s ease;
}
.info-card:hover {
  border-color: #e6c8ff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(230, 200, 255, 0.2);
}
.info-card h3 {
  margin-bottom: 1rem;
  color: #3d2a26;
  font-size: 1.2rem;
}
.info-card p {
  margin-bottom: 0.5rem;
  color: rgba(61, 42, 38, 0.8);
}
.info-card p:last-child {
  margin-bottom: 0;
}
.info-card a {
  color: #d95d39;
  text-decoration: none;
}
.info-card a:hover {
  text-decoration: underline;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(61, 42, 38, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: #fff;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.modal.active .modal-content {
  transform: scale(1);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 2px solid rgba(247, 185, 166, 0.2);
}
.modal-header h3 {
  color: #3d2a26;
  margin: 0;
  font-size: 1.5rem;
}
.modal-close {
  background: none;
  border: none;
  color: #3d2a26;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.modal-close:hover {
  background: rgba(247, 185, 166, 0.2);
}
.modal-body {
  padding: 1.5rem;
}
.modal-body p {
  color: rgba(61, 42, 38, 0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.modal-body p:last-child {
  margin-bottom: 0;
}
.modal-footer {
  padding: 1.5rem;
  border-top: 2px solid rgba(247, 185, 166, 0.2);
  text-align: center;
}
.footer {
  background: linear-gradient(135deg, #3d2a26, #5d4037);
  color: #fff;
  padding: 60px 0 20px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #f7b9a6;
}
.footer-section p,
.footer-section li {
  color: hsla(0, 0%, 100%, 0.8);
  margin-bottom: 0.5rem;
}
.footer-section ul {
  list-style: none;
}
.footer-section a {
  color: hsla(0, 0%, 100%, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: #f7b9a6;
}
.contact-info p {
  margin-bottom: 0.8rem;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(247, 185, 166, 0.2);
  color: hsla(0, 0%, 100%, 0.6);
}
.error {
  border-color: #d32f2f !important;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.2) !important;
}
.checkbox-group.error .checkmark {
  border-color: #d32f2f;
}
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }
  .nav {
    display: none;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .image-stack {
    height: 400px;
  }
  .floating-1,
  .floating-2 {
    display: none;
  }
  .specials-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .order-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 2rem;
  }
  .menu-categories {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .header-container {
    padding: 1rem 15px;
  }
  .hero {
    padding: 100px 0 60px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
  .features,
  .menu-preview,
  .seasonal-specials,
  .order-section {
    padding: 60px 0;
  }
  .order-form-wrapper {
    padding: 1.5rem;
  }
  .info-card {
    padding: 1rem;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}
.gallery-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(247, 185, 166, 0.1),
    rgba(230, 200, 255, 0.1)
  );
}
.gallery-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #3d2a26;
  font-family: "Fredoka", cursive;
}
.gallery-subtitle {
  font-size: 1.2rem;
  color: rgba(61, 42, 38, 0.8);
}
.gallery-filter {
  padding: 40px 0;
  background: #fff;
  position: sticky;
  top: 80px;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(61, 42, 38, 0.1);
}
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0);
  border: 2px solid #f7b9a6;
  border-radius: 25px;
  color: #3d2a26;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-tab.active,
.filter-tab:hover {
  background: linear-gradient(135deg, #f7b9a6, #e6c8ff);
  color: #fff;
  transform: translateY(-2px);
}
.gallery-section {
  padding: 60px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  grid-auto-rows: 300px;
}
.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  cursor: pointer;
}
.gallery-item[data-aos="fade-up"].animate-in {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item.large {
  grid-row: span 2;
}
.gallery-item.wide {
  grid-column: span 2;
}
.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(61, 42, 38, 0.3);
  z-index: 10;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(61, 42, 38, 0.9));
  padding: 2rem 1.5rem 1.5rem;
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gallery-item:hover .item-overlay {
  transform: translateY(0);
}
.item-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-family: "Fredoka", cursive;
}
.item-overlay p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.item-tag {
  background: linear-gradient(135deg, #f7b9a6, #e6c8ff);
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}
.instagram-cta {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(230, 200, 255, 0.1),
    rgba(247, 185, 166, 0.1)
  );
  text-align: center;
}
.instagram-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #3d2a26;
  font-family: "Fredoka", cursive;
}
.instagram-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(61, 42, 38, 0.8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hashtag {
  display: inline-block;
  background: linear-gradient(135deg, #d95d39, #f7b9a6);
  color: #fff;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Fredoka", cursive;
  box-shadow: 0 10px 30px rgba(217, 93, 57, 0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.order-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #3d2a26, #5d4037);
  color: #fff;
  text-align: center;
}
.order-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: "Fredoka", cursive;
}
.order-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .gallery-title {
    font-size: 2rem;
  }
  .filter-tabs {
    gap: 0.5rem;
  }
  .filter-tab {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    grid-auto-rows: 250px;
  }
  .gallery-item.wide {
    grid-column: span 1;
  }
  .item-overlay {
    padding: 1.5rem 1rem 1rem;
  }
  .instagram-cta h2,
  .order-cta h2 {
    font-size: 2rem;
  }
  .hashtag {
    font-size: 1.2rem;
    padding: 12px 24px;
  }
}
@media (max-width: 480px) {
  .gallery-hero {
    padding: 100px 0 40px;
  }
  .gallery-filter {
    padding: 20px 0;
  }
  .gallery-section {
    padding: 40px 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    grid-auto-rows: 200px;
  }
  .gallery-item.large {
    grid-row: span 1;
  }
  .instagram-cta,
  .order-cta {
    padding: 60px 0;
  }
}
.menu-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(247, 185, 166, 0.1),
    rgba(230, 200, 255, 0.1)
  );
}
.menu-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #3d2a26;
  font-family: "Fredoka", cursive;
}
.menu-subtitle {
  font-size: 1.2rem;
  color: rgba(61, 42, 38, 0.8);
}
.menu-nav {
  padding: 40px 0;
  background: #fff;
  position: sticky;
  top: 80px;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(61, 42, 38, 0.1);
}
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0);
  border: 2px solid #f7b9a6;
  border-radius: 25px;
  color: #3d2a26;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.menu-tab.active,
.menu-tab:hover {
  background: linear-gradient(135deg, #f7b9a6, #e6c8ff);
  color: #fff;
  transform: translateY(-2px);
}
.menu-section {
  padding: 60px 0;
}
.menu-section:nth-child(even) {
  background: rgba(230, 200, 255, 0.05);
}
.category-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #3d2a26;
  font-family: "Fredoka", cursive;
}
.category-description {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(61, 42, 38, 0.7);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.menu-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(61, 42, 38, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.menu-item[data-aos="fade-up"].animate-in {
  opacity: 1;
  transform: translateY(0);
}
.menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(61, 42, 38, 0.2);
}
.item-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.menu-item:hover .item-image img {
  transform: scale(1.1);
}
.item-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
}
.item-badge:not(.new):not(.limited) {
  background: linear-gradient(135deg, #d95d39, #f7b9a6);
}
.item-badge.new {
  background: linear-gradient(135deg, #e6c8ff, #f7b9a6);
}
.item-badge.limited {
  background: linear-gradient(135deg, #d95d39, #8b0000);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.item-content {
  padding: 1.5rem;
}
.item-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #3d2a26;
  font-family: "Fredoka", cursive;
}
.item-content p {
  color: rgba(61, 42, 38, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.item-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #d95d39;
  margin-bottom: 1rem;
}
.item-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.tag {
  background: rgba(247, 185, 166, 0.2);
  color: #d95d39;
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 500;
}
.seasonal-section {
  background: linear-gradient(
    135deg,
    rgba(247, 185, 166, 0.1),
    rgba(230, 200, 255, 0.1)
  );
}
.seasonal-banner {
  background: linear-gradient(135deg, #d95d39, #f7b9a6);
  color: #fff;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 3rem;
}
.banner-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: "Fredoka", cursive;
}
.order-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #3d2a26, #5d4037);
  color: #fff;
  text-align: center;
}
.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: "Fredoka", cursive;
}
.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .menu-title {
    font-size: 2rem;
  }
  .menu-tabs {
    gap: 0.5rem;
  }
  .menu-tab {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  .category-title {
    font-size: 2rem;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .item-content {
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .menu-hero {
    padding: 100px 0 40px;
  }
  .menu-nav {
    padding: 20px 0;
  }
  .menu-section {
    padding: 40px 0;
  }
  .seasonal-banner {
    padding: 1.5rem;
  }
  .order-cta {
    padding: 60px 0;
  }
  .cta-content h2 {
    font-size: 2rem;
  }
}
.legal-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(247, 185, 166, 0.1),
    rgba(230, 200, 255, 0.1)
  );
}
.legal-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #3d2a26;
  font-family: "Fredoka", cursive;
}
.legal-subtitle {
  font-size: 1.2rem;
  color: rgba(61, 42, 38, 0.8);
}
.legal-content {
  padding: 80px 0;
}
.legal-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.legal-text h2 {
  color: #3d2a26;
  margin: 2rem 0 1rem 0;
  font-size: 1.8rem;
  border-bottom: 2px solid #f7b9a6;
  padding-bottom: 0.5rem;
  font-family: "Fredoka", cursive;
}
.legal-text h2:first-child {
  margin-top: 0;
}
.legal-text h3 {
  color: #d95d39;
  margin: 1.5rem 0 0.5rem 0;
  font-size: 1.3rem;
  font-family: "Fredoka", cursive;
}
.legal-text h4 {
  color: #f7b9a6;
  margin: 1rem 0 0.5rem 0;
  font-size: 1.1rem;
  font-family: "Fredoka", cursive;
}
.legal-text p {
  color: rgba(61, 42, 38, 0.9);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.legal-text ul {
  margin-bottom: 1rem;
  padding-left: 0;
  list-style: none;
}
.legal-text li {
  color: rgba(61, 42, 38, 0.9);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}
.legal-text li::before {
  content: "🍰";
  position: absolute;
  left: 0;
  font-size: 1rem;
}
.legal-text strong {
  color: #3d2a26;
  font-weight: 600;
}
.legal-text a {
  color: #d95d39;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.legal-text a:hover {
  color: #f7b9a6;
}
.browser-instructions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.browser-item {
  background: rgba(247, 185, 166, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  border: 2px solid rgba(247, 185, 166, 0.2);
  transition: all 0.3s ease;
}
.browser-item:hover {
  border-color: #f7b9a6;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(247, 185, 166, 0.2);
}
.browser-item h4 {
  color: #d95d39;
  margin-bottom: 0.5rem;
  font-family: "Fredoka", cursive;
}
.browser-item p {
  color: rgba(61, 42, 38, 0.8);
  font-size: 0.9rem;
  margin: 0;
}
.contact-details {
  background: rgba(230, 200, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  border: 2px solid rgba(230, 200, 255, 0.2);
  margin: 1.5rem 0;
}
.contact-details p {
  margin-bottom: 0.5rem;
}
.contact-details p:last-child {
  margin-bottom: 0;
}
.last-updated {
  background: rgba(217, 93, 57, 0.1);
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid #d95d39;
  margin-top: 2rem;
  font-style: italic;
}
@media (max-width: 768px) {
  .legal-title {
    font-size: 2rem;
  }
  .legal-text h2 {
    font-size: 1.5rem;
  }
  .legal-text h3 {
    font-size: 1.2rem;
  }
  .browser-instructions {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .legal-hero {
    padding: 100px 0 40px;
  }
  .legal-title {
    font-size: 1.8rem;
  }
  .legal-content {
    padding: 60px 0;
  }
  .legal-text {
    padding: 0 1rem;
  }
  .browser-item {
    padding: 1rem;
  }
}
.contacts-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(247, 185, 166, 0.1),
    rgba(230, 200, 255, 0.1)
  );
}
.contacts-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #3d2a26;
  font-family: "Fredoka", cursive;
}
.contacts-subtitle {
  font-size: 1.2rem;
  color: rgba(61, 42, 38, 0.8);
}
.contact-info-section {
  padding: 80px 0;
  background: rgba(230, 200, 255, 0.05);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.contact-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(247, 185, 166, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.contact-card[data-aos="fade-up"].animate-in {
  opacity: 1;
  transform: translateY(0);
}
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(247, 185, 166, 0.3);
  border-color: #f7b9a6;
}
.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7b9a6, #e6c8ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #3d2a26;
  font-family: "Fredoka", cursive;
}
.contact-card p {
  color: #d95d39;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.contact-card p a {
  color: #d95d39;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-card p a:hover {
  color: #f7b9a6;
}
.contact-card span {
  color: rgba(61, 42, 38, 0.7);
  font-size: 1.5rem;
}
.contact-form-section {
  padding: 80px 0;
}
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.form-content h2 {
  color: #3d2a26;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-family: "Fredoka", cursive;
}
.form-content p {
  color: rgba(61, 42, 38, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.contact-form {
  background: rgba(247, 185, 166, 0.05);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid rgba(247, 185, 166, 0.2);
}
.contact-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  margin-top: 1rem;
}
.form-image {
  position: relative;
  border-radius: 30px;
}
.form-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
}
.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(61, 42, 38, 0.9));
  padding: 2rem;
  color: #fff;
}
.image-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: "Fredoka", cursive;
}
.location-section {
  padding: 80px 0;
  background: rgba(247, 185, 166, 0.05);
}
.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.location-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid rgba(230, 200, 255, 0.2);
  transition: all 0.3s ease;
}
.location-card:hover {
  border-color: #e6c8ff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(230, 200, 255, 0.2);
}
.location-card h3 {
  margin-bottom: 1rem;
  color: #3d2a26;
  font-size: 1.2rem;
  font-family: "Fredoka", cursive;
}
.location-card p {
  margin-bottom: 0.5rem;
  color: rgba(61, 42, 38, 0.8);
}
.location-card ul {
  list-style: none;
  padding: 0;
}
.location-card li {
  margin-bottom: 1rem;
  color: rgba(61, 42, 38, 0.8);
  padding-left: 1rem;
  position: relative;
}
.location-card li::before {
  content: "🚇";
  position: absolute;
  left: 0;
}
.schedule {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.schedule-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(247, 185, 166, 0.2);
}
.schedule-item.special {
  color: #d95d39;
  font-weight: 600;
}
.map-placeholder {
  background: linear-gradient(135deg, #f7b9a6, #e6c8ff);
  border-radius: 20px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.map-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: "Fredoka", cursive;
}
.map-content p {
  margin-bottom: 2rem;
  opacity: 0.9;
}
.faq-section {
  padding: 80px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 2px solid rgba(247, 185, 166, 0.2);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.faq-item[data-aos="fade-up"].animate-in {
  opacity: 1;
  transform: translateY(0);
}
.faq-item:hover {
  border-color: #f7b9a6;
}
.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(247, 185, 166, 0.05);
  transition: background 0.3s ease;
}
.faq-question:hover {
  background: rgba(247, 185, 166, 0.1);
}
.faq-question h3 {
  font-size: 1rem;
  color: #3d2a26;
  margin: 0;
  font-family: "Fredoka", cursive;
}
.faq-toggle {
  font-size: 1.5rem;
  color: #d95d39;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem;
}
.faq-answer p {
  color: rgba(61, 42, 38, 0.8);
  line-height: 1.6;
  margin: 0;
}
.social-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(230, 200, 255, 0.1),
    rgba(247, 185, 166, 0.1)
  );
  text-align: center;
}
.social-subtitle {
  font-size: 1.1rem;
  color: rgba(61, 42, 38, 0.8);
  margin-bottom: 3rem;
}
.social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 15px;
  text-decoration: none;
  border: 2px solid rgba(247, 185, 166, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.9);
}
.social-link[data-aos="zoom-in"].animate-in {
  opacity: 1;
  transform: scale(1);
}
.social-link:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(247, 185, 166, 0.3);
  border-color: #f7b9a6;
}
.social-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7b9a6, #e6c8ff);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-info h3 {
  color: #3d2a26;
  margin-bottom: 0.2rem;
  font-family: "Fredoka", cursive;
}
.social-info p {
  color: #d95d39;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 768px) {
  .contacts-title {
    font-size: 2rem;
  }
  .contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .form-image {
    transform: none;
    order: -1;
  }
  .form-image:hover {
    transform: scale(1.02);
  }
  .location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .social-links {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .contacts-hero {
    padding: 100px 0 40px;
  }
  .contact-card {
    padding: 1.5rem;
  }
  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .contact-form {
    padding: 1.5rem;
  }
  .location-card {
    padding: 1.5rem;
  }
  .social-link {
    padding: 1rem;
  }
  .social-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}
