/* ============================================
   TWILIGHT STRONGHOLD - CREATIVE ARTISTIC CSS
   Kulinarne skarby odkrywane o zmierzchu
   ============================================ */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2C3E50;
  background: linear-gradient(135deg, #FFF9F0 0%, #FFE8D6 100%);
  overflow-x: hidden;
}

/* CREATIVE TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #6B3410;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.2);
  letter-spacing: 1px;
}

h2 {
  font-size: 36px;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #8B4513, #E8C4A0);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #8B4513;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #2C3E50;
}

a {
  color: #8B4513;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #6B3410;
  transform: translateY(-2px);
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background: linear-gradient(135deg, #6B3410 0%, #8B4513 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(107, 52, 16, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.logo {
  max-width: 180px;
  height: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05) rotate(-2deg);
}

.tagline {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: #F5D9B8;
  font-style: italic;
  text-align: center;
  margin: 0;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.main-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: -1;
}

.main-nav a:hover::before {
  left: 0;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #8B4513, #6B3410);
  color: #FFFFFF;
  border: none;
  padding: 12px 18px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(107, 52, 16, 0.4);
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 25px rgba(107, 52, 16, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #6B3410 0%, #8B4513 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  padding: 8px 16px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 80px 30px 30px;
}

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav a::after {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  padding-left: 30px;
  transform: translateX(0);
}

.mobile-nav a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
  background: linear-gradient(135deg, #8B4513 0%, #E8C4A0 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite;
}

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

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 25px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease;
}

.hero .subheadline,
.hero p {
  color: #FFF9F0;
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero .highlight {
  font-size: 32px;
  font-weight: 700;
  color: #FFD700;
  display: block;
  margin: 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

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

/* ============================================
   BUTTONS (CREATIVE & ARTISTIC)
   ============================================ */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #8B4513, #6B3410);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #8B4513;
  border: 3px solid #8B4513;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.btn-secondary:hover {
  background: #8B4513;
  color: #FFFFFF;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* ============================================
   SECTIONS & SPACING
   ============================================ */

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

/* VALUE PROPOSITION */
.value-proposition {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFFFFF 100%);
  border-radius: 30px;
  padding: 60px 20px;
  box-shadow: 0 10px 40px rgba(139, 69, 19, 0.15);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: space-between;
}

.feature {
  flex: 1 1 calc(50% - 15px);
  min-width: 250px;
  background: linear-gradient(135deg, #FFFFFF, #FFF9F0);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  position: relative;
}

.feature::before {
  content: '✨';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  opacity: 0.3;
  transition: all 0.4s ease;
}

.feature:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(139, 69, 19, 0.25);
  border-color: #E8C4A0;
}

.feature:hover::before {
  opacity: 1;
  transform: scale(1.3) rotate(20deg);
}

.feature h3 {
  margin-bottom: 15px;
  color: #6B3410;
}

.feature p {
  color: #2C3E50;
  line-height: 1.7;
}

/* SERVICES GRID */
.services-grid,
.service-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.service-card,
.service-detail {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F0 100%);
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.15);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::after,
.service-detail::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 196, 160, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.service-card:hover::after,
.service-detail:hover::after {
  opacity: 1;
}

.service-card:hover,
.service-detail:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 50px rgba(139, 69, 19, 0.3);
  border-color: #8B4513;
}

.service-card h3,
.service-detail h2 {
  margin-bottom: 15px;
  color: #6B3410;
  position: relative;
  z-index: 1;
}

.service-card p,
.service-detail p {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #8B4513;
  margin: 20px 0;
  display: block;
  font-family: 'Playfair Display', serif;
}

.savings {
  font-size: 14px;
  color: #27AE60;
  font-weight: 600;
  background: rgba(39, 174, 96, 0.1);
  padding: 5px 12px;
  border-radius: 15px;
  display: inline-block;
  margin-top: 10px;
}

/* ============================================
   TESTIMONIALS & REVIEWS
   ============================================ */

.testimonials {
  background: linear-gradient(135deg, #6B3410 0%, #8B4513 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.testimonials h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
}

.testimonials h2::after {
  background: linear-gradient(90deg, #FFFFFF, #E8C4A0);
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.4s ease;
  border-left: 5px solid #E8C4A0;
}

.testimonial-card:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.testimonial-card p {
  color: #2C3E50;
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

.testimonial-card .author {
  color: #6B3410;
  font-weight: 700;
  font-style: normal;
  margin-top: 10px;
  font-size: 14px;
}

.testimonial-card .author::before {
  content: '— ';
}

/* ============================================
   RECIPE & WORKSHOP CARDS
   ============================================ */

.recipe-grid .recipes,
.workshop-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.recipe-card,
.workshop-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 280px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F0 100%);
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.12);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

.recipe-card::before,
.workshop-card::before {
  content: '🍴';
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  opacity: 0.2;
  transition: all 0.4s ease;
}

.recipe-card:hover::before,
.workshop-card:hover::before {
  opacity: 0.6;
  transform: scale(1.2) rotate(15deg);
}

.recipe-card:hover,
.workshop-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(139, 69, 19, 0.25);
  border-color: #E8C4A0;
}

.recipe-card h3,
.workshop-card h3 {
  color: #6B3410;
  margin-bottom: 10px;
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
  font-size: 14px;
  color: #2C3E50;
}

.recipe-meta span {
  background: rgba(139, 69, 19, 0.1);
  padding: 5px 12px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.date,
.duration,
.instructor {
  font-size: 14px;
  color: #2C3E50;
  margin: 5px 0;
  display: block;
}

/* ============================================
   FILTERS
   ============================================ */

.filters {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFFFFF 100%);
  padding: 40px 20px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.filter-buttons button {
  padding: 12px 24px;
  background: #FFFFFF;
  color: #8B4513;
  border: 2px solid #8B4513;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.filter-buttons button:hover,
.filter-buttons button.active {
  background: #8B4513;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

/* ============================================
   COLLECTIONS & CATEGORIES
   ============================================ */

.collection-grid,
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 40px;
}

.collection-card,
.category {
  flex: 1 1 calc(33.333% - 17px);
  min-width: 250px;
  background: linear-gradient(135deg, #8B4513, #6B3410);
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 8px 25px rgba(107, 52, 16, 0.3);
  color: #FFFFFF;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.collection-card::before,
.category::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  transition: transform 0.6s ease;
}

.collection-card:hover::before,
.category:hover::before {
  transform: translate(25%, 25%);
}

.collection-card:hover,
.category:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 15px 40px rgba(107, 52, 16, 0.5);
}

.collection-card h3,
.category h3 {
  color: #FFFFFF;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.collection-card p {
  color: #F5D9B8;
  position: relative;
  z-index: 1;
}

/* ============================================
   BLOG & POSTS
   ============================================ */

.post-featured {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F0 100%);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 10px 35px rgba(139, 69, 19, 0.2);
  border-left: 6px solid #8B4513;
  margin-top: 30px;
}

.post-featured h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #6B3410;
}

.meta {
  font-size: 14px;
  color: #7F8C8D;
  margin: 15px 0;
  display: block;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.post-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 280px;
  background: linear-gradient(135deg, #FFFFFF, #FFF9F0);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.12);
  transition: all 0.4s ease;
  border-top: 4px solid #E8C4A0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(139, 69, 19, 0.25);
  border-top-color: #8B4513;
}

/* ============================================
   ABOUT & VALUES
   ============================================ */

.brand-story,
.philosophy,
.services-overview {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFFFFF 100%);
  padding: 50px 30px;
  border-radius: 25px;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.1);
}

.brand-essence {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #8B4513;
  font-style: italic;
  text-align: center;
  margin-top: 20px;
  display: block;
}

.values-grid,
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.value,
.benefit {
  flex: 1 1 calc(50% - 15px);
  min-width: 250px;
  background: linear-gradient(135deg, #FFFFFF, #FFF9F0);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value:hover,
.benefit:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(139, 69, 19, 0.2);
  border-color: #E8C4A0;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: space-around;
}

.stat {
  flex: 1 1 calc(25% - 23px);
  min-width: 200px;
  text-align: center;
  background: linear-gradient(135deg, #8B4513, #6B3410);
  padding: 35px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(107, 52, 16, 0.3);
  transition: all 0.4s ease;
}

.stat:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(107, 52, 16, 0.5);
}

.stat h3 {
  font-size: 48px;
  color: #FFD700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat p {
  color: #F5D9B8;
  font-size: 16px;
}

/* ============================================
   CONTACT & FORMS
   ============================================ */

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.contact-method {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  background: linear-gradient(135deg, #FFFFFF, #FFF9F0);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.12);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(139, 69, 19, 0.2);
}

.contact-method h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #6B3410;
}

.form-info {
  background: rgba(139, 69, 19, 0.05);
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
  border-left: 5px solid #8B4513;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.faq-item {
  background: linear-gradient(135deg, #FFFFFF, #FFF9F0);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
  transform: translateX(5px);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #6B3410;
}

.response-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}

.response-info {
  flex: 1 1 calc(50% - 13px);
  min-width: 220px;
  background: rgba(139, 69, 19, 0.05);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid #E8C4A0;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-header {
  background: linear-gradient(135deg, #8B4513, #6B3410);
  padding: 60px 20px;
  text-align: center;
  color: #FFFFFF;
  border-radius: 25px;
  margin-bottom: 40px;
}

.legal-header h1 {
  color: #FFFFFF;
  margin-bottom: 15px;
}

.legal-header p {
  color: #F5D9B8;
  margin: 5px 0;
}

.legal-content {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFFFFF 100%);
  padding: 50px 30px;
  border-radius: 25px;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.1);
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #6B3410;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.rights-list,
.summary-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}

.right-item,
.summary-item {
  flex: 1 1 calc(50% - 13px);
  min-width: 250px;
  background: rgba(139, 69, 19, 0.05);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #8B4513;
}

.right-item h3,
.summary-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #6B3410;
}

.table-wrapper {
  overflow-x: auto;
  margin-top: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
}

thead {
  background: linear-gradient(135deg, #8B4513, #6B3410);
  color: #FFFFFF;
}

th,
td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #E8C4A0;
}

tbody tr:hover {
  background: rgba(139, 69, 19, 0.05);
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-hero {
  background: linear-gradient(135deg, #27AE60, #229954);
  padding: 80px 20px;
  text-align: center;
  border-radius: 25px;
  margin-bottom: 40px;
}

.thank-you-hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 20px;
}

.confirmation-message {
  color: #FFFFFF;
  font-size: 20px;
  margin: 15px 0;
}

.steps-grid,
.suggestions-grid,
.explore-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.step,
.suggestion,
.explore-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  background: linear-gradient(135deg, #FFFFFF, #FFF9F0);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.12);
  text-align: center;
  transition: all 0.3s ease;
}

.step:hover,
.suggestion:hover,
.explore-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(139, 69, 19, 0.2);
}

.expected-response {
  text-align: center;
  margin-top: 30px;
  font-weight: 600;
  color: #8B4513;
  font-size: 18px;
}

/* ============================================
   PREMIUM ACCESS & CTA SECTIONS
   ============================================ */

.premium-access,
.cta-final,
.cta-booking,
.cta-registration,
.newsletter-signup,
.cta-join,
.cta-explore {
  background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 15px 50px rgba(107, 52, 16, 0.4);
  position: relative;
  overflow: hidden;
}

.premium-access::before,
.cta-final::before,
.cta-booking::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50px, 50px); }
}

.premium-access h2,
.cta-final h2,
.cta-booking h2,
.cta-registration h2,
.newsletter-signup h2,
.cta-join h2,
.cta-explore h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.premium-access h2::after,
.cta-final h2::after {
  background: linear-gradient(90deg, #FFFFFF, #E8C4A0);
  left: 50%;
  transform: translateX(-50%);
}

.premium-access p,
.cta-final p,
.cta-booking p,
.cta-registration p,
.newsletter-signup p,
.cta-join p,
.cta-explore p {
  color: #F5D9B8;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.premium-access .price {
  color: #FFD700;
  font-size: 36px;
  margin: 25px 0;
}

/* ============================================
   PACKAGES & THEMES
   ============================================ */

.packages-grid,
.themes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.package,
.theme {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  max-width: 350px;
  background: linear-gradient(135deg, #FFFFFF, #FFF9F0);
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.15);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  position: relative;
}

.package::before {
  content: '⭐';
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 40px;
  opacity: 0;
  transition: all 0.4s ease;
}

.package:hover::before {
  opacity: 1;
  transform: rotate(360deg);
}

.package:hover,
.theme:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 50px rgba(139, 69, 19, 0.3);
  border-color: #8B4513;
}

.package h3,
.theme h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #6B3410;
}

.package .price {
  font-size: 40px;
  color: #8B4513;
  margin: 20px 0;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  padding: 60px 20px 30px;
  color: #FFFFFF;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 250px;
  min-width: 250px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-section h3 {
  color: #E8C4A0;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-section nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section nav a {
  color: #BDC3C7;
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer-section nav a:hover {
  color: #FFFFFF;
  padding-left: 10px;
}

.footer-section p {
  color: #BDC3C7;
  line-height: 1.8;
  font-size: 14px;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-legal nav a {
  color: #BDC3C7;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-legal p {
  color: #95A5A6;
  font-size: 14px;
  text-align: center;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E50, #34495E);
  padding: 25px 20px;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-consent p {
  color: #FFFFFF;
  margin: 0;
  flex: 1 1 400px;
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  border: none;
}

.cookie-accept {
  background: linear-gradient(135deg, #27AE60, #229954);
  color: #FFFFFF;
}

.cookie-accept:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.cookie-reject {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background: transparent;
  color: #E8C4A0;
  border: 2px solid #E8C4A0;
}

.cookie-settings:hover {
  background: rgba(232, 196, 160, 0.1);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #FFFFFF, #FFF9F0);
  padding: 40px;
  border-radius: 25px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.4s ease;
}

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

.cookie-modal h2 {
  color: #6B3410;
  margin-bottom: 25px;
}

.cookie-category {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(139, 69, 19, 0.05);
  border-radius: 15px;
  border-left: 4px solid #8B4513;
}

.cookie-category h3 {
  color: #8B4513;
  margin-bottom: 10px;
  font-size: 18px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #BDC3C7;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #27AE60;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: left 0.3s ease;
}

.toggle-switch.active::after {
  left: 27px;
}

.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-save,
.cookie-close {
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-save {
  background: linear-gradient(135deg, #8B4513, #6B3410);
  color: #FFFFFF;
}

.cookie-save:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(107, 52, 16, 0.4);
}

.cookie-close {
  background: transparent;
  color: #2C3E50;
  border: 2px solid #2C3E50;
}

.cookie-close:hover {
  background: rgba(44, 62, 80, 0.1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .feature,
  .service-card,
  .service-detail {
    flex: 1 1 calc(50% - 15px);
  }
  
  .collection-card,
  .category {
    flex: 1 1 calc(50% - 13px);
  }
  
  .package,
  .theme {
    flex: 1 1 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero .subheadline,
  .hero p {
    font-size: 18px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    max-width: 140px;
  }
  
  .tagline {
    display: none;
  }
  
  /* Flexbox layouts */
  .features-grid,
  .services-grid,
  .values-grid,
  .benefits-grid,
  .contact-grid,
  .response-grid,
  .rights-list,
  .summary-grid {
    flex-direction: column;
  }
  
  .feature,
  .service-card,
  .service-detail,
  .value,
  .benefit,
  .contact-method,
  .response-info,
  .right-item,
  .summary-item {
    flex: 1 1 100%;
  }
  
  .recipe-card,
  .workshop-card,
  .post-card,
  .collection-card,
  .category,
  .package,
  .theme,
  .step,
  .suggestion,
  .explore-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .stat {
    flex: 1 1 calc(50% - 15px);
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Sections */
  section {
    padding: 30px 15px;
  }
  
  .hero {
    padding: 60px 15px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .footer-legal {
    flex-direction: column;
  }
  
  .footer-legal nav {
    flex-direction: column;
    align-items: center;
  }
  
  /* Cookie Banner */
  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-consent p {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 30px 20px;
  }
  
  /* Tables */
  .table-wrapper {
    font-size: 14px;
  }
  
  th,
  td {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero .subheadline,
  .hero p {
    font-size: 16px;
  }
  
  .logo {
    max-width: 120px;
  }
  
  .mobile-menu {
    width: 90%;
  }
  
  .stat {
    flex: 1 1 100%;
  }
  
  .filter-buttons {
    flex-direction: column;
  }
  
  .filter-buttons button {
    width: 100%;
  }
  
  .price {
    font-size: 24px;
  }
  
  .package .price {
    font-size: 32px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.hidden {
  display: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease;
}

.slide-in-left {
  animation: slideInFromLeft 0.8s ease;
}

.slide-in-right {
  animation: slideInFromRight 0.8s ease;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: #FFFFFF;
  }
  
  * {
    box-shadow: none !important;
  }
}