@import url(https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap);
:root {
  --primary-orange: #e07b39;
  --primary-green: #556b2f;
  --cream: #fdf6ed;
  --gold: #d4a017;
  --dark-text: #2c2c2c;
  --light-text: #666;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--cream);
  overflow-x: hidden;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(253, 246, 237, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(224, 123, 57, 0.2);
}
.header.scrolled {
  background: rgba(253, 246, 237, 0.98);
  box-shadow: 0 2px 20px var(--shadow);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
.logo {
  font-family: "Yeseva One", cursive;
  font-size: 2.2rem;
  color: var(--primary-orange);
  text-decoration: none;
  position: relative;
}
.logo::after {
  content: "🌍";
  position: absolute;
  top: -5px;
  right: -30px;
  font-size: 1.2rem;
  animation: rotate 8s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav-menu a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  transition: all 0.3s ease;
}
.nav-menu a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-orange), var(--gold));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-menu a:hover::before {
  width: 100%;
}
.nav-menu a:hover {
  color: var(--primary-orange);
}
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}
.burger span {
  width: 25px;
  height: 3px;
  background: var(--primary-orange);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, #f5ede0 100%);
  overflow: hidden;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q50,5 80,20 Q95,50 80,80 Q50,95 20,80 Q5,50 20,20" fill="none" stroke="%23E07B39" stroke-width="0.5"/><circle cx="30" cy="30" r="2" fill="%23556B2F"/><circle cx="70" cy="70" r="1.5" fill="%23D4A017"/></svg>');
  animation: float-bg 20s ease-in-out infinite;
}
@keyframes float-bg {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}
.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 2;
  position: relative;
}
.hero-title {
  font-family: "Yeseva One", cursive;
  font-size: 4rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  animation: slideInUp 1s ease-out;
}
.hero-subtitle {
  font-size: 1.8rem;
  color: var(--primary-green);
  margin-bottom: 2rem;
  font-weight: 500;
  animation: slideInUp 1s ease-out 0.2s both;
}
.hero-description {
  font-size: 1.3rem;
  color: var(--light-text);
  margin-bottom: 3rem;
  line-height: 1.8;
  animation: slideInUp 1s ease-out 0.4s both;
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideInUp 1s ease-out 0.6s both;
}
.btn {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary-orange), var(--gold));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(224, 123, 57, 0.3);
}
.btn-secondary {
  background: rgba(0, 0, 0, 0);
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.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: left 0.5s ease;
}
.btn:hover::before {
  left: 100%;
}
.world-flavors {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.flavor-point {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  animation: pulse 2s infinite;
}
.flavor-point:nth-child(1) {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}
.flavor-point:nth-child(2) {
  background: linear-gradient(135deg, #feca57, #ff9ff3);
}
.flavor-point:nth-child(3) {
  background: linear-gradient(135deg, #48dbfb, #0abde3);
}
.flavor-point:nth-child(4) {
  background: linear-gradient(135deg, #1dd1a1, #10ac84);
}
.flavor-point:nth-child(5) {
  background: linear-gradient(135deg, #a55eea, #8c7ae6);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(224, 123, 57, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(224, 123, 57, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(224, 123, 57, 0);
  }
}
.flavor-point:hover {
  transform: scale(1.2);
  animation: none;
}
.flavor-tooltip {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 4px 15px var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.flavor-point:hover .flavor-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}
.main-content {
  padding-top: 0;
}
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-family: "Yeseva One", cursive;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-orange);
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-orange), var(--gold));
  border-radius: 2px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin: 4rem 0;
}
.feature-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange), var(--gold));
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}
.feature-title {
  font-family: "Yeseva One", cursive;
  font-size: 1.8rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}
.feature-description {
  font-size: 1.1rem;
  color: var(--light-text);
  line-height: 1.7;
}
.legacy {
  padding-top: 0;
}
.subscription-section {
  background: linear-gradient(135deg, var(--primary-green), #6b7c3f);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.subscription-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: sparkle 15s linear infinite;
}
@keyframes sparkle {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-100px) translateY(-100px);
  }
}
.subscription-content {
  position: relative;
  z-index: 2;
}
.subscription-title {
  font-family: "Yeseva One", cursive;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.subscription-description {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.recipe-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow);
  transition: all 0.3s ease;
}
.recipe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.recipe-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.recipe-card:hover .recipe-image {
  transform: scale(1.05);
}
.recipe-content {
  padding: 1.5rem;
}
.recipe-title {
  font-family: "Yeseva One", cursive;
  font-size: 1.5rem;
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
}
.recipe-description {
  color: var(--light-text);
  margin-bottom: 1rem;
}
.recipe-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--primary-green);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.product-content {
  padding: 1.5rem;
}
.product-category {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-title {
  font-family: "Yeseva One", cursive;
  font-size: 1.4rem;
  color: var(--primary-green);
  margin: 0.5rem 0;
}
.product-description {
  color: var(--light-text);
  font-size: 1rem;
  line-height: 1.6;
}
.product-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-orange);
  margin-top: 1rem;
}
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
}
.form-group {
  margin-bottom: 2rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-text);
  font-size: 1.1rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: var(--cream);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 10px rgba(224, 123, 57, 0.2);
  transform: translateY(-2px);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}
.modal-content {
  background: var(--white);
  margin: 10% auto;
  padding: 3rem;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
  animation: modalSlideIn 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
@keyframes modalSlideIn {
  from {
    transform: translateY(-100px) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--light-text);
  transition: color 0.3s ease;
}
.modal-close:hover {
  color: var(--primary-orange);
}
.modal h2 {
  font-family: "Yeseva One", cursive;
  color: var(--primary-orange);
  margin-bottom: 1rem;
  font-size: 2rem;
}
.footer {
  background: linear-gradient(135deg, var(--dark-text), #1a1a1a);
  color: var(--white);
  padding: 3rem 2rem 2rem;
  text-align: center;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section h3 {
  font-family: "Yeseva One", cursive;
  color: var(--primary-orange);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.footer-section p,
.footer-section a {
  color: hsla(0, 0%, 100%, 0.8);
  text-decoration: none;
  line-height: 1.8;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: var(--primary-orange);
}
.footer-bottom {
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  padding-top: 2rem;
  color: hsla(0, 0%, 100%, 0.6);
}
.footer-bottom a {
  text-decoration: none;
  color: hsla(0, 0%, 100%, 0.6);
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(253, 246, 237, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 3rem;
    transition: left 0.3s ease;
    gap: 2rem;
  }
  .nav-menu.active {
    left: 0;
  }
  .burger {
    display: flex;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1.4rem;
  }
  .hero-description {
    font-size: 1.1rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .world-flavors {
    bottom: 5%;
    gap: 1rem;
  }
  .flavor-point {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .section {
    padding: 3rem 1rem;
  }
  .section-title {
    font-size: 30px;
  }
  .features-grid,
  .recipe-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .form-container {
    padding: 2rem;
    margin: 1rem;
  }
  .modal-content {
    margin: 20% auto;
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .nav-container {
    padding: 1rem;
  }
  .logo {
    font-size: 1.8rem;
  }
  .btn {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
  }
}
