/* =========================
   Intel Champ Küche - style.css
   Creative Artistic Theme
   ========================= */

/* ====== FONT IMPORTS ====== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

:root {
  --color-primary: #215732;
  --color-secondary: #F7F4ED;
  --color-accent: #BF2A1A;
  --color-bg: #fff;
  --color-dark: #1a1a1a;
  --color-light: #fff;
  --color-grey: #ececec;
  --color-shadow: rgba(33, 87, 50, 0.08);
  --color-shadow-strong: rgba(33, 87, 50, 0.18);
  --radius-card: 22px;
  --radius-btn: 30px;
  --transition: 0.25s cubic-bezier(.6,.2,.4,1);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --shadow-card: 0 4px 24px var(--color-shadow);
  --shadow-card-hover: 0 8px 32px var(--color-shadow-strong);
  --gap-section: 60px;
  --gap-card: 24px;
  --gap-content: 20px;
  --gap-feature: 15px;
}

html {
  box-sizing: border-box;
  font-size: 18px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(120deg, #F7F4ED 0%, #fff 100%);
  color: var(--color-dark);
  margin: 0;
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ====== HEADER & NAVIGATION ====== */
header {
  background: var(--color-secondary);
  box-shadow: 0 2px 12px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 18px;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--transition);
}
nav a:hover, nav a:focus {
  color: var(--color-accent);
}

.cta-btn {
  background: linear-gradient(90deg, var(--color-accent) 60%, #ff7e5f 100%);
  color: var(--color-light);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
  border: none;
  border-radius: var(--radius-btn);
  padding: 12px 32px;
  margin-left: 18px;
  box-shadow: 0 2px 12px var(--color-shadow);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.cta-btn:after {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #fff3 0%, #fff0 100%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #ff7e5f 0%, var(--color-accent) 100%);
  box-shadow: 0 6px 24px var(--color-shadow-strong);
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
}
.cta-btn:hover:after, .cta-btn:focus:after {
  opacity: 0.15;
}

/* ====== MOBILE NAVIGATION ====== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: var(--color-light);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 12px;
  transition: background var(--transition), transform var(--transition);
  z-index: 120;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  transform: scale(1.08) rotate(-8deg);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, var(--color-secondary) 80%, #fff 100%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.7,.2,.3,1);
  box-shadow: 0 8px 32px var(--color-shadow-strong);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.2rem;
  margin: 24px 0 0 24px;
  align-self: flex-start;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-primary);
  transform: scale(1.12) rotate(8deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 48px 0 0 36px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--transition), transform var(--transition);
  padding: 6px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
  transform: translateX(8px) scale(1.04);
}

@media (max-width: 1024px) {
  header .container nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ====== MAIN LAYOUT & SECTIONS ====== */
main {
  margin-top: 0;
  margin-bottom: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin: 0 0 12px 0;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--color-primary) 60%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 12px;
}
h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--color-accent);
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
}
p, ul, ol, address {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--color-dark);
  margin-bottom: 0.7em;
}
ul, ol {
  padding-left: 1.2em;
}
strong {
  color: var(--color-accent);
  font-weight: 700;
}
a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color var(--transition);
}
a:hover, a:focus {
  color: var(--color-primary);
}

/* ====== FLEXBOX LAYOUTS ====== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 18px;
}
.feature-grid > div {
  background: linear-gradient(120deg, #fff 80%, #f7f4ed 100%);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-grid > div:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
}
.feature-grid .icon {
  font-size: 2.2rem;
  color: var(--color-accent);
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 6px #bf2a1a22);
}

.recipe-list, .blog-list, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.recipe-card, .blog-card, .team-member {
  background: linear-gradient(120deg, #fff 80%, #f7f4ed 100%);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px 20px 20px 20px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.recipe-card:hover, .blog-card:hover, .team-member:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
}
.recipe-card img, .blog-card img, .team-member img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 8px;
}
.recipe-card a, .blog-card a {
  align-self: flex-start;
  background: var(--color-primary);
  color: var(--color-light);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius-btn);
  padding: 8px 22px;
  text-decoration: none;
  margin-top: 8px;
  transition: background var(--transition), transform var(--transition);
}
.recipe-card a:hover, .blog-card a:hover {
  background: var(--color-accent);
  transform: scale(1.05) rotate(-2deg);
}

.team-list {
  gap: 24px;
  justify-content: flex-start;
}
.team-member {
  align-items: center;
  text-align: center;
  min-width: 220px;
  max-width: 320px;
  gap: 12px;
}
.team-member img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 8px auto;
  box-shadow: 0 2px 12px #21573222;
}

/* ====== GALLERY SLIDER (STATIC) ====== */
.gallery-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.slide {
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 320px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 12px #21573222;
  transition: box-shadow var(--transition), transform var(--transition);
}
.slide:hover {
  box-shadow: 0 6px 24px #bf2a1a22;
  transform: scale(1.04) rotate(-1deg);
}
.slide img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0;
}

/* ====== TESTIMONIALS ====== */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(120deg, #fff 80%, #f7f4ed 100%);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  min-width: 260px;
  max-width: 420px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px) scale(1.02) rotate(-1deg);
}
.testimonial-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 8px #21573222;
}
.testimonial-card p {
  color: #222;
  font-size: 1.05rem;
  font-style: italic;
  margin: 0 0 4px 0;
}
.testimonial-card span {
  color: var(--color-primary);
  font-size: 0.98rem;
  font-weight: 700;
  margin-left: 8px;
}

/* ====== CONTACT DETAILS & MAP ====== */
.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.map {
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 12px #21573222;
  max-width: 420px;
}

/* ====== FOOTER ====== */
footer {
  background: var(--color-primary);
  color: var(--color-light);
  padding: 40px 0 24px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
}
footer nav a {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: color var(--transition);
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-accent);
}
footer address {
  font-style: normal;
  color: var(--color-secondary);
  font-size: 0.98rem;
}
footer span {
  font-size: 0.95rem;
  color: #e0e0e0;
}

/* ====== COOKIE CONSENT BANNER ====== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, #fff 80%, #f7f4ed 100%);
  color: var(--color-dark);
  box-shadow: 0 -2px 16px #21573222;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 3000;
  animation: cookieBannerIn 0.5s cubic-bezier(.7,.2,.3,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-dark);
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--color-primary);
  color: var(--color-light);
  border: none;
  border-radius: var(--radius-btn);
  padding: 10px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin: 0 2px;
}
.cookie-btn.accept {
  background: linear-gradient(90deg, var(--color-accent) 60%, #ff7e5f 100%);
}
.cookie-btn.reject {
  background: #bbb;
  color: var(--color-dark);
}
.cookie-btn.settings {
  background: var(--color-primary);
  color: var(--color-light);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-accent);
  color: var(--color-light);
  transform: scale(1.04) rotate(-2deg);
}

/* ====== COOKIE MODAL ====== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(33,87,50,0.18);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.3s cubic-bezier(.7,.2,.3,1);
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: linear-gradient(120deg, #fff 80%, #f7f4ed 100%);
  border-radius: 22px;
  box-shadow: 0 8px 32px #21573222;
  padding: 36px 32px 28px 32px;
  min-width: 320px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  animation: cookieModalPopIn 0.4s cubic-bezier(.7,.2,.3,1);
}
@keyframes cookieModalPopIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-accent);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  font-size: 1.05rem;
  color: var(--color-primary);
  font-weight: 600;
}
.cookie-modal .cookie-toggle {
  display: inline-block;
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: #ddd;
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
  margin-right: 6px;
}
.cookie-modal .cookie-toggle input {
  display: none;
}
.cookie-modal .cookie-toggle span {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px #21573222;
  transition: left var(--transition), background var(--transition);
}
.cookie-modal .cookie-toggle input:checked + span {
  left: 18px;
  background: var(--color-accent);
}
.cookie-modal .cookie-category.essential label {
  color: #aaa;
}
.cookie-modal .cookie-category.essential .cookie-toggle {
  background: #bbb;
  cursor: not-allowed;
}
.cookie-modal .cookie-category.essential span {
  background: #fff;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.cookie-modal .cookie-btn {
  padding: 8px 22px;
  font-size: 1rem;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
  .feature-grid, .recipe-list, .blog-list, .team-list, .testimonial-list, .gallery-slider {
    gap: 18px;
  }
  .feature-grid > div, .recipe-card, .blog-card, .team-member, .testimonial-card {
    min-width: 180px;
    max-width: 100%;
    padding: 18px 12px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .container {
    padding: 0 6px;
  }
  .content-wrapper {
    gap: 22px;
    padding: 0;
  }
  .feature-grid, .recipe-list, .blog-list, .team-list, .testimonial-list, .gallery-slider {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div, .recipe-card, .blog-card, .team-member, .testimonial-card {
    min-width: 0;
    max-width: 100%;
    padding: 14px 8px;
  }
  .slide img, .recipe-card img, .blog-card img, .team-member img {
    height: 120px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .map {
    max-width: 100%;
  }
  .cookie-modal {
    min-width: 0;
    padding: 18px 8px 14px 8px;
  }
}

/* ====== FLEXBOX SPACING & ALIGNMENT PATTERNS ====== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ====== MICRO-INTERACTIONS ====== */
button, .cta-btn, .cookie-btn {
  outline: none;
}
button:focus-visible, .cta-btn:focus-visible, .cookie-btn:focus-visible {
  box-shadow: 0 0 0 3px #bf2a1a44;
}

/* ====== UNIQUE ARTISTIC ELEMENTS ====== */
/* Artistic brush underline for h2 */
h2 {
  position: relative;
  display: inline-block;
  z-index: 1;
}
h2:after {
  content: '';
  display: block;
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 12px;
  background: url('data:image/svg+xml;utf8,<svg width="100%" height="12" xmlns="http://www.w3.org/2000/svg"><path d="M0,8 Q40,16 100,8 T200,8" stroke="%23BF2A1A" stroke-width="8" fill="none"/></svg>') repeat-x;
  opacity: 0.18;
  z-index: -1;
}

/* Artistic accent dots for cards */
.recipe-card:before, .blog-card:before, .team-member:before, .testimonial-card:before {
  content: '';
  display: block;
  position: absolute;
  top: 18px; right: 18px;
  width: 18px; height: 18px;
  background: radial-gradient(circle at 60% 40%, #BF2A1A 60%, #fff0 100%);
  opacity: 0.13;
  border-radius: 50%;
  z-index: 0;
}

/* Artistic background swirl for main sections */
section:before {
  content: '';
  display: block;
  position: absolute;
  left: -60px; top: -40px;
  width: 180px; height: 120px;
  background: url('data:image/svg+xml;utf8,<svg width="180" height="120" xmlns="http://www.w3.org/2000/svg"><ellipse cx="90" cy="60" rx="80" ry="40" fill="%23215732" fill-opacity="0.06"/></svg>') no-repeat;
  z-index: 0;
  pointer-events: none;
}
section {
  position: relative;
  z-index: 1;
}

/* ====== UTILITY CLASSES ====== */
.hide {
  display: none !important;
}

/* ====== END OF STYLE.CSS ====== */
