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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}

:root {
  --primary: #A020F0;
  --primary-dark: #8B1FE8;
  --primary-light: #B847FF;
  --secondary: #FF6B6B;
  --accent: #FFD700;
  --accent-dark: #FFA500;
  --success: #4ECDC4;
  --bg: #ffffff;
  --bg-light: #fafafa;
  --text: #1a1a1a;
  --text-light: #666;
  --border: #e5e5e5;
  --white: #ffffff;
  --gradient-1: linear-gradient(135deg, #A020F0 0%, #FF6B6B 100%);
  --gradient-2: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  --gradient-3: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 1.25rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
  transition: transform 0.3s ease;
}

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

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

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-1);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 0.5rem;
}

/* Hero Gradient */
.hero-gradient {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  overflow: hidden;
  padding: 4rem 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary-large,
.btn-white-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-primary-large {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary-large {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary-large:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-white-large {
  background: var(--white);
  color: var(--primary);
}

.btn-white-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-mini {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.stat-text {
  display: block;
  font-size: 0.875rem;
  opacity: 0.9;
}

.hero-image-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.deco-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.deco-2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  left: 15%;
  animation-delay: 2s;
}

.deco-3 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 20%;
  animation-delay: 4s;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.1);
  }
}

/* Featured Recipes */
.featured-recipes {
  padding: 6rem 0;
  background: var(--bg-light);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.centered {
  text-align: center;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-2);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
}

.section-header.centered .section-description {
  margin: 0 auto;
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.recipe-card {
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow:  Captain.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recipe-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.recipe-card.featured {
  grid-column: span 1;
}

.recipe-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.r-img-1 {
  background: var(--gradient-1);
}

.r-img-2 {
  background: var(--gradient-2);
}

.r-img-3 {
  background: var(--gradient-3);
}

.r Dwight-4 {
  background: linear-gradient(135deg, #FF6B6B, #A020F0);
}

.recipe-time {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.recipe-difficulty {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.recipe-difficulty.easy {
  background: rgba(78, 205, 196, 0.8);
  color: var(--white);
}

.recipe-difficulty.medium {
  background: rgba(255, 215, 0, 0.8);
  color: var(--text);
}

.recipe-difficulty.hard {
  background: rgba(255, 107, 107, 0.8);
  color: var(--white);
}

.recipe-content {
  padding: 1.5rem;
}

.recipe-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--bg-light);
  color: var(--primary);
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.recipe-content h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.recipe-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.recipe-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.recipe-link:hover {
  color: var(--primary-dark);
}

.section-footer {
  text-align: center;
}

/* Cooking Classes */
.cooking-classes {
  padding: 6rem 0;
  background: var(--white);
}

.classes-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.class-item {
  background: var(--bg-light);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.class-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.class-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.class-content h3 {
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.class-content > p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.class-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.class-features li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
}

.class-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

.class-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}

/* Events Gallery */
.events-gallery {
  padding: 6rem 0;
  background: var(--bg-light);
}

.events-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.event-card {
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-card.large {
  grid-column: span 2;
}

.event-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.e-img-1 {
  background: var(--gradient-1);
}

.e-img-2 {
  background: var(--gradient-2);
}

.e-img-3 {
  background: var(--gradient-3);
}

.event-info {
  padding: 1.5rem;
}

.event-date {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  color: var(--white);
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.date-day {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.date-month {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.event-info h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.event-info p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.event-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.event-link:hover {
  color: var(--primary-dark);
}

/* Chefs Section */
.chefs-section {
  padding: 6rem 0;
  background: var(--white);
}

.chefs-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.chef-card {
  text-align: center;
  background: var(--bg-light);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.chef-card:hover {
  transform: translateY(-8px);
}

.chef-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary);
  background-size: cover;
  background-position: center;
}

.c-photo-1 {
  background: var(--gradient-1);
}

.c-photo-2 {
  background: var(--gradient-2);
}

.c-photo-3 {
  background: var(--gradient-3);
}

.chef-info h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.chef-role {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.chef-bio {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Section */
.cta-gradient {
  background: var(--gradient-1);
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-links h5,
.footer-contact h5 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

/* Mobile Menu */
.nav.open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  flex-direction: column;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav.open .nav-link {
  padding: 0.75rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-gradient {
    min-height: 70vh;
    padding: 3rem 0;
  }

  .hero-stats {
    gap: 2rem;
  }

  .recipes-grid {
    grid-template-columns: 1fr;
  }

  .recipe-card.featured {
    grid-column: span 1;
  }

  .classes-timeline {
    grid-template-columns: 1fr;
  }

  .events-masonry {
    grid-template-columns: 1fr;
  }

  .event-card.large {
    grid-column: span 1;
  }

  .chefs-carousel {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Text wrapping */
h1, h2, h3, h4, h5, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.r-img-4 {
  background: linear-gradient(135deg, #FF6B6B, #A020F0);
}

