/* KUCHYNSKÉ DIVY STYLE.CSS – Playful Dynamic / Flexbox-only / Mobile-first */

/* ================= RESET & NORMALIZE ================= */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
  background: #F6F4EF;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #304251;
  line-height: 1.7;
  background: #F6F4EF;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #BFA26B;
  text-decoration: none;
  transition: color 0.25s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #304251;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #304251;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: #BFA26B;
}
strong {
  color: #BFA26B;
  font-weight: 700;
}

/* ================= CORE LAYOUT & CONTAINERS ================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  max-width: 700px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ================= PLAYFUL DYNAMIC COLORS ================= */
:root {
  --primary: #304251;
  --secondary: #BFA26B;
  --accent: #F6F4EF;
  --fun-blue: #41B6E6;   /* Playful blue */
  --fun-pink: #EF548B;   /* Playful bright */
  --fun-lime: #C5E86C;   /* Accent lime */
  --fun-orange: #FFB347; /* Accent orange */
  --shadow: rgba(49, 66, 81, 0.10);
  --card-bg: #FFF;
}

/* ================= TYPOGRAPHY STYLES ================= */
body, p, ul, li, span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
h1, h2, h3, .cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
}
.cta-btn {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  background: linear-gradient(90deg, #BFA26B 60%, #41B6E6 100%);
  border-radius: 30px;
  padding: 14px 40px;
  box-shadow: 0 3px 16px var(--shadow);
  margin-top: 8px;
  margin-bottom: 8px;
  border: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  display: inline-block;
  z-index: 1;
}
.cta-btn::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%) scale(0.7);
  width: 17px;
  height: 17px;
  background: url('../assets/favicon.svg') no-repeat center/contain;
  opacity: 0.8;
  pointer-events: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #41B6E6 60%, #BFA26B 100%);
  transform: translateY(-2px) scale(1.045) rotate(-2deg);
  box-shadow: 0 8px 28px rgba(49,66,81,0.18);
}

/* ================= HEADER & NAVIGATION ================= */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px var(--shadow);
  z-index: 900;
  position: sticky;
  top: 0;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  width: 100%;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
header nav li {
  list-style: none;
}
header nav a {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  border-radius: 12px;
  padding: 8px 16px;
  transition: background 0.2s, color 0.2s, transform 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #41B6E6;
  color: #fff;
  transform: rotate(-2deg) scale(1.09);
}
header .cta-btn {
  margin-left: 18px;
  margin-right: 2px;
}

/* ============= MOBILE NAVIGATION ============= */
.mobile-menu-toggle {
  display: none;
  position: relative;
  background: #41B6E6;
  border-radius: 50%;
  color: #fff;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  z-index: 1100;
  border: none;
  box-shadow: 0 2px 10px #BFA26B22;
  margin-left: 10px;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 300px;
  background: #BFA26B;
  color: #fff;
  box-shadow: -6px 0 24px #30425122;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.7,0,0.3,1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 26px 26px 18px;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 18px;
  margin-right: -7px;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: #41B6E6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.1rem;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 0 11px 8px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #41B6E6;
  color: #fff;
}

@media (max-width: 1024px) {
  header nav ul {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  header nav ul {
    display: none;
  }
  header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ================= MAIN SECTIONS, CARDS, FLEX LAYOUTS ================= */
.section {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 6px 26px var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 16px var(--shadow);
  padding: 28px 22px;
  min-width: 240px;
  transition: transform 0.17s, box-shadow 0.2s;
}
.card:hover, .card:focus-within {
  transform: translateY(-4px) scale(1.022) rotate(-1deg);
  box-shadow: 0 10px 36px #30425133;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #FFF8E7;
  border-radius: 24px;
  box-shadow: 0 3px 14px #BFA26B25;
  font-size: 1.12rem;
  color: #304251;
  position: relative;
  max-width: 540px;
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: box-shadow 0.18s, background 0.22s;
}
.testimonial-card:hover {
  background: #FDEFFF;
  box-shadow: 0 8px 30px #41B6E644;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

.section ul, .section ol {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 8px 0 0 0;
  padding-left: 0;
}
.section li {
  position: relative;
  padding-left: 28px;
  min-height: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}
.section li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url('../assets/favicon.svg') no-repeat center/contain;
  opacity: 0.7;
}
.section ul li img {
  margin: 0 9px 0 0;
  width: 18px;
  filter: drop-shadow(0 3px 3px #BFA26B18);
}

.content-wrapper > ul {
  margin-bottom: 8px;
}

/* ========== Footer ========== */
footer {
  background: #304251;
  color: #fff;
  width: 100%;
  box-shadow: 0 -2px 26px #BFA26B22;
  padding: 36px 0 14px 0;
  font-size: 1rem;
}
footer .container {
  max-width: 1100px;
}
footer .content-wrapper {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
}
footer nav a {
  color: #BFA26B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 10px;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
}
footer .content-wrapper div {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}
footer span, footer .content-wrapper div span {
  color: #fff;
  font-size: 0.95rem;
  opacity: 0.93;
}
footer span img {
  vertical-align: middle;
  margin-right: 7px;
  width: 17px;
  filter: drop-shadow(0 3px 3px #BFA26B11);
}

/* ========== Playful Animated Effects & Microinteractions ========== */
.cta-btn, .card, .testimonial-card {
  transition: transform 0.17s, box-shadow 0.17s, background 0.2s;
}
.card:hover, .testimonial-card:hover, .cta-btn:focus {
  box-shadow: 0 6px 30px #41B6E644;
  transform: translateY(-4px) scale(1.02) rotate(-2deg);
}
.cta-btn:active {
  transform: scale(0.97);
}
/* floating playful graphics on some backgrounds */
.section:nth-child(2n) {
  background: #F5EDFF;
}
.section:nth-child(2n+1) {
  background: #FFF8E7;
}

/* Floating ball decor (example, optional) */
@keyframes float {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.06); }
  100% { transform: translateY(0) scale(1); }
}
.cta-btn::after {
  animation: float 2.5s infinite linear;
}

/* ================= FORMATTING & HIERARCHY ================= */
@media (min-width: 700px) {
  h1 { font-size: 3.1rem; }
  h2 { font-size: 2.4rem; }
  h3 { font-size: 1.35rem; }
}
@media (min-width: 900px) {
  .content-wrapper { gap: 36px; }
  .section { padding: 60px 34px; }
  .card {
    min-width: 320px;
    padding: 26px 30px;
  }
}

/* ================= RESPONSIVE FLEX LAYOUTS ================= */
@media (max-width: 768px) {
  .section { flex-direction: column; padding: 30px 6vw; }
  .content-grid, .card-container, .content-wrapper { flex-direction: column !important; gap: 20px; }
  .text-image-section { flex-direction: column; gap: 22px; }
}
@media (max-width: 600px) {
  .section { padding: 24px 2vw; margin-bottom: 36px; border-radius: 18px; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.14rem; }
  footer { padding: 20px 0; }
}

/* ===================== COOKIE CONSENT BANNER ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fffbea;
  border-top: 2.5px solid #BFA26B;
  box-shadow: 0 -4px 18px #30425118;
  z-index: 3000;
  animation: cookieAppear 0.6s cubic-bezier(0.77,0,0.18,1);
  padding: 18px 8px;
  gap: 12px;
}
@keyframes cookieAppear {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-msg {
  color: #304251;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 20px;
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 3px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px #BFA26B18;
}
.cookie-btn--accept {
  background: #41B6E6;
  color: #fff;
}
.cookie-btn--accept:hover {
  background: #BFA26B;
  color: #FFF;
}
.cookie-btn--reject {
  background: #EF548B;
  color: #fff;
}
.cookie-btn--reject:hover {
  background: #304251;
  color: #FFF;
}
.cookie-btn--settings {
  background: #F5EDFF;
  color: #304251;
}
.cookie-btn--settings:hover {
  background: #BFA26B;
  color: #fff;
}

/* ==== Cookie Settings Modal ==== */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%) scale(1);
  min-width: 320px;
  background: var(--card-bg);
  border-radius: 26px;
  box-shadow: 0 10px 44px #BFA26B44;
  z-index: 4000;
  padding: 32px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  animation: cookieModalShow 0.34s cubic-bezier(0.7,0,0.2,1);
}
@keyframes cookieModalShow {
  from { opacity:0; transform: translate(-50%,0) scale(0.88); }
  to   { opacity:1; transform: translate(-50%,-60%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.5rem;
  color: #BFA26B;
  margin-bottom: 8px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 9px;
  width: 100%;
}
.cookie-cat input[type="checkbox"] {
  accent-color: #41B6E6;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.cookie-cat label {
  font-size: 1rem;
}
.cookie-cat--essential input[type="checkbox"] {
  accent-color: #BFA26B;
}
.cookie-cat--essential label {
  font-weight: 700;
  color: #BFA26B;
}
.cookie-cat--info {
  font-size: 0.93rem;
  color: #888;
  margin-bottom: 6px;
  padding-left: 36px;
}
.cookie-modal .cookie-btn {
  width: 85%;
  margin-top: 10px;
}
.cookie-modal .cookie-btn--cancel {
  background: #efefef;
  color: #304251;
}
.cookie-modal .cookie-btn--cancel:hover {
  background: #FDEFFF;
}

@media (max-width: 500px) {
  .cookie-modal { min-width: 90vw; padding: 18px 8vw; }
  .cookie-modal h2 { font-size: 1.18rem; }
}

/* ============== Other Components & Text Hierarchy ============== */
p, ul, ol, li {
  margin-bottom: 4px;
  font-size: 1rem;
}
ul strong, ol strong {
  color: #BFA26B;
}
h2 + ul, h3 + ul { margin-top: 8px; }

/* ========== Misc Links (policy etc.) ========== */
.text-section a {
  color: #41B6E6;
  text-decoration: underline;
  font-weight: 550;
}
.text-section a:hover {
  color: #EF548B;
  text-decoration: underline wavy;
}

/* ========== ENSURE SPACING & FLEX CONSISTENCY ========== */
.section, .container, .content-wrapper, .card-container, .content-grid, .testimonial-card, .feature-item, .text-image-section {
  box-sizing: border-box;
}
.section, .testimonial-card, .card, .feature-item {
  margin-bottom: 24px;
}
.card, .testimonial-card {
  margin-bottom: 20px;
}
.section + .section {
  margin-top: 24px;
}

/* ========== ACCESSIBILITY - CONTRAST ========== */
.testimonial-card p, .testimonial-card span {
  color: #304251;
  background: none;
}
.testimonial-card strong {
  color: #BFA26B;
}

/* ========== Scrollbar for desktop ========== */
::-webkit-scrollbar {
  width: 8px;
  background: #F6F4EF;
}
::-webkit-scrollbar-thumb {
  background: #BFA26B88;
  border-radius: 16px;
}

/* ========== Decorative ========== */
@media (min-width: 950px) {
  .section {
    border-radius: 40px;
  }
  .testimonial-card { box-shadow: 0 16px 40px #41B6E629; }
}

/* ================= END ================= */
