/* ===============================================================
   VINTAGE_RETRO CSS STYLE FOR IMMETNONSİ KÜCHE – style.css
   =============================================================== */

/* ----------------------------
   RESET & BASE STYLES
----------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #FCF8EE;
  color: #204452;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #204452;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #b06c14;
}
ul, ol {
  list-style-type: none;
}


/* ----------------------------
   CSS CUSTOM PROPERTIES
----------------------------- */
:root {
  --primary: #204452;
  --secondary: #E2A53B;
  --accent: #F6F8FA;
  --background: #FCF8EE;
  --vintage-red: #AF4B3C;
  --vintage-green: #5B8767;
  --vintage-brown: #84634C;
  --offwhite: #FAF4EC;
  --soft-shadow: 0 2px 10px rgba(50,34,5,0.11);
  --retro-blue: #468196;
  --retro-orange: #F1D19D;
  --retro-olive: #BBB596;
  --retro-border: #d5bea8;
  --card-radius: 18px;
  --btn-radius: 28px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}


/* ----------------------------
   TYPOGRAPHY & HEADINGS
----------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Roboto:400,500,700&display=swap');
h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--primary);
  text-shadow: 0px 2px 2px rgba(164,94,48, 0.06);
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  line-height: 1.13;
}
h2 {
  font-size: 1.78rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--vintage-brown);
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li, .subheadline, .footer-contact, .footer-hours, input, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #314040;
}
.subheadline {
  font-size: 1.1rem;
  color: var(--vintage-green);
  margin-bottom: 20px;
  font-style: italic;
  letter-spacing: 0.5px;
}
strong {
  color: var(--vintage-red);
}

/* ----------------------------
   CONTAINER STRUCTURE
----------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  background-color: var(--offwhite);
  border-radius: var(--card-radius);
  box-shadow: var(--soft-shadow);
  padding: 40px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  border: 1.5px solid var(--retro-border);
  position: relative;
}

.text-section {
  background: var(--accent);
  border: 1px dashed var(--retro-olive);
  box-shadow: 0 2px 14px 0 rgba(192,160,120,0.08);
  border-radius: var(--card-radius);
  padding: 38px 17px;
}


/* ----------------------------
   SECTION SPACING (MANDATORY)
----------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}


/* ----------------------------
   NAVIGATION (DESKTOP & MOBILE)
----------------------------- */
header {
  background-color: var(--primary);
  padding: 0 0 0 0;
  width: 100%;
  box-shadow: 0px 3px 24px 0px rgba(32, 68, 82, .04);
  min-height: 65px;
  position: relative;
  z-index: 40;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 0 18px;
}
.main-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 6px;
  letter-spacing: .5px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.main-nav a.cta-btn {
  background-color: var(--secondary);
  color: var(--primary);
  border-radius: var(--btn-radius);
  padding: 8px 24px;
  font-size: 1.08rem;
  box-shadow: 0 1px 9px 0 rgba(226,165,59,0.18);
  margin-left: 10px;
  font-weight: bold;
  letter-spacing: 1.3px;
}
.main-nav a:hover, .main-nav a:focus {
  background-color: #b06c14;
  color: #fff5df;
  text-shadow: 0 1px 3px rgba(0,0,0,0.07);
}
.main-nav a.cta-btn:hover, .main-nav a.cta-btn:focus {
  background: var(--vintage-red);
  color: #fff;
  box-shadow: 0 4px 22px 0 rgba(175,75,60,0.09);
}
.main-nav img {
  height: 36px;
  width: auto;
  margin-right: 14px;
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu-close {
  display: none;
}

/* MOBILE NAVIGATION & BURGER MENU */
@media (max-width: 920px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    top: 16px;
    right: 22px;
    font-size: 2.4rem;
    background: none;
    color: var(--secondary);
    border: none;
    z-index: 85;
    cursor: pointer;
    transition: color var(--transition), background var(--transition);
  }
  .mobile-menu-toggle:active {
    color: var(--vintage-red);
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--primary);
    z-index: 90;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    box-shadow: 7px 0 28px 0 rgba(32,68,82,0.13);
  }
  .mobile-menu.open {
    transform: translateX(0);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  }
  .mobile-menu-close {
    display: block;
    background: none;
    color: var(--secondary);
    font-size: 2.3rem;
    border: none;
    align-self: flex-end;
    margin: 18px 24px 0 0;
    cursor: pointer;
    z-index: 101;
    transition: color var(--transition), background var(--transition);
  }
  .mobile-menu-close:active {
    color: var(--vintage-red);
  }
  .mobile-nav {
    margin: 32px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 90vw;
  }
  .mobile-nav a {
    color: var(--secondary);
    font-size: 1.19rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    padding: 17px 0;
    border-radius: 9px;
    width: 100%;
    text-align: center;
    transition: background var(--transition), color var(--transition);
    font-weight: 700;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: var(--retro-orange);
    color: var(--primary);
  }
    .cookie-banner {
      flex-direction: column !important;
    }
}


/* ----------------------------
   FLEX LAYOUTS (MANDATORY)
----------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--offwhite);
  border-radius: var(--card-radius);
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--soft-shadow);
  padding: 26px 18px 20px 18px;
  border: 2px solid var(--retro-border);
  min-width: 240px;
  flex: 1 1 250px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(175,75,60,0.10);
  transform: translateY(-3px) scale(1.015);
  z-index: 3;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 20px;
  }
  .content-wrapper, .text-section {
    padding: 26px 8px;
  }
  section {
    padding: 24px 3vw;
  }
}


/* ----------------------------
   BLOG/FEATURE CARDS
----------------------------- */
.feature-icons {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 12px;
}
.feature-icons span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.04rem;
  font-weight: 500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: var(--retro-orange);
  padding: 7px 13px 7px 9px;
  border-radius: 16px;
  color: var(--primary);
  border: 1px solid var(--retro-border);
  box-shadow: 0 1px 3px 0 rgba(225,165,59,0.08);
  transition: background var(--transition), color var(--transition);
}
.feature-icons span img {
  height: 20px;
  width: 20px;
  filter: grayscale(25%) brightness(0.96) contrast(1.05);
}
.feature-icons span:hover {
  background: var(--secondary);
  color: var(--vintage-brown);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}


/* ----------------------------
   CTA BUTTONS
----------------------------- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: var(--btn-radius);
  padding: 12px 35px;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .8px;
  box-shadow: 0 2px 22px 0 rgba(226,165,59,0.13);
  cursor: pointer;
  margin-top: 10px;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition), transform var(--transition);
  text-shadow: 0 1px 1px #fff8ee41;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--vintage-red);
  color: #fff;
  transform: scale(1.045);
  box-shadow: 0 4px 28px 0 rgba(175,76,62,.13);
}


/* ----------------------------
   TESTIMONIAL STYLES (MANDATORY)
----------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff8ee;
  border-radius: var(--card-radius);
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(70,129,150,0.05);
  border: 1.5px solid var(--retro-border);
  font-style: italic;
  position: relative;
}
.testimonial-card p {
  color: #204452;
  font-size: 1.07rem;
}
.testimonial-meta {
  font-style: normal;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .98rem;
  color: var(--vintage-brown);
  margin-left: 18px;
  background: var(--retro-orange);
  padding: 3px 15px;
  border-radius: 14px;
  border: 1px solid #F6E5CE;
  box-shadow: 0 1px 6px 0 rgba(241,209,157,0.12);
}

.testimonial-card:before {
  content: '\201C';
  position: absolute;
  font-family: serif;
  font-size: 2.6rem;
  color: var(--vintage-green);
  left: 11px; top: -14px;
}

/* Improved contrast for testimonials */
.testimonial-card, .testimonial-card p, .testimonial-meta {
  background: #fff8ee;
  color: #204452;
}

/* ----------------------------
   BLOG PREVIEW CARDS
----------------------------- */
ul li span {
  color: var(--retro-blue);
  background: var(--retro-orange);
  padding: 2px 9px;
  border-radius: 10px;
  margin-left: 10px;
  font-size: .97em;
}

/* ----------------------------
   SEARCH BAR (on Rezepte)
----------------------------- */
.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F1D19D;
  color: #314040;
  border-radius: 14px;
  border: 1.5px solid var(--retro-border);
  padding: 10px 16px;
  width: 100%;
  font-size: 1rem;
  margin-top: 16px;
}
.search-bar img {
  height: 17px;
  width: 17px;
  filter: grayscale(55%) saturate(0.8);
}

/* ----------------------------
   FOOTER
----------------------------- */
footer {
  background: var(--primary);
  color: var(--retro-orange);
  padding: 34px 0 34px 0;
  border-top: 7px dotted var(--secondary);
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 42px;
  width: 100%;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
}
footer img {
  height: 46px;
  width: auto;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: underline;
  transition: color var(--transition);
}
footer nav a:hover,
footer nav a:focus {
  color: #fff5df;
  text-decoration: none;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--retro-orange);
  font-size: 1rem;
}
.footer-contact img {
  margin-right: 9px;
  height: 21px;
  opacity: .85;
  vertical-align: middle;
  filter: grayscale(40%) brightness(1.12);
}
.footer-hours {
  font-size: .97rem;
  color: #e6b364;
  margin-top: 11px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}


/* ----------------------------
   GENERIC FORM STYLES
----------------------------- */
input, textarea, select, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--retro-border);
  border-radius: 6px;
  outline: none;
  margin-top: 7px;
  box-sizing: border-box;
  margin-bottom: 18px;
  background: #F6F8FA;
  transition: border var(--transition), box-shadow var(--transition);
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(226,165,59,.14);
}
button {
  cursor: pointer;
}


/* ----------------------------
   SPACING & FLEX GAPS
----------------------------- */
ul, .content-wrapper ul {
  margin: 0 0 10px 0;
  padding: 0 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
ol {
  margin: 0 0 10px 0;
  padding: 0 0 0 23px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
li {
  margin-bottom: 0;
  font-size: 1rem;
}
.brand-contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.brand-contact-details img {
  height: 20px;
  vertical-align: sub;
  margin-right: 7px;
  filter: grayscale(44%) brightness(1.23);
}


/* ----------------------------
   CUSTOM PATTERNS & RETRO ELEMENTS
----------------------------- */
body {
  background: var(--background);
  position: relative;
}
section::before {
  content: "";
  display: none;
}

.content-wrapper {
  background-image: repeating-linear-gradient(-45deg, #fcf8ee 0px, #fcf8ee 28px, #f7ecd4 34px, #fcf8ee 38px);
  border: 2.7px solid var(--retro-olive);
}

.text-section {
  background-image: repeating-linear-gradient(45deg, #f7ecd4 0px, #f7ecd4 23px, #f0e0c3 29px, #f7ecd4 33px);
  border-style: dashed;
}

.card {
  background-image: repeating-linear-gradient(135deg, #fcf8ee 0px, #fcf8ee 16px, #f7ecd4 21px, #fcf8ee 26px);
}


/* ----------------------------
   RESPONSIVE DESIGN
----------------------------- */
@media (max-width: 768px) {
  h1 {
    font-size: 1.45rem;
    margin-bottom: 13px;
  }
  h2 {
    font-size: 1.19rem;
    margin-bottom: 11px;
  }
  .container {
    padding: 0 5px;
  }
  section {
    margin-bottom: 36px;
    padding: 19px 5px;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 11px 20px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .hero-image, .card img, .feature-icons img {
    max-width: 100%;
    height: auto;
  }
  .footer-contact, .footer-hours {
    font-size: .95rem;
  }
}

@media (max-width: 525px) {
  .content-wrapper {
    padding: 13px 3px;
    border-radius: 13px;
  }
  .text-section {
    padding: 15px 5px;
    border-radius: 10px;
  }
  .feature-icons span {
    padding: 5px 6px 5px 6px;
    border-radius: 8px;
  }
  .card {
    min-width: 70vw;
    padding: 10px 4px;
  }
  .card-container {
    flex-direction: column;
    gap: 15px;
  }
}


/* ----------------------------
   MICRO-INTERACTIONS & EFFECTS
----------------------------- */
.cta-btn, button, .card, .feature-icons span, .main-nav a, .mobile-nav a {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.card:active {
  transform: scale(0.98);
}
.feature-icons span:active {
  background: var(--vintage-red);
  color: #fff;
}


/* ----------------------------
   COOKIE CONSENT BANNER & MODAL
----------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: var(--offwhite);
  color: var(--primary);
  box-shadow: 0 -2px 24px 0 rgba(139,80,32,0.10);
  border-top: 3.5px dotted var(--vintage-red);
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 17px 18px 17px 15px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform .45s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-btn {
  margin-left: 15px;
  padding: 9px 24px;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: var(--btn-radius);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 6px rgba(226,165,59,0.11);
}
.cookie-banner .cookie-btn:hover {
  background: var(--vintage-red);
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: var(--retro-blue);
  color: #fff;
  margin-left: 11px;
}
.cookie-banner .cookie-btn.settings:hover {
  background: var(--primary);
  color: #F1D19D;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,68,82,0.61);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity .33s cubic-bezier(.4,0,.2,1);
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: var(--offwhite);
  border-radius: var(--card-radius);
  box-shadow: 0 8px 64px 0 rgba(32,68,82,0.18);
  min-width: 350px;
  max-width: 90vw;
  padding: 32px 24px 23px 24px;
  border: 2.5px solid var(--retro-border);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  animation: cookieModalIn .42s cubic-bezier(.4,0,.2,1);
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: translateY(70px) scale(0.90); }
  100% { opacity:1; transform: none; }
}
.cookie-modal-content h3, .cookie-modal-content h2 {
  color: var(--primary); margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}
.cookie-category label {
  color: #314040; font-weight: 500; font-size: 1rem;
}
.cookie-category input[type=checkbox], .cookie-category input[type=radio] {
  width: 20px; height: 20px; accent-color: var(--secondary);
}
.cookie-category.essential label {
  color: #204452; font-weight: 700;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  padding-top: 5px;
  width: 100%;
}
.cookie-modal-actions .cookie-btn {
  flex: 1 1;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 18px;
  color: var(--primary);
  font-size: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
}
.cookie-modal-close:hover {
  color: var(--vintage-red);
}
@media (max-width:540px) {
  .cookie-modal-content {
    min-width: 97vw;
    padding: 9vw 3vw;
    border-radius: 8px;
  }
}

/* ----------------------------
   UTILITY & MISC
----------------------------- */
::-webkit-scrollbar {
  width: 8px;
  background: #eee7df;
}
::-webkit-scrollbar-thumb {
  background: #e2a53b88;
  border-radius: 6px;
}
::-webkit-input-placeholder { color: #b4b0aa; opacity: 1; }
::-moz-placeholder { color: #b4b0aa; opacity: 1; }
:-ms-input-placeholder { color: #b4b0aa; opacity: 1; }
::placeholder { color: #b4b0aa; opacity: 1; }


/* Vintage deco corners for big cards */
.card:after, .content-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  right: 12px; bottom: 10px;
  width: 41px; height: 20px;
  opacity: .13;
}
/* If icon does not exist, will be ignored gracefully. */


/* ----------------------------
   END OF STYLE.CSS
----------------------------- */