/* RESET & NORMALIZATION */
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,main,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline;box-sizing:border-box}html{box-sizing:border-box;font-size:100%}*,*:before,*:after{box-sizing:inherit;}ul,ol{list-style:none;}img,svg{vertical-align:middle;max-width:100%;height:auto;}a{text-decoration:none;color:inherit;}

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

/* CSS VARIABLES */
:root {
  --brand-primary: #3D473A;
  --brand-secondary: #F2C879;
  --brand-accent: #FFFFFF;
  --tech-future-neon: #44FFD1;
  --tech-future-dark: #191F26;
  --tech-future-grey: #232a33;
  --text-main: #FFFFFF;
  --text-dark: #191F26;
  --shadow-main: 0 4px 24px 0 rgba(41, 217, 187, 0.12);
  --shadow-neon: 0 0 12px 0 #44FFD1;
  --radius-md: 14px;
  --radius-sm: 7px;
  --transition-base: all 0.23s cubic-bezier(.69,.06,.41,.92);
}

body {
  background: linear-gradient(120deg, #232a33 0%, #3D473A 100%);
  color: var(--text-main);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
  scroll-behavior:smooth;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  width: 100%;
}

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

.card-container, .recipe-cards, .blog-list, .service-list {
  display: flex;
  flex-wrap:wrap;
  gap:24px;
  margin-top:16px;
}

.card {
  margin-bottom:20px;
  position:relative;
  background:var(--tech-future-grey);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-main);
  padding:32px 24px;
  transition:box-shadow 0.22s;
}

.card:hover {box-shadow:0 6px 32px 0 #3D473A99,0 0 0 2px var(--tech-future-neon)}

.recipe-cards > div,
.blog-list > div,
.service-list > div {
  background:var(--tech-future-grey);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-main);
  padding:28px 20px;
  flex: 1 1 270px;
  min-width:260px;
  transition: box-shadow 0.2s, border 0.2s;
  border:1.5px solid transparent;
  display: flex;
  flex-direction: column;
  gap:16px;
}

.recipe-cards > div:hover, .blog-list > div:hover, .service-list>div:hover {
  border:1.5px solid var(--tech-future-neon);
  box-shadow: var(--shadow-neon);
}

/* Title & Typo */
h1, h2, h3, h4,h5,h6 {
  font-family:'Montserrat',Arial,Helvetica,sans-serif;
  color:var(--brand-secondary);
  font-weight:700;
  letter-spacing:0.02em;
  margin-bottom: 0.1em;
}
h1 {font-size: 2.5rem;line-height:1.1;}
h2 {font-size: 2rem;line-height:1.17;}
h3 {font-size:1.4rem;line-height:1.25;}
h4,h5,h6 {font-size:1.1rem;}
p,ul,li,label,input,textarea,select,span,strong,address,small {
  font-family: 'Open Sans',Arial,Helvetica,sans-serif;
  color:var(--brand-accent);
  font-size: 1rem;
}
p {
  margin-bottom:12px;
}
strong {color:var(--tech-future-neon);}
ul,ol {
  margin-bottom:12px;
  padding-left:21px;
}
li+li {margin-top:7px;}

/* HERO/CTA */
.cta, button.cta, .cta.primary {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding: 0.85em 2.2em;
  background:linear-gradient(90deg, var(--tech-future-neon) 41%, var(--brand-secondary) 100%);
  color:var(--brand-primary);
  font-family:'Montserrat',Arial,Helvetica,sans-serif;
  font-size:1.18rem;
  font-weight:600;
  border:none;
  border-radius:var(--radius-md);
  box-shadow:0 2px 8px 0 #44FFD199;
  transition: var(--transition-base);
  cursor:pointer;
  margin-top:10px;
  margin-bottom:12px;
}
.cta.primary {
  background:linear-gradient(90deg, var(--brand-secondary) 50%, var(--tech-future-neon) 100%);
}
.cta:hover, button.cta:hover, .cta.primary:hover {
  color:#232a33;
  background:linear-gradient(90deg, #f7ff00 10%, #44FFD1 90%);
  box-shadow: 0 0 18px 4px #44FFD1AA;
}
a.cta:focus,button.cta:focus {
  outline:2px solid var(--tech-future-neon);
  outline-offset:3px;
}

/* HEADER & NAVIGATION */
header {
  background: var(--tech-future-dark);
  border-bottom:1.5px solid #2b323b;
  box-shadow:0 2px 8px 0 #232a3344;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content:space-between;
  gap:18px;
  min-height:64px;
  padding-top:12px;
  padding-bottom:12px;
}
.brand-logo img {
  height: 44px;
  width:auto;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items:center;
}
.main-nav a {
  font-family:'Montserrat',Arial,Helvetica,sans-serif;
  color:var(--brand-accent);
  font-weight:600;
  font-size:1rem;
  position:relative;
  padding:0 2px;
  overflow:hidden;
  transition:color 0.2s;
}
.main-nav a:hover {
  color:var(--tech-future-neon);
}
.main-nav a::after {
  content: '';
  position:absolute;
  height:2.5px;
  left:0;right:0;
  bottom:-2px;
  background: var(--tech-future-neon);
  transform:scaleX(0);
  transition:transform 0.2s;
}
.main-nav a:hover::after {transform:scaleX(1);}

.mobile-menu-toggle {
  display: none;
  border:0;
  background:none;
  color:var(--brand-secondary);
  font-size:2.6rem;
  padding:0 10px;
  line-height:1;
  cursor:pointer;
  z-index:9999;
  transition:color 0.23s;
}
.mobile-menu-toggle:focus {outline:2px solid var(--tech-future-neon);}

/* MOBILE NAVIGATION DRAWER */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content:flex-start;
  align-items:flex-start;
  position:fixed;
  top:0; left:0;
  width:100vw;
  height:100vh;
  background: #232a33ec;
  backdrop-filter: blur(5px);
  transform: translateX(-100vw);
  transition: transform 0.42s cubic-bezier(.5,0,.23,1);
  z-index:11111;
  padding:0;
}
.mobile-menu.open {
  transform:translateX(0);
}
.mobile-menu-close {
  align-self:flex-end;
  margin:24px 30px 8px 0;
  border:0;
  background:none;
  color:var(--tech-future-neon);
  font-size:2.7rem;
  cursor:pointer;
  z-index:11200;
  transition:color .21s;
}
.mobile-menu-close:focus {outline:2px solid var(--tech-future-neon);}
.mobile-nav {
  display:flex;
  flex-direction:column;
  gap:24px;
  width:100%;
  align-items:center;
  justify-content:center;
  margin-top:44px;
}
.mobile-nav a {
  color:var(--tech-future-neon);
  font-family:'Montserrat',Arial,Helvetica,sans-serif;
  font-size:1.35rem;
  padding:16px 0;
  transition:color 0.2s;
  width:100%;
  text-align:center;
  border-bottom:1.5px solid #232a33d8;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background:linear-gradient(90deg, #44FFD1cc 25%,#f2c87980 100%);
  color:var(--text-dark);
}

/* MAIN & SECTIONS */
main {
  margin-top:0;
  margin-bottom:0;
  min-height:70vh;
}
section {
  background:none;
  border-radius:var(--radius-md);
  margin-bottom:60px;
  padding:40px 20px 40px 20px;
  box-shadow:0 0 0 0 #0000;
}

/* FLEXBOX LAYOUTS */
.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;background:#fff;border-radius:var(--radius-md);box-shadow:0 1px 6px 0 #2b323b22;margin-bottom:20px;color:#191F26;transition:box-shadow 0.2s;}
.testimonial-card p{color:#232a33;margin:0;}
.testimonial-card span{font-size:0.95rem;color:#191f26;font-weight:600;letter-spacing:0.01em;}
.testimonial-card:hover {box-shadow:0 6px 20px 0 #f2c87966;}
.feature-item {display:flex;flex-direction:column;align-items:flex-start;gap:15px;}

/* FORMS */
input, select, textarea {
  font-family:'Open Sans',Arial,Helvetica,sans-serif;
  font-size:1rem;
  color:var(--tech-future-dark);
  padding:10px 14px;
  border-radius:var(--radius-sm);
  background:#f0f2f8;
  border:1.5px solid #C1F5F0;
  margin-top:10px;
  margin-bottom:18px;
  width:100%;
  box-shadow: none;
  transition: border 0.18s, box-shadow 0.2s;
}
input:focus, textarea:focus, select:focus {
  border:1.5px solid var(--tech-future-neon);
  outline:none;
  background:#fcfffa;
}
label {
  color:var(--brand-secondary);
  font-weight:500;
  margin-top:4px;
  margin-bottom:6px;
}
form button.cta {
  margin-top:12px;
}

/* FILTERS FOR REZEPTE */
.filters {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
}
.filters label {
  margin: 0 10px 0 2px;
  color:var(--brand-accent);
  font-size:1rem;
  font-weight:400;
}
.filters input[type=checkbox] {
  accent-color: var(--tech-future-neon);
  width:18px;
  height:18px;
  border:1.5px solid var(--tech-future-neon);
  cursor:pointer;
  margin-right:4px;
}

/* PAGINATION */
.pagination{
  margin-top:26px;
  display:flex;
  gap:11px;
  align-items:center;
  justify-content:center;
}
.pagination a, .pagination span {
  min-width:33px;
  height:33px;
  padding:0 8px;
  border-radius:24px;
  background:var(--tech-future-grey);
  color:var(--brand-secondary);
  font-size:1.18rem;
  font-family:'Montserrat',sans-serif;
  display:inline-flex;align-items:center;justify-content:center;
  border:1.5px solid #232a33;
  transition:background 0.2s,color 0.2s,border 0.2s;
}
.pagination a:hover {
  background:var(--tech-future-neon);
  color:var(--brand-primary);
  border:1.5px solid var(--brand-secondary);
}
.pagination span{
  background:var(--brand-secondary);
  color:var(--tech-future-dark);
  font-weight:700;
  border:1.5px solid var(--brand-secondary);
}

/* FOOTER DESIGN */
footer {
  background: var(--tech-future-dark);
  padding:54px 0 22px 0;
  border-top:1.5px solid #232a33;
  color:var(--brand-accent);
}
footer .container {
  flex-direction:column;
  gap:28px;
}
.footer-logo img {
  height:36px;
  width:auto;
  margin-bottom:10px;
}
.footer-nav {
  display: flex;
  gap:22px;
  flex-wrap:wrap;
  margin:8px 0 16px 0;
}
.footer-nav a {
  color:var(--tech-future-neon);
  font-weight:500;
  font-size:1rem;
  transition:color 0.25s;
}
.footer-nav a:hover {color:var(--brand-secondary);}
.footer-contact p,img {
  color:var(--brand-accent);
  vertical-align:middle;
}
.footer-contact img {
  height:20px; width:20px; margin-right:7px; margin-bottom:-3px;
}
.footer-legal {margin-top:18px;margin-bottom:4px;opacity:0.9;font-size:0.92rem;}

/* BLOG & SERVICE CARDS BUTTONS */
.blog-list a, .recipe-cards a, .service-list a {
  color:var(--brand-secondary);
  font-size:1rem;
  font-weight:500;
  padding:2px 1px;
  border-bottom:1.5px solid var(--brand-secondary);
  transition:color 0.2s,border 0.2s;
}
.blog-list a:hover, .recipe-cards a:hover, .service-list a:hover {
  color:var(--tech-future-neon);
  border-bottom:1.5px solid var(--tech-future-neon);
}

/* PRICE LABELS FOR SERVICES */
.price {
  font-size:1rem;
  font-family:'Montserrat',Arial,sans-serif;
  color:var(--tech-future-neon);
  background:rgba(37,255,209,0.09);
  border-radius:7px;
  padding:2.5px 7px;
  font-weight:600;
  margin-left:5px;
}

/* ADDRESS & CONTACT LISTS */
address {
  font-style: normal;
  color:var(--brand-accent);
  font-size:1rem;
  margin:8px 0 12px 0;
}
address img {
  height:19px;width:19px;margin-right:6px;margin-bottom:-4px;
}

/* COOKIES BANNER + MODAL */
.cookie-banner {
  position:fixed;
  left:0;right:0;bottom:0;
  width:100vw;
  background:var(--tech-future-grey);
  color:#fff;
  box-shadow:0 -2px 10px #232a3366;
  padding: 20px 16px 22px 16px;
  z-index:13000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  border-top:3px solid var(--tech-future-neon);
  animation: cookiein 0.7s cubic-bezier(.42,.1,.45,1);
}
@keyframes cookiein {0%{transform:translateY(150%);}100%{transform:translateY(0);}}
.cookie-banner .cookie-banner-text{
  font-size:1rem;
  color:var(--brand-accent);
  max-width:520px;
  margin-right:12px;
}
.cookie-banner .cookie-banner-actions {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.cookie-banner button {
  background:var(--tech-future-neon);
  color:var(--tech-future-dark);
  font-weight:700;
  border:none;
  border-radius:var(--radius-sm);
  padding:9px 1.5em;
  min-width: 122px;
  font-size:1rem;
  transition:background 0.20s, color 0.18s;
  cursor:pointer;
  box-shadow: 0 0 8px #44FFD1AA;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background:var(--brand-secondary);
  color:var(--tech-future-dark);
  outline:none;
}
.cookie-banner button.settings {
  background:transparent;
  color:var(--tech-future-neon);
  border:1.5px solid var(--tech-future-neon);
  box-shadow:none;
  padding:9px 1.2em;
}
.cookie-banner button.settings:hover {background:var(--tech-future-neon);color:var(--tech-future-dark);}

.cookie-modal {
  display:none;
  position:fixed;
  inset:0;
  align-items:center;
  justify-content:center;
  z-index:15000;
  background:rgba(29,33,36,0.68);
  backdrop-filter:blur(7px);
  animation: modalin .5s ease;
}
@keyframes modalin {from{opacity:0;}to{opacity:1;}}
.cookie-modal.open {
  display:flex;
}
.cookie-modal-content {
  background:var(--tech-future-grey);
  border-radius:var(--radius-md);
  padding:36px 30px 30px 30px;
  box-shadow:0 12px 40px #191F263c;
  min-width:310px;
  max-width:96vw;
  color:var(--brand-accent);
  display: flex;
  flex-direction: column;
  gap:20px;
  position:relative;
  animation: modalin .5s ease;
}
.cookie-modal-content h2 {
  color:var(--brand-secondary);
  font-size: 1.5rem;
}
.cookie-modal-close {
  position: absolute;
  top:16px;
  right:18px;
  background:none;
  border:0;
  color:var(--brand-secondary);
  font-size:2.1rem;
  cursor:pointer;
  transition:color 0.2s;
  z-index:10;
}
.cookie-modal-close:hover,.cookie-modal-close:focus {color:var(--tech-future-neon);}
.cookie-modal-categories {
  display:flex;
  flex-direction:column;
  gap:19px;
  margin-top:18px;
}
.cookie-modal-category {
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--brand-accent);
}
.cookie-modal-category.essential label {
  font-weight:600;
  color:var(--tech-future-neon);
}
.cookie-modal-category input[type=checkbox] {
  accent-color:var(--tech-future-neon);
  width:17px;
  height:17px;
  margin-right:7px;
}
.cookie-modal-actions {
  display:flex;
  flex-direction:row;
  gap:15px;
  margin-top:18px;
}
.cookie-modal-actions button {
  background:var(--tech-future-neon);
  color:var(--tech-future-dark);
  font-weight:700;
  font-size:1rem;
  border:none;
  border-radius:var(--radius-sm);
  padding:9px 1.4em;
  min-width:111px;
  transition:background 0.17s, color 0.18s;
  cursor:pointer;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {background:var(--brand-secondary);color:var(--tech-future-dark);}

/* ANIMATIONS */
.card, .service-list>div, .recipe-cards>div, .blog-list>div, .testimonial-card {
  transition: box-shadow 0.23s, border 0.19s, transform 0.17s;
}
.card:hover, .service-list>div:hover, .recipe-cards>div:hover, .blog-list>div:hover, .testimonial-card:hover {
  transform: translateY(-3.5px) scale(1.03);
  box-shadow:0 12px 32px 0 #44FFD1cc, 0 0 0 2px var(--brand-secondary);
}
.cta, .cta.primary, .mobile-menu-toggle, .main-nav a, .mobile-nav a, .pagination a, .cookie-banner button, .cookie-modal-actions button {
  transition: background 0.2s, color 0.17s, box-shadow 0.19s, border 0.17s;
}

/* SPACING PATTERNS & GAPS (MANDATED) */
.section { margin-bottom:60px; padding:40px 20px; }
.card-container, .recipe-cards, .blog-list, .service-list { gap:24px; }
.card { margin-bottom:20px; }
.content-grid { gap:20px; justify-content:space-between; }
.text-image-section { gap:30px; }
.testimonial-card { gap:20px; padding:20px; margin-bottom:20px; }
.feature-item { gap:15px; }

/* RESPONSIVE DESIGN */
@media (max-width:1100px) {
  .container{max-width:99vw;padding:0 12px;}
}
@media (max-width:950px) {
  header .container {flex-direction:row;gap:10px;}
  .main-nav {gap:18px;}
  .footer-nav {gap:14px;}
}
@media (max-width:768px) {
  html {font-size: 96%;}
  .container {padding:0 10px;gap:20px;}
  .main-nav {display:none;}
  .mobile-menu-toggle {display:inline-block;}
  .cta.primary {padding:.65em 1.4em;font-size:1rem;}
  header .container {gap:8px;}
  section, .section {padding:22px 6px;}
  .content-wrapper {gap:14px;}
  .card-container, .recipe-cards, .blog-list, .service-list {
    flex-direction:column;
    gap:18px;
  }
  .card, .service-list>div, .blog-list>div, .testimonial-card, .recipe-cards>div {
    min-width:0; width:100%;
    padding:16px 10px;
  }
  .pagination {
    gap:7px;
  }
  .content-grid {gap:10px;}
  .text-image-section {
    flex-direction:column;
    gap:22px;
  }
  .testimonial-card {gap:11px;padding:12px 8px;}
}
@media (max-width:530px) {
  html {font-size:89%;}
  .mobile-menu-close {margin:10px 13px 4px 0;}
  .footer-nav, .footer-contact {font-size:0.97rem;}
}

/* ACCESSIBILITY FOCUS */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline:2px solid var(--brand-secondary);
  outline-offset:2px;
}

/* Z-INDEX LAYERING */
header {z-index:210;position:relative;}
.mobile-menu {z-index:11200;}
.cookie-banner {z-index:13000;}
.cookie-modal {z-index:15000;}

/* UTILITY */
.hide-on-mobile {display:none;}
@media (min-width:769px) {.hide-on-mobile {display:inherit;}}
.show-on-mobile {display:none;}
@media (max-width:768px) {.show-on-mobile {display:inherit;}}

/* END */