/* --------------------------------------------------
   Drift Escape – Vibrant Energetic CSS (Flexbox Only)
   Design: Vibrant, energetic, bold, professional
   Author: AI Senior CSS Developer
-----------------------------------------------------*/

/* == CSS RESET & BASELINE == */
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;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1B263B;
  background: #FFFFFF;
  min-height: 100vh;
  line-height: 1.65;
  font-size: 1rem;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #1B263B;
  text-decoration: none;
  transition: color 0.15s;
}
a:focus, a:hover {
  color: #EF476F;
}
ul, ol {
  list-style: none;
  margin-left: 0;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

/* ===========================
   Typography – Vibrant & Bold
=========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  color: #233554;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.22rem;
  font-weight: 700;
  color: #233554;
}
h4 {
  font-size: 1.05rem;
  font-weight: 600;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 18px;
}
strong {
  font-weight: 700;
  color: #233554;
}
.brand-tagline {
  font-size: 1.15rem;
  font-weight: 800;
  color: #F26419;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 24px;
}
.location-highlight {
  color: #2dce98;
  font-weight: 700;
}
.subheadline {
  font-size: 1.25rem;
  color: #536fae;
  margin-bottom: 26px;
  line-height: 1.4;
}

/* == COLOR SCHEME ==
   Vibrant Energetic
   (Electric accent, deep bolds)
*/:root {
  --color-primary: #1B263B;
  --color-secondary: #FFFFFF;
  --color-accent: #F26419;
  --color-electric: #EF476F; /* strong vibrant pink */
  --color-blue: #3F88C5; /* electric blue for accents */
  --color-light-bg: #F6F9FF;
  --color-card-bg: #FCF9F0;
  --color-hero-gradient: #fff;
  --color-dark-text: #1B263B;
  --color-btn-text: #fff;
  --color-footer-bg: #22314D;
  --color-footer-link: #8EDAE6;
}

/* =====================
   Layout containers
====================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-light-bg);
  border-radius: 20px;
  box-shadow: 0 6px 36px 0 rgba(63, 136, 197, 0.05);
  position: relative;
  z-index: 1;
}

/* =================
   Header & NavBar
=================== */
header {
  width: 100%;
  background: var(--color-secondary);
  box-shadow: 0 4px 18px 0 rgba(242, 100, 25, 0.07);
  position: sticky;
  top: 0; left: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 18px;
}
.logo img {
  height: 44px;
  width: auto;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-dark-text);
  font-size: 1rem;
  transition: color 0.2s, background 0.2s;
  padding: 8px 12px;
  border-radius: 10px;
  letter-spacing: 0.3px;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-electric);
  color: #fff;
}

.cta-btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1rem;
  background: linear-gradient(90deg, var(--color-accent) 50%, var(--color-electric) 100%);
  color: var(--color-btn-text);
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(242,100,25,0.11);
  transition: background 0.18s, transform 0.12s, box-shadow 0.15s;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, var(--color-electric) 10%, var(--color-accent) 90%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 36px 0 rgba(239,71,111,0.15);
}

/* ======
Mobile Nav
======= */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  border-radius: 9px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  margin-left: 8px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-electric);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right:0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,38,59,0.97);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,.24,.52,1.01);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin-top: 40px;
  margin-bottom: 24px;
  font-size: 2.1rem;
  background: var(--color-electric);
  color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 18px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 10px;
  letter-spacing: 1px;
  transition: background 0.18s;
  width: 100%;
  display: block;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-electric);
  color: #fff;
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* =========================
   HERO/Banner
========================= */
.hero {
  min-height: 45vh;
  background: linear-gradient(120deg,#F26419 0%, #EF476F 50%, #3F88C5 100%);
  color: #fff;
  padding: 70px 0 50px 0;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 16px rgba(27,38,59,0.15);
  font-size: 2.2rem;
  letter-spacing: -1.5px;
}
.hero .subheadline {
  color: #E0E1DD;
  font-size: 1.3rem;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(63,136,197,0.09);
}
.hero .cta-btn {
  margin-top: 34px;
  box-shadow: 0 2px 18px rgba(27,38,59,0.12);
}

/* ===================
   Feature/Card Grids
=================== */
.feature-grid,
.card-container,
.review-list,
.list-preview-cards,
.tip-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.feature-card, .tip-card, .curation-card {
  background: var(--color-card-bg);
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(63,136,197,0.08);
  padding: 28px 22px 28px 22px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.16s;
  border-left: 5px solid var(--color-accent);
}
.feature-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 4px rgba(30,46,104,0.08));
}
.feature-card:hover,
.tip-card:hover,
.curation-card:hover {
  box-shadow: 0 12px 44px 0 rgba(242,100,25,0.16);
  transform: translateY(-3px) scale(1.012);
  cursor: pointer;
  border-color: var(--color-electric);
}

.review-teaser {
  background: #fff;
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: 0 4px 18px 0 rgba(63,136,197,0.06);
  flex: 1 1 280px;
  min-width: 240px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.17s, border 0.16s;
  border-left: 4px solid var(--color-blue);
}
.review-teaser:hover {
  box-shadow: 0 12px 44px 0 rgba(63,136,197,0.14);
  border-color: var(--color-accent);
}

.list-preview-cards {
  margin-bottom: 12px;
}
.curation-card {
  background: #fff6ef;
  border-radius: 18px;
  box-shadow: 0 6px 22px 0 rgba(63,136,197,0.07);
  padding: 25px 20px 20px 20px;
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.13s, transform 0.14s;
  border-left: 6px solid #F26419;
  margin-bottom: 20px;
}

/* Tips grid (Sfaturi) */
.tip-card-grid {
  gap: 20px;
}
.tip-card {
  background: #e8f6ff;
  border-radius: 14px;
  padding: 18px 15px 18px 15px;
  min-width: 215px;
  max-width: 270px;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px 0 rgba(63,136,197,0.07);
  margin-bottom: 20px;
  position: relative;
  border-left: 4px solid #3F88C5;
  transition: box-shadow 0.12s, border 0.14s;
}
.tip-card:hover {
  box-shadow: 0 8px 34px 0 rgba(63,136,197,0.12);
  border-color: #EF476F;
}

/*************
Text/Image section (about/contact)
**************/
.text-section, .map-embed {
  margin-bottom: 22px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
/* Responsive flex direction for text-image-section */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/***************************
   Testimonial Cards
****************************/
.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(63,136,197,0.08);
  padding: 20px 26px 20px 22px;
  min-width: 240px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  border-left: 6px solid var(--color-electric);
  font-size: 1.06rem;
  transition: box-shadow 0.13s, border 0.15s;
  color: #263858;
}
.testimonial-card p {
  color: #233554;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: var(--color-accent);
  font-weight: 800;
}
.testimonial-card:hover {
  box-shadow: 0 10px 38px 0 rgba(242,100,25,0.13);
  border-color: #3F88C5;
}


/* ========== CTA Section ========= */
.cta-section {
  background: linear-gradient(90deg, #fff6ef 0%, #e0f4fe 100%);
  padding: 50px 0;
  border-radius: 35px;
  display: flex;
  margin-bottom: 42px;
}
.cta-section h2 {
  color: #EF476F;
  font-size: 2.1rem;
}
.cta-section .cta-btn {
  margin-top: 32px;
}

/* ===============
 Footer & Newsletter
==================*/
footer {
  background: var(--color-footer-bg);
  color: #fff;
  padding: 0 0 32px 0;
  margin-top: 48px;
  position: relative;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 44px;
  padding-bottom: 18px;
}
.footer-content > div {
  flex: 1 1 220px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--color-footer-link);
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.93;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.newsletter h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.newsletter p {
  font-size: 0.97rem;
  opacity: 0.96;
}
.footer-bottom {
  padding-top: 10px;
  border-top: 1px solid #33496a;
  text-align: center;
  font-size: 0.92rem;
  color: #b4d7ed;
  letter-spacing: 0.4px;
}

/************
   Utility classes & spacing
************/
.text-center {
  text-align: center;
}
.hide {
  display: none !important;
}
.flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.justify-between {
  justify-content: space-between;
}
.align-center {
  align-items: center;
}

/**********************************************
Responsive layout & Media Queries – Mobile First
***********************************************/
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 1023px) {
  .footer-content {
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 24px;
    padding-bottom: 12px;
  }
}

@media (max-width: 840px) {
  .feature-grid,
  .card-container,
  .review-list,
  .testimonial-row,
  .list-preview-cards,
  .tip-card-grid {
    flex-direction: column;
    gap: 18px;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .testimonial-row {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .header, .footer-bottom, .footer-content {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    margin-bottom: 44px;
    padding: 30px 7px;
  }
  .hero {
    padding: 42px 0 34px 0;
    min-height: 31vh;
  }
  .cta-section {
    padding: 28px 0 40px 0;
    border-radius: 20px;
  }
  .feature-card, .tip-card, .curation-card {
    min-width:unset;
    max-width: 100%;
    padding: 16px 12px 18px 14px;
    margin-bottom: 12px;
  }
  .review-teaser {
    min-width: unset;
    max-width: 100%;
    padding: 14px 8px;
  }
  .testimonial-card {
    min-width: unset;
    max-width: 100%;
    padding: 16px 8px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.3rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  .cta-btn {
    font-size: .95rem;
    padding: 10px 10px;
  }
  .footer-content { gap: 10px; }
  .main-nav { gap: 7px; }
}

/**********
   Cookie Banner & Modal
***********/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  z-index: 12000;
  background: linear-gradient(90deg,#FFB077 0%, #F26419 50%, #EF476F 100%);
  box-shadow: 0 -3px 20px 0 rgba(61,24,32,0.07);
  padding: 26px 24px 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #fff;
  font-size: 1.08rem;
  transition: transform 0.38s cubic-bezier(.79,.18,.37,.93);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button {
  font: inherit;
  border: none;
  border-radius: 9px;
  padding: 10px 18px;
  font-weight: 700;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1rem;
  transition: all 0.17s;
  margin-left: 0;
  margin-right: 0;
}
.cookie-banner .accept {
  background: #2dce98;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #01b574;
}
.cookie-banner .reject {
  background: #EF476F;
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #F26419;
}
.cookie-banner .settings {
  background: #fff;
  color: #EF476F;
  border: 2px solid #EF476F;
  font-weight: 700;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #FFE6EE;
  color: #EF476F;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 12300;
  inset: 0;
  width: 100vw; height: 100vh;
  background: rgba(17,23,39,.78);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.26s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-overlay.hide { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 44px 34px 28px 34px;
  max-width: 440px;
  box-shadow: 0 18px 82px 0 rgba(63,136,197,0.16);
  color: #1B263B;
  font-size: 1.1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}
.cookie-modal h3 {
  color: #F26419;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 12px;
}
.cookie-modal input[type=checkbox] {
  accent-color: #F26419;
  width: 20px; height: 20px;
  margin-top: 0;
}
.cookie-modal .cookie-category {
  margin-bottom: 10px;
  font-weight: 700;
}
.cookie-modal .essential { color: #01B574; }
.cookie-modal .analytics { color: #536fae; }
.cookie-modal .marketing { color: #EF476F; }
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 22px;
}
.cookie-modal button {
  min-width: 92px;
  padding: 8px 14px;
  border-radius: 7px;
  background: #F26419;
  color: #fff;
  font-weight: bold;
  transition: background 0.18s;
  font-size: 1rem;
}
.cookie-modal button.save {
  background: #2dce98;
}
.cookie-modal button.save:hover { background: #01B574; }
.cookie-modal button.cancel {
  background: #fff;
  border: 2px solid #F26419;
  color: #F26419;
}
.cookie-modal button.cancel:hover {
  background: #FFE6EE;
  color: #EF476F;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #F26419;
  color: #fff;
  border-radius: 50%;
  width: 38px; height: 38px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  background: #EF476F;
}

@media (max-width: 740px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 9px 10px 13px;
    font-size: 0.98rem;
  }
  .cookie-modal {
    padding: 19px 8px 18px 13px;
    max-width: 97vw;
  }
}

/************************************************
   MICRO-INTERACTIONS & ANIMATIONS
*************************************************/
.cta-btn, .feature-card, .card, .testimonial-card, .curation-card, .tip-card, .review-teaser {
  transition: box-shadow 0.18s, background 0.18s, color 0.11s, transform 0.13s;
}
.cta-btn:active {
  transform: scale(0.96);
}

@media (hover: hover) {
  .feature-card:hover, .testimonial-card:hover, .review-teaser:hover, .tip-card:hover, .curation-card:hover {
    box-shadow: 0 10px 35px 0 rgba(242,100,25,0.13) !important;
    z-index: 1;
  }
}

/* ===============================
  FORMATTING: Utility for Thank You page, etc.
=============================== */
.thank-you-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}
.thank-you-section .content-wrapper {
  align-items: center;
  text-align: center;
  background: #f6f7ff;
  padding: 48px 24px 40px 24px;
  border-radius: 22px;
  box-shadow: 0 10px 44px 0 rgba(63,136,197,0.10);
}
.message-confirm {
  font-size: 1.13rem;
  color: #1B263B;
  margin-bottom: 24px;
}

/************
   MISC
************/
::-webkit-scrollbar {
  background: #fff;
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #F26419;
  border-radius: 16px;
}


/**********************************************
  SPECIAL: Accessibility & Visual Contrast in testimonials
***********************************************/
.testimonial-card, .review-teaser {
  background: #fff;
  color: #1B263B;
}
.testimonial-card p { color: #1B263B; }

/************
 Hide helper classes if needed
************/
.hide, .d-none { display: none !important; }

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