/* =========================
   CSS RESET & NORMALIZE
   ========================= */
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 {font-size: 16px; line-height: 1.4; height: 100%;}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #003153;
  background: #fff;
  overflow-x: hidden;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {display: block;}
ol,ul { list-style: none; }
a { color: inherit; text-decoration: none;  transition: color 0.2s;}
img { max-width: 100%; height: auto; vertical-align: middle; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
button { cursor: pointer;  transition: background 0.2s, color 0.2s; }
hr { border: 0; border-top: 1px solid #eee; }

/* ==================================
   BRAND & PALETTE — playful_dynamic
   =================================== */
:root {
  --primary: #003153;
  --secondary: #FDCB6E;
  --accent: #FFFFFF;
  --fun-blue: #009FFF;
  --fun-pink: #FF4F81;
  --fun-lime: #B5E043;
  --fun-orange: #FFA15F;
  --fun-cyan: #1DE9B6;
  --section-bg: #F8F9FD;
  --card-bg: #fff9ef;
  --testimonial-bg: #fff;
  --shadow: 0 4px 24px 0 rgba(0,49,83,0.10);
  --radius: 20px;
  --transition: 0.28s cubic-bezier(.5,.2,.17,1);
}

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

h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.5rem; color: var(--fun-blue); line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2rem; color: var(--fun-pink); margin-bottom: 18px; }
h3 { font-size: 1.25rem; color: var(--primary); margin-bottom: 10px; }
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
p, ul, li, span, label, input, button {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
.subheadline {
  color: var(--fun-orange);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 24px;
}

/* =======================
   CONTAINER & SPACING
   ======================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--section-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (max-width: 700px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
    border-radius: 12px;
  }
}

/*
====================
HEADER & NAVIGATION
====================
*/
header {
  width: 100%;
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 6px 16px 0 rgba(0,49,83,0.18);
  transition: box-shadow var(--transition);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 16px;
}\nheader a img { height: 45px; }
nav {
  display: flex;
  gap: 25px;
  align-items: center;
}
nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 3px 10px;
  border-radius: 20px;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
  position: relative;
}
nav a:hover, nav a:focus {
  background: var(--fun-cyan);
  color: var(--primary);
  box-shadow: 0 2px 6px 0 rgba(63,100,180,0.13);
}
.mobile-menu-toggle {
  display: none;
  background: var(--fun-pink);
  color: var(--accent);
  font-size: 2rem;
  border-radius: 0.6em;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  z-index: 1003;
  border: none;
}
.mobile-menu-toggle:active { transform: scale(1.06) rotate(5deg); }

@media (max-width: 900px) {
  nav { display: none; }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    justify-content: space-between;
  }
}

/* ============================
   MOBILE SLIDE-IN BURGER MENU
   ============================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(0,49,83,0.93);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.6,.2,.11,1);
}
.mobile-menu.open { transform: translateX(0); box-shadow: 0 0 0 100vw rgba(0,49,83,0.59); }
.mobile-menu-close {
  color: var(--accent);
  font-size: 2.2rem;
  background: var(--fun-orange);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 22px; right: 18px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2100;
  box-shadow: 0 2px 12px 0 rgba(253,203,110,0.17);
  transition: background var(--transition);
}
.mobile-menu-close:active { background: var(--fun-pink); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin-top: 120px;
}
.mobile-nav a {
  color: var(--secondary);
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  padding: 10px 20px;
  border-radius: 28px;
  background: transparent;
  transition: background var(--transition), color var(--transition);
  margin: 0 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--fun-blue);
  color: var(--accent);
  box-shadow: 0 2px 16px rgba(0,159,255,0.18);
}

@media (min-width: 900px) {
  .mobile-menu { display: none; }
}

/* =======================================
   FLEXBOX SPACING AND ALIGNMENT PATTERNS
   ======================================= */
.card-container,
.card-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container { gap: 24px; }
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(0,159,255,0.12);
  transform: translateY(-4px) scale(1.03) rotate(-2deg);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: var(--testimonial-bg);
  box-shadow: 0 4px 24px 0 rgba(253,203,110,0.08), 0 1px 3px 0 rgba(0,49,83,.06);
  color: #1C2636;
  margin-bottom: 20px;
  min-width: 220px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 11px 24px 0 rgba(255,79,129,0.15);
  transform: scale(1.03) rotate(1deg);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* ----------------
   FLEX CONTAINERS
   ---------------- */
.feature-grid, .event-list, .event-cards, .exhibition-cards, .festival-cards, .review-snippet, .review-highlights, .review-clips {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}
.event-list article, .event-cards article, .exhibition-cards article, .festival-cards article {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 260px;
  min-width: 220px;
  padding: 22px 22px 17px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.event-list article:hover, .event-cards article:hover, .exhibition-cards article:hover, .festival-cards article:hover {
  box-shadow: 0 6px 26px 0 rgba(181,224,67,0.14);
  transform: translateY(-2px) scale(1.02) rotate(-0.5deg);
}

@media (max-width: 900px) {
  .feature-grid, .event-list, .event-cards, .exhibition-cards, .festival-cards, .review-snippet, .review-highlights, .review-clips {
    flex-direction: column;
    gap: 18px;
  }
  .card-container, .content-grid {
    flex-direction: column;
  }
}

/* ========================================
   BUTTONS & CALL TO ACTIONS – playful
   ======================================== */
.cta-btn, .quick-filters button, .category-tags button, .filter-by-type button, .exhibition-cards button, .event-list a, .event-cards a {
  background: var(--fun-pink);
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 24px;
  padding: 10px 28px;
  margin: 14px 0 0 0;
  border: none;
  box-shadow: 0 2px 10px rgba(255,79,129,0.08);
  position: relative;
  transition: background var(--transition), color var(--transition), transform 0.13s, box-shadow .18s;
  letter-spacing: 0.06em;
}
.cta-btn:hover, .quick-filters button:hover, .category-tags button:hover, .filter-by-type button:hover, .exhibition-cards button:hover, .event-list a:hover, .event-cards a:hover {
  background: var(--fun-lime);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(181,224,67,0.16);
  transform: scale(1.05) rotate(-2.5deg);
}
.quick-filters button, .category-tags button, .filter-by-type button, .exhibition-cards button {
  background: var(--fun-cyan);
  color: var(--primary);
  padding: 7px 24px;
  font-size: 1rem;
  border-radius: 20px;
  margin: 0 10px 0 0;
  font-weight: 600;
}
.exhibition-cards button {
  background: var(--fun-orange);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(255,161,95,0.13);
  font-size: 1rem;
}

/* Tag/Label Pills */
.category-tag {
  display: inline-block;
  background: var(--fun-blue);
  color: #fff;
  font-size: 0.95rem;
  border-radius: 18px;
  padding: 4px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.date-label {
  display: inline-block;
  background: var(--fun-pink);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  border-radius: 14px;
  padding: 3px 13px;
  font-weight: 500;
  margin-bottom: 4px;
}

/* =========================
   STAR RATING in reviews
   ========================= */
.star-rating {
  font-size: 1.2em;
  color: var(--fun-orange);
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-top: 0.5em;
}

/* =====================
   BREADCRUMBS (future)
   ===================== */
.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.97em;
  color: var(--fun-blue);
  margin-bottom: 21px;
}

/*
====================
FOOTER
====================
*/
footer {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 35px 0 20px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  gap: 24px;
}
.footer-links {
  display: flex;
  gap: 30px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--secondary);
  font-size: 1.07rem;
  font-weight: 600;
  transition: color 0.15s, text-decoration 0.16s;
  border-radius: 16px;
  padding: 2.5px 12px;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--fun-pink);
  text-decoration: underline;
  background: var(--accent);
}
.footer-contact {
  display: flex;
  gap: 27px;
  flex-wrap: wrap;
  font-size: 1rem;
  align-items: center;
  margin-bottom: 10px;
}
.footer-contact img {
  height: 1.25em;
  margin-right: 7px;
  vertical-align: text-bottom;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 9px;
}
.footer-social span { font-size: 1.04rem; color: var(--secondary); font-weight: 700;}
.footer-social img {
  height: 27px;
  width: 27px;
  cursor: pointer;
  border-radius: 50%;
  transition: filter 0.14s, transform 0.12s;
  background: var(--accent);
  margin-right: 2px;
}
.footer-social img:hover { transform: scale(1.08) rotate(-4deg); filter: brightness(1.075) hue-rotate(12deg);}
@media (max-width: 800px){
  .footer-links, .footer-contact {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
  }
}

/* =============================
     RESPONSIVE DESIGN
============================= */
@media (max-width: 768px) {
  .container { padding: 0 7vw; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .section { padding: 18px 6vw; }
  .feature-grid, .event-list, .event-cards, .exhibition-cards, .festival-cards, .review-snippet, .review-highlights, .review-clips {
    gap: 13px;
  }
  nav a, .footer-links a { font-size: 1rem; padding: 2.5px 7px!important; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.33rem; }
  h2 { font-size: 1.15rem; }
  .container { padding: 0 3vw; }
}

/* ================================
   SPECIALTY SECTIONS/COMPONENTS
   ============================== */
/* Planen Sie Ihr Kultur-Erlebnis + Thank you page */
.confirmation {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 35px 15px;
  box-shadow: 0 4px 16px rgba(253,203,110,0.12);
}
.confirmation h2 { color: var(--fun-blue); margin-bottom: 7px; }
.confirmation p { color: var(--primary); margin-bottom: 8px; }

/* Tags, Filters, Quick-Filters */
.quick-filters, .category-tags, .filter-by-type {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin: 14px 0 18px 0;
  font-size: 1.08rem;
}
.quick-filters span, .filter-by-type span {
  font-weight: bold;
  color: var(--fun-blue);
  margin-right: 8px;
}

/* Highlight event promotion */
.highlight-event {
  background: linear-gradient(120deg, var(--fun-blue) 0%, var(--fun-lime) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px 22px;
  box-shadow: 0 4px 30px 0 rgba(0,159,255,0.11);
  margin: 14px 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.highlight-event h3 { color: var(--accent); }
.highlight-event a.cta-btn {
  background: var(--accent);
  color: var(--primary);
  margin-top: 9px;
  border-radius: 22px;
}
.highlight-event a.cta-btn:hover {
  background: var(--fun-orange);
  color: var(--primary);
}

/* List styles for holidays / locations */
.holiday-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 16px 0 12px 0;
  font-size: 1.13rem;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ===============
   Table-Like Inputs (Date/Search for calendar)
   =============== */
.calendar-overview {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 13px;
  margin-bottom: 18px;
}
.calendar-overview input[type="date"],
.calendar-overview input[type="text"],
.calendar-overview input[type="search"],
#event-search {
  border: 2px solid var(--fun-blue);
  border-radius: 19px;
  padding: 7px 18px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--primary);
  outline: none;
  background: #fff;
  transition: border-color 0.14s;
}
.calendar-overview input:focus {
  border-color: var(--fun-lime);
}

/* ===============================
   COOKIE BANNER + COOKIE MODAL
   =============================== */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(120%);
  width: auto;
  min-width: 275px;
  max-width: 95vw;
  background: var(--primary);
  color: #fff;
  border-radius: 19px 19px 0 0;
  box-shadow: 0 -3px 20px 0 rgba(0,49,83,0.18);
  z-index: 3000;
  padding: 22px 22px 17px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-size: 1.04rem;
  flex-direction: row;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.48s cubic-bezier(.7,.2,.11,1.05), opacity 0.22s;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
  animation: cookieBopIn 0.7s cubic-bezier(.47,1.64,.41,.8);
}
@keyframes cookieBopIn {
  0% { transform: translateX(-50%) translateY(140%) scale(0.97) rotate(-1deg); opacity: 0; }
  73% { transform: translateX(-50%) translateY(-7%) scale(1.04) rotate(3deg); }
  100% { transform: translateX(-50%) translateY(0) scale(1) rotate(0deg); opacity: 1; }
}
.cookie-banner p {
  margin: 0;
  color: #fff;
  font-size: 1.04rem;
  flex: 2 1 280px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 11px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button {
  border-radius: 18px;
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 18px;
  margin: 0;
  border: none;
  box-shadow: none;
  background: var(--fun-orange);
  color: var(--primary);
  transition: background var(--transition), color var(--transition), transform 0.11s;
}
.cookie-banner button:hover {
  background: var(--fun-pink);
  color: #fff;
  transform: rotate(-2deg) scale(1.07);
}
.cookie-banner .cookie-settings-btn {
  background: var(--fun-cyan);
  color: var(--primary);
}
.cookie-banner .cookie-settings-btn:hover { background: var(--fun-blue); color: #fff;}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%; top: 52%;
  transform: translate(-50%, -50%) scale(0.85);
  background: #fff;
  color: var(--primary);
  border-radius: 24px;
  z-index: 3500;
  box-shadow: 0 9px 38px 0 rgba(0,49,83,0.17);
  padding: 34px 30px 26px 30px;
  min-width: 290px;
  max-width: 98vw;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 21px;
  transition: opacity 0.23s, transform 0.36s cubic-bezier(.49,0,.1,1.16);
  font-size: 1.09rem;
  font-family: inherit;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
  animation: modalBounceIn .55s cubic-bezier(.58,1.28,.41,.87);
}
@keyframes modalBounceIn {
  0% { opacity:0; transform: translate(-50%,-55%) scale(0.93) rotate(-2deg); }
  60% { transform: translate(-50%,-48%) scale(1.04) rotate(1deg); }
  100% { opacity:1; transform: translate(-50%,-50%) scale(1) rotate(0deg); }
}
.cookie-modal h2 {
  color: var(--fun-blue);
  margin-bottom: 13px;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 14px;
}
.cookie-modal label {
  font-weight: 600;
  color: var(--fun-pink);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
}
.cookie-modal input[type="checkbox"] {
  appearance: none;
  background: #eee;
  border: 2.5px solid var(--fun-blue);
  width: 1.25em; height: 1.25em;
  border-radius: 6px;
  vertical-align: middle;
  margin-right: 0.58em;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  outline: none;
}
.cookie-modal input[type="checkbox"]:checked {
  background: var(--fun-lime);
  border-color: var(--fun-pink);
  box-shadow: 0 0 6px 0 rgba(255,79,129,0.14);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 11px;
}
.cookie-modal button {
  border-radius: 15px;
  font-weight: 700;
  font-size: 1rem;
  padding: 7px 18px;
  margin: 0;
  border: none;
  box-shadow: none;
  background: var(--fun-orange);
  color: var(--primary);
  transition: background var(--transition), color var(--transition), transform 0.12s;
}
.cookie-modal button:hover {
  background: var(--fun-pink);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}

/* CATEGORY: essential always enabled */
.cookie-modal .cookie-category.essential label {
  opacity: 0.7;
  color: var(--fun-blue);
}
.cookie-modal .cookie-category.essential input[type="checkbox"] {
  background: var(--fun-lime);
  border-color: var(--fun-blue);
  pointer-events: none;
  opacity: 0.6;
}

/* MODAL OVERLAY */
.cookie-modal-overlay {
  position: fixed;
  left:0;top:0;right:0;bottom:0;
  background: rgba(0,49,83,0.45);
  z-index: 3400;
  opacity:0;
  pointer-events:none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.visible {
  opacity:1;
  pointer-events:all;
}

/* ================================
   ANIMATION: bouncey floating cards
   ================================ */
@keyframes bobble {
  0%,100% { transform: translateY(0) scale(1); }
  16% { transform: translateY(-4px) scale(1.025); }
  33% { transform: translateY(2px) scale(0.97); }
  66% { transform: translateY(-2px) scale(1.02); }
  83% { transform: translateY(1px) scale(0.99); }
}
.card:hover, .event-cards article:hover, .exhibition-cards article:hover, .testimonial-card:hover {
  animation: bobble .55s 1;
}

/* =============================
   UTILITY CLASSES
   =========================== */
.text-center { text-align: center!important; }
.mt-8 { margin-top: 8px!important; }
.mt-16 { margin-top: 16px!important; }
.mb-16 { margin-bottom: 16px!important; }
.mb-32 { margin-bottom: 32px!important; }
.rounded { border-radius: var(--radius); }
.shadow { box-shadow: var(--shadow); }

/* Emphasis/Highlighting */
mark {
  background: var(--fun-lime);
  color: var(--primary);
  border-radius: 4px;
  padding: 0.05em 0.18em;
}

/* ===============
   ACCESSIBILITY CONTRAST (testimonials/reviews)
   =============== */
.testimonial-card p, .testimonial-card span {
  color:#211a1e;
  font-size: 1.06rem;
}
.testimonial-card span {
  font-style: italic;
  color: #5a5a5a;
}

/* =============
   FORM ELEMENTS
   ============= */
input[type="text"], input[type="email"], input[type="date"], textarea {
  border: 2px solid var(--fun-blue);
  border-radius: 19px;
  padding: 10px 24px;
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--primary);
  background: #fff;
  transition: border-color var(--transition);
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus, input[type="date"]:focus {
  border-color: var(--fun-lime);
}
textarea {
  min-height: 110px;
  resize: vertical;
}
label { display: block; font-weight: bold; margin-bottom: 7px; color: var(--fun-blue); }

/* Links inside text */
p a {
  color: var(--fun-pink);
  text-decoration: underline;
  transition: color var(--transition);
}
p a:hover { color: var(--fun-blue); }

/* ===============
   MISCELLANEOUS
   =============== */
::-webkit-input-placeholder { color: #abb5b0; }
::-moz-placeholder { color: #abb5b0; }
:-ms-input-placeholder { color: #abb5b0; }
::placeholder { color: #abb5b0; }

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