/* RESET & BASE TYPOGRAPHY */
html {
  box-sizing: border-box;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #181B2E;
  color: #F6F1E7;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: linear-gradient(135deg, #181B2E 0%, #18453B 100%);
  min-height: 100vh;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: #F6F1E7;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: #E3A857;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  color: #fff;
}
h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #E3A857;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #F6F1E7;
  margin-bottom: 12px;
}

p, li, dd, dt {
  font-size: 1rem;
  color: #F6F1E7;
  margin-bottom: 12px;
  line-height: 1.6;
}

strong {
  color: #E3A857;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 12px;
}
ul li{
  margin-bottom: 8px;
}

blockquote {
  font-size: 1.1rem;
  font-style: italic;
  border-left: 4px solid #E3A857;
  color: #58F2D2;
  background: rgba(24, 69, 59, 0.1);
  padding: 16px 20px;
  margin-bottom: 24px;
  border-radius: 8px;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #23284A;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(56,195,245,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  flex: 1 1 260px;
  min-width: 240px;
  transition: box-shadow 0.23s;
}
.card:hover {
  box-shadow: 0 8px 35px 0 #00ffc800, 0 1.5px 8px 0 #E3A85766;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F6F1E7;
  color: #18453B;
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(30,225,200,0.10);
  padding: 20px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature_grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.feature_grid > div {
  background: #23284A;
  border-radius: 13px;
  box-shadow: 0 0 22px 0 #00ffc818;
  padding: 24px 18px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 340px;
  border: 1px solid #2BC5B4;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature_grid > div:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 3px 22px 0 #00ffc8b8,0 1.5px 18px 0 #E3A85766;
}
.feature_grid img {
  margin-bottom: 14px;
  height: 48px;
}

.recipe-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.recipe-card {
  background: #1C2035;
  border: 1.5px solid #2BC5B4;
  border-radius: 14px;
  box-shadow: 0 0 12px 0 #00ffc818;
  padding: 22px 18px 28px 18px;
  flex: 1 1 245px;
  min-width: 225px;
  max-width: 330px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, transform 0.18s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.recipe-card:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 10px 38px 0 #00ffe0b1, 0 1.5px 14px 0 #E3A85780;
}
.recipe-card h3 {
  color: #E3A857;
}
.recipe-card a {
  color: #2BC5B4;
  font-weight: bold;
  margin-top: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 1rem;
  border-bottom: 1.5px solid #2BC5B4;
  transition: color 0.2s, border 0.2s;
}
.recipe-card a:hover {
  color: #fff;
  border-bottom: 2px solid #E3A857;
}

.category-links {
  font-size: 1.12rem;
  margin-bottom: 18px;
  color: #2BC5B4;
  font-weight: 500;
}
.category-links a {
  color: #2BC5B4;
  text-decoration: underline;
  margin: 0 8px;
  transition: color 0.18s;
}
.category-links a:hover {
  color: #E3A857;
}

.recipe-filter {
  margin-bottom: 14px;
  font-size: 0.98rem;
  color: #A7FAE6;
  display: flex;
  align-items: center;
  gap: 14px;
}
.recipe-filter img {
  height: 18px;
  width: 18px;
  margin-right: 4px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #181B2E 65%, #18453B 100%);
  border-bottom: 3px solid #2BC5B4;
  margin-bottom: 0;
  padding-top: 26px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 0;
}
.hero h1 {
  color: #E3A857;
  text-shadow: 0 0 22px #00ffc855, 0 1px 0 #18453B;
}
.hero p {
  font-size: 1.18rem;
  color: #A7FAE6;
}

/* BUTTONS & CTA */
.cta,
button.cta,
button.accept-btn,
button.reject-btn,
button.settings-btn {
  display: inline-block;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  background: #2BC5B4;
  color: #181B2E;
  border: none;
  border-radius: 7px;
  padding: 13px 32px;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  box-shadow: 0 2px 10px 0 #00ffc81a;
  margin: 12px 0 0 0;
  cursor: pointer;
  transition: background 0.19s, box-shadow 0.19s, color 0.19s;
  text-transform: uppercase;
  position: relative;
}
.cta:hover, .cta:focus,
button.cta:hover, button.accept-btn:hover, button.reject-btn:hover, button.settings-btn:hover {
  background: #E3A857;
  color: #23284A;
  box-shadow: 0 2px 22px 0 #E3A857B7, 0 1.5px 8px 0 #00ffc888;
}

.main-nav .cta {
  margin-left: 16px;
}
.mobile-nav .cta {
  margin: 18px 0 0 0;
}

/* INPUTS */
input[type="search"] {
  padding: 11px 18px;
  border: 2px solid #2BC5B4;
  background: #23284A;
  color: #f6f1e7;
  border-radius: 7px;
  font-size: 1.08rem;
  transition: border 0.18s, box-shadow 0.18s;
  margin: 7px 0 0 0;
  outline: none;
}
input[type="search"]:focus {
  border-color: #E3A857;
  box-shadow: 0 0 6px #E3A857bb;
}

/* HEADER + NAV */
header {
  background: #181B2E;
  border-bottom: 2px solid #23284A;
  box-shadow: 0 1px 8px 0 #00ffc822;
  position: relative;
  z-index: 300;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 18px;
  filter: drop-shadow(0 2px 6px #00ffc822);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  color: #A7FAE6;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 7px;
  border-radius: 6px;
  transition: color 0.14s, background 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #2BC5B4;
  color: #181B2E;
  text-shadow: 0 0 2px #E3A85785;
}
.main-nav .cta {
  color: #181B2E;
  background: #E3A857;
  padding: 13px 23px;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 18px;
}
.main-nav .cta:hover {
  background: #2BC5B4;
  color: #181B2E;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.6rem;
  color: #2BC5B4;
  cursor: pointer;
  margin-left: 24px;
  z-index: 400;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #E3A857;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: #181B2E;
  z-index: 9999;
  transform: translateX(100vw);
  transition: transform 0.32s cubic-bezier(.44,.04,.7,1.04);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 32px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #E3A857;
  font-size: 2.3rem;
  position: absolute;
  top: 18px;
  right: 22px;
  cursor: pointer;
  z-index: 10001;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 48px 24px 24px 32px;
}
.mobile-nav a {
  color: #A7FAE6;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #23284A;
  background: none;
  transition: color 0.12s, background 0.17s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E3A857;
  background: linear-gradient(90deg, #23284A 0, #18453B 100%);
  border-radius: 6px;
}

/* FOOTER */
footer {
  background: #181B2E;
  color: #A7FAE6;
  border-top: 2.5px solid #23284A;
  box-shadow: 0 -2px 12px 0 #00ffc81b;
  margin-top: 60px;
  padding: 40px 0 18px;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-wrapper img {
  height: 40px;
  margin-bottom: 14px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu a {
  color: #A7FAE6;
  font-size: 1rem;
  margin-bottom: 6px;
}
.footer-menu a:hover {
  color: #E3A857;
}
.contact-info ul {
  list-style: none;
  padding-left: 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #A7FAE6;
  margin-bottom: 7px;
  font-size: 0.97rem;
}
.contact-info img {
  width: 20px;
  height: 20px;
  filter: brightness(2);
}
.social-links {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
}
.social-links a img {
  height: 30px;
  filter: drop-shadow(0 1px 9px #00ffc82a);
  transition: filter 0.18s;
}
.social-links a:hover img {
  filter: drop-shadow(0 2px 18px #00ffc8cf) brightness(1.6);
}

/* NEWSLETTER SIGNUP SECTION */
.newsletter-signup {
  background: #23284A;
  border-radius: 14px;
  box-shadow: 0 0 16px 0 #00ffc812;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.newsletter-signup h2 {
  color: #2BC5B4;
}
.newsletter-signup ul li {
  color: #F6F1E7;
  margin-bottom: 7px;
}
.newsletter-signup p {
  margin-bottom: 0;
  font-size: 1.07rem;
}

/* CTA BLOCK */
.cta-block {
  background: #23284A;
  border-radius: 13px;
  margin-bottom: 45px;
  box-shadow: 0 0 18px 0 #2bc5b418;
  padding: 36px 18px;
}
.cta-block h2 {
  color: #E3A857;
  margin-bottom: 12px;
}

/* ABOUT PREVIEW & TEXT */
.about-preview, .about-history, .about {
  background: linear-gradient(90deg, #1C2035 85%, #2BC5B4 130%);
  border-radius: 16px;
  box-shadow: 0 2px 16px #00ffc80c;
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* LEGAL TEXT SECTIONS */
.legal-text-section {
  background: #1C2035;
  border-radius: 12px;
  box-shadow: 0 0 14px #2bc5b414;
  margin-bottom: 60px;
  padding: 42px 18px;
}
.legal-text-section h1 {
  color: #E3A857;
}
.legal-text-section h2 {
  color: #2BC5B4;
  font-size: 1.4rem;
  margin-top: 20px;
  margin-bottom: 10px;
}
.legal-text-section p, .legal-text-section li {
  color: #F6F1E7;
}

/* STATS SECTION */
.stats {
  background: #23284A;
  border-radius: 16px;
  box-shadow: 0 2px 8px #00ffc814;
  margin-bottom: 60px;
  padding: 38px 18px;
}
.stats h2 {
  color: #2BC5B4;
}
.stats ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
}
.stats li {
  color: #E3A857;
  font-size: 1.06rem;
}

/* TIPS, FAQ, GUIDES SECTION */
.tip-list, .faqs, .quick-guides {
  background: #23284A;
  border-radius: 14px;
  box-shadow: 0 2px 12px #00ffc814;
  margin-bottom: 60px;
  padding: 34px 16px;
}
.faqs dl {
  margin-bottom: 0;
}
.faqs dt {
  color: #2BC5B4;
  font-weight: 700;
  margin-top: 18px;
  font-size: 1.05rem;
}
.faqs dd {
  color: #F6F1E7;
  margin-left: 14px;
  margin-bottom: 10px;
}

/* CONTACT */
.contact-section {
  background: #23284A;
  border-radius: 14px;
  box-shadow: 0 2px 12px #00ffc814;
  margin-bottom: 60px;
  padding: 38px 20px;
}
.contact-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}
.contact-info-block ul {
  padding-left: 0;
  list-style: none;
}
.contact-guidance {
  flex: 1 1 340px;
  min-width: 260px;
}

/* CONFIRMATION PAGE */
.confirmation {
  background: #23284A;
  border-radius: 14px;
  box-shadow: 0 2px 12px #00ffc814;
  margin-bottom: 60px;
  padding: 44px 20px;
}
.confirmation h1 {
  color: #E3A857;
}
.confirmation ul li {
  margin-bottom: 10px;
  color: #A7FAE6;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #23284A;
  color: #F6F1E7;
  border-radius: 19px 19px 0 0;
  box-shadow: 0 -3px 32px #2BC5B4cc;
  padding: 20px 16px 24px 16px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(.44,.04,.7,1.04), opacity 0.2s;
}
.cookie-consent-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-consent-banner .cookie-text {
  flex: 1 1 300px;
  font-size: 1rem;
  margin-right: 22px;
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.accept-btn {
  background: #2BC5B4;
  color: #181B2E;
}
.reject-btn {
  background: #E34C57;
  color: #fff;
}
.settings-btn {
  background: #E3A857;
  color: #18453B;
}
.accept-btn, .reject-btn, .settings-btn {
  padding: 11px 22px;
  font-size: 1rem;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 7px;
  font-weight: bold;
  cursor: pointer;
  margin-right: 0;
  box-shadow: 0 1.5px 8px 0 #2BC5B44a;
  transition: background 0.19s, box-shadow 0.19s, color 0.19s;
}
.accept-btn:hover, .settings-btn:hover {
  background: #fff;
  color: #18453B;
}
.reject-btn:hover {
  background: #2BC5B4;
  color: #23284A;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 93vw;
  max-width: 400px;
  background: #181B2E;
  color: #F6F1E7;
  border-radius: 18px;
  box-shadow: 0 10px 54px #2BC5B4cc;
  padding: 32px 24px 18px 24px;
  z-index: 100228;
  transform: translate(-50%, 60vh);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.32s cubic-bezier(.44,.04,.7,1.04);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}
.cookie-modal h2 {
  color: #E3A857;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #23284A;
  padding: 10px 12px;
  margin-bottom: 13px;
  border-radius: 8px;
}
.cookie-modal .cookie-category label, .cookie-modal .cookie-category span {
  color: #A7FAE6;
  font-size: 1rem;
}
.cookie-modal .cookie-category .switch {
  margin-left: 8px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  background: #E34C57;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 8px 16px;
  font-size: 0.95rem;
  cursor: pointer;
  margin-left: 12px;
  font-weight: bold;
  transition: background 0.17s;
}
.cookie-modal .close-modal:hover {
  background: #E3A857;
  color: #23284A;
}
/* Switch Toggle */
.switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
}
.switch input {opacity:0;width:0;height:0;}
.switch span {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #A7FAE6;
  border-radius: 22px;
  transition: .2s;
}
.switch span:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: #2BC5B4;
  border-radius: 50%;
  transition: .2s;
}
.switch input:checked + span {
  background-color: #E3A857;
}
.switch input:checked + span:before {
  transform: translateX(16px);
}

/* BENEFITS */
.benefits-explanation {
  margin-top: 18px;
  color: #A7FAE6;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    max-width: 958px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 24px;
  }
  .content-grid, .feature_grid, .card-container, .recipe-cards {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  .main-nav a {
    font-size: 0.97rem;
  }
  .feature_grid > div, .card, .recipe-card {
    min-width: 180px;
    max-width: unset;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 19px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container {
    flex-direction: row;
    gap: 10px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature_grid, .content-grid, .card-container, .recipe-cards {
    flex-direction: column;
    gap: 20px;
  }
  .feature_grid > div, .card, .recipe-card {
    min-width: 100%;
    max-width: 100%;
  }
  .content-wrapper, .about-preview .content-wrapper, .about-history .content-wrapper, .contact-section .content-wrapper, .newsletter-signup .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .hero {
    padding-top: 20px;
    padding-bottom: 28px;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 8px 22px 10px;
  }
  .cookie-consent-banner .cookie-text {
    margin-right: 0;
  }
}
@media (max-width: 500px) {
  html { font-size: 13.5px; }
  .container { padding-left: 5px; padding-right: 5px; }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.18rem; }
  .section, section {
    margin-bottom: 36px;
    padding: 23px 5px;
  }
  .newsletter-signup, .about-preview, .about-history, .stats, .cta-block, .contact-section, .confirmation, .tip-list, .faqs, .quick-guides, .legal-text-section {
    padding: 18px 5px;
  }
  .mobile-menu {
    padding-top: 24px;
  }
}

/* MICROINTERACTIONS ANIMATION */
.cta, .main-nav .cta, input[type="search"], .card, .feature_grid > div, .recipe-card, .footer-menu a, .mobile-nav a, button, .accept-btn, .reject-btn, .settings-btn, .social-links a img {
  transition: all 0.18s cubic-bezier(.44,.04,.7,1.04);
}

/* END */
