/* =================================================
   CSS RESET & BASE NORMALIZATION
================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F6F2;
  color: #232537;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #205293;
  text-decoration: none;
  transition: color .18s ease;
}
a:hover, a:focus {
  color: #EACD74;
}
ul, ol {
  list-style-position: inside;
  margin: 0 0 16px 0;
}
button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  border: none;
}
input, textarea {
  font-family: inherit;
  font-size: 1rem;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', Arial, sans-serif;
  color: #205293;
  margin-bottom: 8px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; line-height: 1.13; margin-bottom: 20px; }
h2 { font-size: 1.5rem;  line-height: 1.16; margin-bottom: 16px; }
h3 { font-size: 1.15rem; line-height: 1.18; margin-bottom: 10px; }

/* =================================================
   BRAND COLORS + COMMONS
================================================= */
:root {
  --primary-color: #205293;
  --secondary-color: #EACD74;
  --accent-color: #F7F6F2;
  --danger-color: #E35D6A;
  --success-color: #50C878;
  --shadow-color: rgba(32,82,147,0.1);
  --text-dark: #232537;
  --text-light: #fff;
  --card-radius: 18px;
  --btn-radius: 22px;
  --transition: .22s cubic-bezier(.77, 0, .175, 1);
  --spacing-xs: 8px;
  --spacing-s: 16px;
  --spacing-m: 24px;
  --spacing-l: 32px;
  --spacing-xl: 40px;
}

body {
  background: var(--accent-color);
  color: var(--text-dark);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1170px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/* =================================================
   HEADER / NAVIGATION (Desktop + Mobile)
================================================= */
header {
  background: #fff;
  box-shadow: 0 4px 20px -8px var(--shadow-color);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 0;
  min-height: 78px;
}
header a img {
  height: 50px;
  margin-right: 12px;
}

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
}
.main-nav a {
  position: relative;
  padding: 7px 3px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary-color);
  color: var(--primary-color);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  margin-left: 18px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-color);
  transition: background var(--transition), box-shadow var(--transition);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary-color);
  color: var(--accent-color);
  box-shadow: 0 2px 10px 0 rgba(32,82,147,0.07);
}

/* ========= Mobile Menu Overlay ========= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(240, 241, 253, 0.98);
  box-shadow: 0 10px 40px 0 rgba(32,82,147,0.09);
  z-index: 11111;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-105%);
  transition: transform .33s cubic-bezier(.68,.11,.32,.98);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  margin: 22px 0 0 18px;
  background: var(--danger-color);
  color: var(--text-light);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  transition: background var(--transition);
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--primary-color);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 36px;
  gap: 8px;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  display: block;
  font-size: 1.32rem;
  padding: 15px 0;
  color: var(--primary-color);
  border-radius: 8px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--secondary-color);
  color: var(--danger-color);
}

/* =================================================
   HERO SECTIONS
================================================= */
.hero, .hero-weekend, .hero-weather, .hero-indoor {
  padding: 40px 0 0 0;
  margin-bottom: 0;
  background: #FFD83B;
  background: linear-gradient(90deg, #FFD83B 50%, #EACD74 100%);
  border-radius: 0 0 38px 38px;
  box-shadow: 0 4px 36px -12px var(--shadow-color);
  min-height: 340px;
}
.hero .container, .hero-weekend .container, .hero-weather .container, .hero-indoor .container {
  align-items: center;
}
.hero h1, .hero-weekend h1, .hero-weather h1, .hero-indoor h1 {
  color: var(--primary-color);
  font-family: 'Raleway', Arial, sans-serif;
  text-shadow: 2px 2px 0 #EACD74;
  font-size: 2.4rem;
  margin-bottom: 6px;
  word-break: break-word;
}
.hero p.subheadline {
  font-size: 1.2rem;
  color: var(--danger-color);
  margin-bottom: 32px;
}

.cta-button {
  background: var(--primary-color);
  color: #fff;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  padding: 16px 44px;
  border-radius: var(--btn-radius);
  box-shadow: 0 2px 16px 0 rgba(32, 82, 147, .10);
  display: inline-block;
  margin-top: 25px;
  transition: background var(--transition), transform var(--transition), color var(--transition);
  letter-spacing: 0.05em;
}
.cta-button:hover, .cta-button:focus {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: scale(1.065);
}

/* =================================================
   FEATURES, ACTIVITIES, CARDS, FLEX WRAPPERS
================================================= */
.features, .features-list, .features-indoor, .activity-weather-grid, .activity-indoor-grid, .feature-grid {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid, .activity-indoor-grid, .activity-weather-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-item, .activity-indoor, .activity-weather {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: 0 3px 18px 0 var(--shadow-color);
  padding: 38px 22px;
  min-width: 250px;
  flex: 1 1 285px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s, transform .18s;
  border: 2.5px solid transparent;
}
.feature-item:hover, .activity-indoor:hover, .activity-weather:hover {
  box-shadow: 0 14px 32px -8px var(--shadow-color);
  border-color: var(--secondary-color);
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
}
.feature-item img, .activity-indoor img, .activity-weather img {
  width: 54px;
  height: 54px;
  margin-bottom: 8px;
}

.activity-grid, .idea-list, .team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.activity-item, .idea, .team-member {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: 0 2px 16px 0 var(--shadow-color);
  padding: 28px 18px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2px solid transparent;
  min-width: 235px;
  max-width: 315px;
  transition: box-shadow .18s, border .22s, transform .19s;
}
.activity-item:hover, .idea:hover, .team-member:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 8px 26px 0 var(--shadow-color);
  transform: scale(1.025);
}

/* Distinctive team bios (about page) */
.team-bios {
  gap: 24px;
  justify-content: space-between;
}
.team-member h3 {
  color: var(--danger-color);
  font-size: 1.1rem;
}

/* Activity filters */
.activity-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 26px;
}
.activity-filters button {
  background: var(--secondary-color);
  color: var(--primary-color);
  font-family: 'Raleway', Arial, sans-serif;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 18px;
  border: 1.5px solid var(--primary-color);
  margin-right: 6px;
  margin-top: 2px;
  transition: background var(--transition), color var(--transition), border var(--transition);
}
.activity-filters button:hover, .activity-filters button:focus {
  background: var(--primary-color);
  color: var(--accent-color);
  border-color: var(--danger-color);
}

/* Lists inside sections */
.features ul,
.features-list ul,
.features-indoor ul,
.tips-section ul,
.ideas-section ul,
.planning-indoor-tips ul,
.weekend-features ul {
  margin: 0 0 12px 18px !important;
  list-style-type: disc !important;
  font-size: 1.02rem;
  line-height: 1.65;
}

/* Special sections */
.cta-box {
  margin-bottom: 60px;
  padding: 40px 0;
  background: var(--secondary-color);
  border-radius: 34px;
  box-shadow: 0 4px 22px -4px var(--shadow-color);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.cta-box::after {
  content: "";
  display: block;
  position: absolute;
  right: -72px; bottom: -22px;
  width: 170px; height: 112px;
  background: url('../assets/icons/icon-rainbow.svg') no-repeat center;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.cta-box h2 {
  color: var(--primary-color);
}

/* =================================================
   TESTIMONIALS & CARDS
================================================= */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .content-wrapper {
  gap: 32px;
}
.testimonial-card {
  background: #fff;
  color: var(--text-dark);
  border-radius: var(--card-radius);
  box-shadow: 0 3px 18px 0 var(--shadow-color);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  min-height: 78px;
  margin-bottom: 20px;
  font-size: 1.065rem;
  position: relative;
  border: 2.5px solid var(--secondary-color);
  transition: box-shadow .18s, border .22s;
  z-index: 2;
}
.testimonial-card:hover {
  border-color: var(--danger-color);
  box-shadow: 0 8px 26px 0 var(--shadow-color);
}
.user-name {
  font-family: 'Raleway', Arial, sans-serif;
  color: var(--primary-color);
  font-size: 1rem;
  margin-left: 8px;
}

/* =================================================
   LEGAL, ABOUT, THANK YOU, ETC
================================================= */
.legal-section, .about-section, .thankyou-section, .contact-section, .faq-section, .planning-tools, .activity-by-weather, .tips-section, .weekend-features, .team-section, .planning-indoor-tips, .ideas-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section, .founder-message, .map-placeholder {
  margin-bottom: 22px;
}
.text-section ul li, ul li {
  margin-left: 0;
  margin-bottom: 7px;
  line-height: 1.55;
}

/* Map placeholder styling */
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 13px;
  padding: 12px 22px;
  background: #EACD74;
  border-radius: 14px;
  font-size: 1.06rem;
  color: var(--primary-color);
}
.map-placeholder img {
  width: 32px;
  height: 32px;
}

/* FAQ Accordion styling */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 var(--shadow-color);
  padding: 22px 18px;
  border: 2px solid var(--secondary-color);
  margin-bottom: 10px;
  transition: box-shadow .14s, border .15s;
}
.faq-item:hover {
  box-shadow: 0 8px 24px 0 var(--shadow-color);
  border-color: var(--danger-color);
}

/* =================================================
   FOOTER
================================================= */
footer {
  background: #205293;
  color: #fff;
  padding: 40px 0 0 0;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 0 32px 0;
}
.footer-logo-contact img {
  height: 40px;
  margin-bottom: 11px;
}
.footer-logo-contact p {
  color: #fff;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 7px;
}
.footer-logo-contact a {
  color: #fff;
  border-bottom: 1.5px dotted var(--secondary-color);
}
.footer-logo-contact a:hover {
  color: var(--secondary-color);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary-color);
}
.footer-social {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 12px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  border-radius: 50%;
  padding: 8px;
  transition: background var(--transition), transform var(--transition);
}
.footer-social a:hover {
  background: #fff;
  transform: scale(1.12) rotate(-6deg);
}
.footer-social img {
  width: 27px;
  height: 27px;
}
/* Newsletter */
.footer-newsletter {
  flex: 1;
}
.footer-newsletter form {
  display: flex;
  flex-direction: row;
  gap: 9px;
  margin-top: 4px;
}
.footer-newsletter input[type="email"] {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1.5px solid #eee;
  font-size: 1rem;
  flex: 1 0 135px;
  outline: none;
  transition: border var(--transition);
}
.footer-newsletter input[type="email"]:focus {
  border: 1.5px solid var(--secondary-color);
}
.footer-newsletter button {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 14px;
  padding: 7px 22px;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1.065rem;
  font-weight: 700;
  border: 2px solid var(--primary-color);
  transition: background var(--transition), color var(--transition), border var(--transition);
}
.footer-newsletter button:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

/* =================================================
   COOKIE BANNER & MODAL
================================================= */
#cookie-banner, .cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99100;
  background: #205293;
  color: #fff;
  padding: 24px 18px 24px 20px;
  box-shadow: 0 -4px 30px 0 var(--shadow-color);
  border-radius: 30px 30px 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  animation: cookieSlideUp .6s cubic-bezier(.18,.94,.59,1.09);
}
@keyframes cookieSlideUp {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 340px;
  font-size: 1.05rem;
  margin-right: 16px;
}
.cookie-banner__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner button, #cookie-banner button {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 12px;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  padding: 9px 22px;
  border: 2px solid var(--primary-color);
  margin-right: 4px;
  margin-bottom: 4px;
  transition: background var(--transition), color var(--transition), border var(--transition);
}
.cookie-banner button:focus,
.cookie-banner button:hover,
#cookie-banner button:focus,
#cookie-banner button:hover {
  background: var(--danger-color);
  color: #fff;
  border-color: var(--danger-color);
}

/* Cookie Modal */
#cookie-modal, .cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(37,44,63,0.88);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .3s;
}
#cookie-modal.open, .cookie-modal.open {
  display: flex;
}
@keyframes fadeInModal {
  from { opacity:0; }
  to { opacity:1; }
}

.cookie-modal__content, #cookie-modal .modal-content {
  background: #fff;
  border-radius: 24px;
  max-width: 430px;
  width: 96%;
  padding: 34px 32px 24px 32px;
  box-shadow: 0 6px 38px 0 var(--shadow-color);
  text-align: left;
  position: relative;
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal__close {
  position: absolute;
  top: 18px;
  right: 19px;
  background: var(--danger-color);
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  border: 1.5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: var(--primary-color);
}
.cookie-modal__title {
  font-size: 1.18rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--secondary-color);
  width: 18px;
  height: 18px;
}
.cookie-category label {
  font-size: 1.04rem;
}
.cookie-category.essential label {
  color: var(--success-color);
  font-weight: bold;
}

.cookie-modal__actions {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}
.cookie-modal__actions button {
  background: var(--primary-color);
  color: #fff;
  border-radius: 11px;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  padding: 8px 19px;
  border: 2px solid var(--secondary-color);
  transition: background var(--transition), color var(--transition), border var(--transition);
}
.cookie-modal__actions button:focus, .cookie-modal__actions button:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--danger-color);
}

/* =================================================
   ANIMATIONS & MICRO INTERACTIONS
================================================= */
.card,
.card-container .activity-item,
.feature-item, .activity-indoor, .activity-weather, .testimonial-card,
.team-member, .idea, .faq-item {
  transition: box-shadow .22s, transform .18s, border .18s, background .16s;
}
a, .cta-button, .footer-nav a,
.footer-newsletter button, .activity-filters button {
  transition: filter .15s, background .20s, color .20s, border .16s, transform .16s;
}
@media (hover: hover) {
  .card:hover, .feature-item:hover, .activity-indoor:hover, .activity-weather:hover, .idea:hover, .team-member:hover {
    transform: rotate(-1deg) scale(1.02);    
    box-shadow: 0 8px 30px 0 var(--shadow-color);
    z-index: 3;
  }
}

/* Fun bounce on button interaction */
.cta-button:active, .footer-newsletter button:active, .activity-filters button:active {
  transform: scale(.97);
  filter: brightness(0.98);
}

/* Add playful swing for icon on card hover */
.feature-item:hover img, .activity-indoor:hover img, .activity-weather:hover img {
  transform: rotate(-11deg) scale(1.11);
  transition: transform .34s cubic-bezier(.72,.09,.39,1.06);
}

/* =================================================
   RESPONSIVE DESIGN (Mobile First)
================================================= */
@media (max-width: 1024px) {
  .container {
    max-width: 820px;
  }
  .footer-columns {
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .idea-list, .activity-grid, .activity-indoor-grid, .activity-weather-grid,
    .footer-columns, .card-container, .content-grid, .team-bios {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .footer-columns {
    gap: 28px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.14rem; }
  .container {
    padding: 0 11px;
    max-width: 99vw;
  }
  .footer-newsletter form {
    flex-direction: column;
    gap: 8px;
  }
  .hero, .hero-weekend, .hero-weather, .hero-indoor {
    padding: 22px 0 0 0;
    border-radius: 0 0 20px 20px;
    min-height: 180px;
  }
  .footer-columns {
    flex-direction: column;
    gap: 20px;
  }
  .footer-social {
    margin-bottom: 20px;
  }
  .section, .features, .features-list, .features-indoor, .activity-weather-grid, .activity-indoor-grid,
  .cta-box, .testimonials, .legal-section, .about-section, .thankyou-section, .contact-section, .faq-section,
  .planning-tools, .activity-by-weather, .tips-section, .weekend-features, .team-section, .planning-indoor-tips, .ideas-section {
    padding: 22px 9px;
    margin-bottom: 32px;
  }
}
@media (max-width: 600px) {
  .content-wrapper {
    gap: 13px;
  }
  header .container {
    min-height: 55px;
    padding: 0 6px;
  }
  .footer-logo-contact img {
    height: 27px;
  }
  .footer-newsletter button {
    padding: 7px 12px;
    font-size: 1rem;
  }
}
@media (max-width: 520px) {
  .mobile-nav {
    padding-left: 12px;
    margin-top: 21px;
  }
  .cookie-modal__content, #cookie-modal .modal-content {
    padding: 20px 8px 14px 12px;
  }
}

/* Hide main nav and show mobile burger on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    justify-content: space-between;
  }
}

/* Flexboxes for specified containers (MANDATORY) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; position: relative; border-radius: var(--card-radius); overflow: hidden; background: #fff; box-shadow: 0 2px 16px 0 var(--shadow-color); padding: 22px; }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: stretch; }
.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: 20px; }
  .content-grid { flex-direction: column; gap: 17px; }
}

/* =================================================
   FUN TYPOGRAPHY & STYLE FLAVOR
================================================= */
body, .content-wrapper, .footer-newsletter, .footer-nav, .footer-logo-contact {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, .cta-button, .main-nav, .mobile-nav, .footer-nav, .feature-item h3, .team-member h3, .testimonial-card .user-name {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: bold;
}
h1, h2, .cta-button, .activity-filters button, .footer-newsletter button {
  letter-spacing: 0.03em;
}

/* ======= Playful Flavor (colors, border, micro-animations) ====== */
.feature-item::before,
.activity-item::before,
.idea::before,
.team-member::before {
  content: '';
  display: block;
  width: 32px; height: 8px;
  background: var(--secondary-color);
  border-radius: 8px;
  margin-bottom: 9px;
  transform: rotate(-5deg);
  opacity: 0.5;
}
.feature-item h3, .idea h3, .team-member h3 {
  color: var(--danger-color);
  font-size: 1.11rem;
  font-weight: 900;
}

/* Fun dotted underline for key links */
.legal-section a, .thanks-section a, .tips-section a, .weekend-features a {
  border-bottom: 2px dotted var(--primary-color);
  padding-bottom: 1px;
  color: var(--danger-color);
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
}
.legal-section a:hover, .thanks-section a:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/*******************************************
   END FAMILYZAUBER CSS :)
*******************************************/
