/* Blossom Gorge – Vibrant & Energetic Design – style.css */
/* === CSS RESET & NORMALIZATION === */
:root {
  --primary: #163960;
  --secondary: #5DC0A6;
  --accent: #F6F6F8;
  --electric-blue: #296CFF;
  --pink: #FF3CAD;
  --yellow: #FFE861;
  --lime: #43FF78;
  --orange: #FF9150;
  --white: #fff;
  --black: #181A20;
  --shadow: 0 4px 24px rgba(44,64,120,0.14);
  --radius: 18px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --transition: .24s cubic-bezier(.6,.1,.3,1.1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--accent);
  color: var(--primary);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: var(--electric-blue); text-decoration: none; transition: color var(--transition); }
a:hover, a:focus { color: var(--pink); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 14px; }
strong, b { font-weight: 700; }

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  position: relative;
}
.text-section {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 32px 24px;
}
/* === HEADER & NAVIGATION === */
header {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(22,57,96,0.12);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 22px;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
nav ul li { list-style: none; }
nav ul li a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: .02em;
  padding: 6px 2px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
nav ul li a:hover, nav ul li a:focus {
  background: var(--secondary);
  color: var(--white);
}
nav a img { height: 44px; width: auto; }
.cta-btn {
  background: linear-gradient(90deg, var(--electric-blue), var(--pink), var(--yellow) 120%);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .03em;
  padding: 13px 34px;
  border-radius: 99px;
  border: none;
  box-shadow: 0 2px 8px rgba(43,78,180,0.06);
  outline: none;
  cursor: pointer;
  margin-left: 8px;
  transition: transform var(--transition), box-shadow var(--transition), color var(--transition);
  display: inline-block;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  transform: translateY(-2px) scale(1.03) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(22,57,96,0.15);
  color: var(--electric-blue);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: var(--electric-blue);
  color: var(--white);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 12px;
  z-index: 150;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(41,108,255,0.15);
  transition: background var(--transition);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--pink);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.7,.2,.2,1);
  box-shadow: -2px 0 16px rgba(22,57,96,0.08);
  padding: 32px 22px 22px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--pink);
  color: var(--white);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 18px;
  right: 20px;
  cursor: pointer;
  z-index: 2050;
  transition: background var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 70px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 10px 0;
  border-radius: 7px;
  width: 100%;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--yellow);
  color: var(--electric-blue);
}

/* --- HERO SECTIONS --- */
.hero {
  min-height: 330px;
  background: linear-gradient(83deg, var(--electric-blue) 5%, var(--pink) 60%, var(--yellow) 100%);
  border-radius: 0 0 54px 54px;
  box-shadow: 0 8px 32px rgba(41,108,255,0.09);
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 320px;
}
.hero .content-wrapper {
  color: var(--primary);
  background: rgba(255,255,255,0.93);
  border-radius: var(--radius);
  padding: 36px 26px;
  gap: 20px;
  box-shadow: var(--shadow);
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1.13;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 18px;
  font-weight: 400;
}

/* === FLEXBOX SECTIONS AND SPACING === */
.features-list, .services-cards, .services-list, .workshops-list, .shows-list, .trips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.features-list li, .services-cards li, .services-list li, .workshops-list li, .shows-list li, .trips-list li {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(93,192,166,0.13); /* secondary tint */
  border-radius: var(--radius);
  padding: 26px 22px 19px 22px;
  min-width: 220px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.features-list li:hover, .services-cards li:hover, .services-list li:hover, .workshops-list li:hover, .shows-list li:hover, .trips-list li:hover {
  box-shadow: 0 8px 30px 0 rgba(41,108,255,0.14);
  transform: translateY(-4px) scale(1.04);
}
.features-list img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}
.price {
  background: var(--yellow);
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 18px;
  border-radius: 12px;
  margin-top: 14px;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(255,232,97,0.12);
}

/* === TESTIMONIALS === */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.testimonials h2 {
  margin-bottom: 16px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--accent);
  color: var(--black);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 2px 16px rgba(35,72,135,0.10);
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
  font-size: 1.08rem;
  transition: box-shadow var(--transition), border-color var(--transition);
  border-left: 6px solid var(--secondary);
}
.testimonial-card p {
  margin-bottom: 0;
  font-style: italic;
  color: var(--primary);
}
.testimonial-card strong {
  margin-left: 16px;
  color: var(--electric-blue);
  font-size: 1rem;
  font-family: var(--font-display);
  letter-spacing: .01em;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(22,57,96,0.16);
  border-left: 6px solid var(--pink);
}

/* === CALL TO ACTION SECTION === */
.cta-section {
  background: linear-gradient(92deg, var(--yellow) 33%, var(--lime) 114%);
  border-radius: 34px;
  box-shadow: 0 6px 32px rgba(255,232,97,0.09);
  margin-bottom: 56px;
}
.cta-section .content-wrapper {
  align-items: center;
  gap: 12px;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}
.cta-section h2 {
  color: var(--primary);
}

/* === GENERAL SECTION OVERRIDES === */
section:not(.hero):not(.cta-section):not(.testimonials) .content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}
section:not(.hero):not(.cta-section) .content-wrapper ul li {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 16px 10px 16px;
  flex: 1 1 220px;
  margin-bottom: 20px;
}
section:not(.hero):not(.cta-section) .content-wrapper ul li h3 {
  margin-bottom: 9px;
}

/* === FOOTER === */
footer {
  background: var(--primary);
  color: var(--white);
  padding-top: 54px;
  padding-bottom: 42px;
  margin-top: 0;
  position: relative;
}
footer .container {
  padding-top: 0;
  padding-bottom: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
  justify-content: space-between;
}
footer nav a, footer div a {
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-right: 7px;
}
footer nav a:hover, footer div a:hover {
  color: var(--yellow);
}
footer img {
  height: 48px;
  margin-bottom: 8px;
}
footer address {
  font-style: normal;
  margin-bottom: 6px;
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  transition: filter var(--transition), transform var(--transition);
  filter: grayscale(50%) brightness(1.2);
}
.footer-social a:hover img {
  filter: grayscale(0%) brightness(1.6) drop-shadow(0px 0px 6px var(--lime));
  transform: scale(1.18) rotate(-5deg);
}

/* === CONTACT & SOCIAL ICONS === */
.contact-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.contact-social a img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  transition: box-shadow var(--transition), filter var(--transition);
  box-shadow: 0 2px 10px rgba(41,108,255,0.10);
  filter: grayscale(40%);
}
.contact-social a:hover img {
  filter: none;
  box-shadow: 0 4px 24px var(--pink);
}

/* === MISCELLANEOUS === */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === BUTTONS GENERAL === */
button {
  font-family: var(--font-display);
  border: none;
  cursor: pointer;
  outline: none;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .03em;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 99px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  padding: 12px 26px;
}
button:hover, button:focus {
  background: var(--pink);
  color: var(--white);
  transform: scale(1.045);
}

/* === FORM ELEMENTS === */
input, textarea, select {
  font-family: var(--font-body);
  padding: 11px 16px;
  border-radius: var(--radius);
  border: 1.8px solid var(--secondary);
  background: #f7fbfa;
  font-size: 1rem;
  margin-bottom: 18px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--electric-blue);
  outline: none;
  box-shadow: 0 2px 12px rgba(41,108,255,0.11);
}
label { font-weight: 600; margin-bottom: 5px; display: inline-block; }

/* === COOKIE CONSENT BANNER === */
#cookie-consent-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--secondary), var(--yellow));
  color: var(--primary);
  padding: 24px 18px;
  z-index: 3500;
  min-height: 68px;
  box-shadow: 0 -2px 12px rgba(93,192,166,0.15);
  font-family: var(--font-display);
  font-size: 1.04rem;
  gap: 20px;
  transition: transform .4s cubic-bezier(.82,.07,.13,.93);
}
#cookie-consent-banner.hide {
  transform: translateY(140%);
}
#cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}
#cookie-consent-banner button {
  padding: 8px 20px;
  font-size: 1rem;
  border-radius: 22px;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
}
#cookie-consent-banner .accept-btn {
  background: var(--electric-blue);
  color: var(--white);
}
#cookie-consent-banner .accept-btn:hover, #cookie-consent-banner .accept-btn:focus {
  background: var(--pink);
  color: var(--white);
}
#cookie-consent-banner .settings-btn {
  background: var(--yellow);
  color: var(--primary);
}
#cookie-consent-banner .settings-btn:hover {
  background: var(--lime);
  color: var(--primary);
}
#cookie-consent-banner .reject-btn {
  background: var(--pink);
  color: var(--white);
}
#cookie-consent-banner .reject-btn:hover {
  background: var(--primary);
  color: var(--yellow);
}

/* === COOKIE POPUP MODAL === */
#cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(22,57,96,0.53);
  z-index: 3550;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: fadeIn 0.32s cubic-bezier(.55,.12,.54,1.02);
}
#cookie-modal.open {
  display: flex;
}
#cookie-modal .modal-content {
  background: var(--white);
  color: var(--primary);
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(41,108,255,0.16);
  padding: 40px 34px 28px 34px;
  min-width: 300px;
  max-width: 90vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: var(--font-body);
}
#cookie-modal .modal-content h2 {
  font-size: 1.5rem;
}
#cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 18px;
  background: var(--pink);
  color: var(--white);
  width: 36px; height: 36px;
  font-size: 1.5rem;
  border-radius: 50%; border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 14px 0 18px 0;
}
#cookie-modal li {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
}
#cookie-modal input[type="checkbox"]:not(:disabled) {
  accent-color: var(--secondary);
}
#cookie-modal input[type="checkbox"]:disabled {
  accent-color: var(--lime);
}
#cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  justify-content: flex-end;
}
#cookie-modal .modal-actions button {
  padding: 9px 20px;
  font-family: var(--font-display);
  font-size: 1rem;
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1280px) {
  .container { max-width: 98vw; }
}
@media (max-width: 1024px) {
  .content-wrapper, footer .content-wrapper {
    flex-wrap: wrap;
    gap: 18px;
  }
  nav ul {
    gap: 18px;
  }
}
@media (max-width: 910px) {
  .features-list, .services-cards, .services-list, .workshops-list {
    flex-direction: column;
    gap: 24px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  nav ul, nav .cta-btn { display: none; }
  .mobile-menu-toggle { display: flex; }
  .hero h1 { font-size: 2rem; }
  .hero .content-wrapper { padding: 26px 5vw; }
  .hero { min-height: 230px; }
  .container { padding-left: 7px; padding-right: 7px; }
  .section { padding: 26px 8px; }
  section:not(.hero):not(.cta-section):not(.testimonials) .content-wrapper ul, .testimonials {
    flex-direction: column;
    gap: 22px;
  }
  .features-list li, .services-cards li, .services-list li, .workshops-list li, .shows-list li, .trips-list li {
    min-width: 90px;
    width: 100%;
    max-width: 100%;
    padding: 20px 10px 16px 10px;
  }
  .cta-section .content-wrapper { padding-left: 0; padding-right: 0; }
  footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 540px) {
  .container { padding-left: 2vw; padding-right: 2vw; }
  .hero .content-wrapper { padding: 13vw 2vw; }
  .hero h1 { font-size: 1.25rem; }
  h2 { font-size: 1.19rem; }
  h3 { font-size: 1.05rem; }
  .cta-btn, button, #cookie-consent-banner button { font-size: .97rem; padding: 11px 15px; }
  #cookie-consent-banner { padding: 16px 6px; font-size: .95rem; }
  #cookie-modal .modal-content { padding: 20px 7vw 16px 7vw; min-width: unset; }
  .testimonial-card { padding: 11px; font-size: .96rem; }
}

/* === ACCESSIBILITY, CONTRAST, FOCUS === */
:focus, button:focus, a:focus {
  outline: 2px solid var(--electric-blue);
  outline-offset: 2px;
}
::selection {
  background: var(--yellow);
  color: var(--primary);
}

/* === Z-INDEX FIXES === */
.mobile-menu, #cookie-consent-banner, #cookie-modal { z-index: 3500; }
.mobile-menu-close { z-index: 3550; }

/* === HIERARCHY, SPACING, GAPS === */
.section, .cta-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === ELECTRIC HIGHLIGHTS === */
h1, h2, .cta-btn, .price, .testimonial-card strong, footer nav a, footer div a {
  text-shadow: 0 2px 14px rgba(255,61,173,0.07), 0 3px 24px rgba(41,108,255,0.04);
}

/* === END OF CSS === */
