/* ========================================
   BLUMY PICNICS — Mobile-First Responsive
   ======================================== */

/* --- Variables --- */
:root {
  --color-bg: #F4F1EC;
  --color-accent: #FFD900;
  --color-orange: #D4600A;
  --color-green: #6B7A58;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-text-dark: #000000;
  --color-text-light: #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-script: 'Bonheur Royale', cursive;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background: var(--color-bg);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ========================================
   BUTTON
   ======================================== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--color-orange);
  color: var(--color-white);
  padding: 14px 36px;
}

/* ========================================
   NAVBAR (hidden on mobile, visible 640px+)
   ======================================== */
.navbar {
  display: none;
  width: 100%;
  padding: 16px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
}

.navbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar__logo-icon {
  width: 28px;
  height: auto;
}

.navbar__logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.2;
  color: var(--color-green);
}

/* Burger — mobile only */
.navbar__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.navbar__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav links — mobile: hidden dropdown */
.navbar__nav {
  display: none;
  flex-direction: column;
  gap: 24px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-bg);
  padding: 32px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar__nav--open {
  display: flex;
}

.navbar__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-dark);
  transition: color 0.2s ease;
}

.navbar__link:hover {
  color: var(--color-orange);
}

.navbar__phone {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-orange);
}

/* ========================================
   HERO MOBILE — Fullscreen background
   ======================================== */
.hero-mobile {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-mobile__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-mobile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.05) 35%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: 1;
}

.hero-mobile__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
}

.hero-mobile__logo {
  width: 140px;
  height: auto;
  margin-bottom: 24px;
}

.hero-mobile__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.2;
  color: var(--color-text-light);
}

.hero-mobile__title-script {
  display: block;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 3.875rem;
  line-height: 1;
  margin-top: -18px;
  color: var(--color-accent);
}

.hero-mobile__subtitle {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text-light);
  margin-top: 20px;
  margin-bottom: 16px;
}

.btn--hero {
  background: var(--color-white);
  color: var(--color-text-dark);
  padding: 18px 40px;
  font-size: 1rem;
  border-radius: 50px;
  width: 100%;
  max-width: 340px;
  margin-top: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 16px;
}

/* ========================================
   HERO DESKTOP — Text + single image
   (hidden on mobile)
   ======================================== */
.hero-desktop {
  display: none;
}

.hero-desktop__text {
  margin-bottom: 24px;
}

.hero-desktop__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.1;
  color: var(--color-green);
  margin-bottom: 12px;
}

.hero-desktop__title-script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 3.875rem;
  color: var(--color-orange);
}

.hero-desktop__subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-dark);
  max-width: 340px;
}

.hero-desktop__images {
  border-radius: 16px;
  overflow: hidden;
}

.hero-desktop__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.hero-desktop__img--single {
  border-radius: 16px;
}

/* ========================================
   EXPERIENCES SECTION
   ======================================== */
.experiences {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ========================================
   EXPERIENCE CARD
   ======================================== */
.experience-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
}

.experience-card__image-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.experience-card__carousel {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.experience-card__carousel img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Carousel arrows */
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-text-dark);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, opacity 0.2s ease;
  opacity: 0;
  pointer-events: none;
}

.experience-card__image-wrapper:hover .carousel__arrow {
  opacity: 1;
  pointer-events: auto;
}

.carousel__arrow:hover {
  background: var(--color-white);
}

.carousel__arrow--prev {
  left: 10px;
}

.carousel__arrow--next {
  right: 10px;
}

/* Carousel dots */
.carousel__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel__dot--active {
  background: var(--color-white);
  transform: scale(1.2);
}

/* Touch / mobile: always show arrows */
@media (hover: none) {
  .carousel__arrow {
    opacity: 1;
    pointer-events: auto;
  }
}

.experience-card__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.experience-card__content {
  padding: 24px 24px 28px;
}

.experience-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.experience-card__description {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.experience-card__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text-dark);
  margin-top: 16px;
  margin-bottom: 6px;
}

.experience-card__list {
  margin-bottom: 16px;
}

.experience-card__list li {
  position: relative;
  padding-left: 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-dark);
}

.experience-card__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 1.1rem;
}

.experience-card__duration {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

/* Pricing */
.experience-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.experience-card__price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--color-text-dark);
}

.experience-card__unit {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-text-dark);
}

/* Accent button (yellow) */
.btn--accent {
  background: var(--color-accent);
  color: var(--color-text-dark);
  padding: 16px 32px;
  font-weight: 700;
}

.btn--full {
  display: block;
  width: 100%;
  text-align: center;
}

/* ========================================
   WEATHER NOTICE
   ======================================== */
.weather-notice {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 32px;
}

.weather-notice__inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-white);
  border-left: 4px solid var(--color-green);
  border-radius: 12px;
  padding: 20px 24px;
}

.weather-notice__icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.weather-notice__text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-dark);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 40px;
}

.faq__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-green);
  text-align: center;
  margin-bottom: 28px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq__question {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  padding: 18px 32px 18px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-green);
  transition: transform 0.3s ease;
}

.faq__item[open] .faq__question::after {
  content: '\2212';
  transform: translateY(-50%);
}

.faq__answer {
  padding: 0 0 20px 0;
}

.faq__answer p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 6px;
}

.faq__answer p:last-child {
  margin-bottom: 0;
}

/* ========================================
   CTA CONTACT
   ======================================== */
.cta-contact {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px 56px;
  text-align: center;
}

.cta-contact__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-black);
  margin-bottom: 20px;
}

.btn--whatsapp {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 18px 32px;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  opacity: 0.92;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  width: 100%;
  background: var(--color-green);
  padding: 48px 24px 32px;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.footer__brand {
  display: flex;
  justify-content: center;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__logo-icon {
  width: 28px;
  height: auto;
}

.footer__logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
  color: var(--color-white);
  text-align: left;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-white);
  transition: opacity 0.2s ease;
}

.footer__link:hover {
  opacity: 0.8;
}

.footer__detail {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
  text-align: center;
}

/* ========================================
   RESPONSIVE — Tablet (640px+)
   ======================================== */
@media (min-width: 640px) {

  /* Show navbar, hide mobile hero, show desktop hero */
  .navbar {
    display: block;
    padding: 20px 32px;
  }

  .hero-mobile {
    display: none;
  }

  .hero-desktop {
    display: block;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 32px 0;
  }

  .hero-desktop__title {
    font-size: 2.8rem;
  }

  .hero-desktop__img {
    height: 300px;
  }

  .experiences {
    padding: 56px 32px;
    gap: 56px;
  }

  .weather-notice {
    padding: 0 32px 40px;
  }

  .faq {
    padding: 40px 32px 48px;
  }

  .faq__heading {
    font-size: 1.8rem;
  }

  .faq__list {
    max-width: 700px;
    margin: 0 auto;
  }

  .cta-contact {
    padding: 32px 32px 64px;
  }

  .btn--whatsapp {
    max-width: 400px;
    display: inline-block;
    width: auto;
    padding: 18px 64px;
  }
}

/* ========================================
   RESPONSIVE — Desktop (1024px+)
   ======================================== */
@media (min-width: 1024px) {

  /* Navbar — show links inline, hide burger */
  .navbar {
    padding: 20px 64px;
  }

  .navbar__burger {
    display: none;
  }

  .navbar__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    position: static;
    padding: 0;
    border-bottom: none;
    background: transparent;
  }

  /* Hero desktop — title row + image below */
  .hero-desktop {
    padding: 20px 64px 0;
  }

  .hero-desktop__text {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }

  .hero-desktop__title {
    font-size: 3.4rem;
    flex-shrink: 0;
  }

  .hero-desktop__subtitle {
    font-size: 1rem;
    max-width: 340px;
    padding-top: 16px;
  }

  .hero-desktop__img {
    height: 380px;
  }

  /* Experiences — side by side */
  .experiences {
    padding: 72px 64px;
    flex-direction: row;
    gap: 32px;
  }

  .experience-card {
    flex: 1;
    min-width: 0;
  }

  .weather-notice {
    padding: 0 64px 48px;
  }

  .faq {
    padding: 48px 64px 56px;
  }

  .faq__heading {
    font-size: 2rem;
    margin-bottom: 36px;
  }

  .faq__list {
    max-width: 760px;
  }

  .faq__question {
    font-size: 1rem;
    padding: 20px 40px 20px 0;
  }

  .cta-contact {
    padding: 40px 64px 72px;
  }

  .cta-contact__title {
    font-size: 2rem;
  }
}

/* ========================================
   RESPONSIVE — Large Desktop (1440px+)
   ======================================== */
@media (min-width: 1440px) {

  .navbar {
    padding: 24px 120px;
  }

  .hero-desktop {
    padding: 24px 120px 0;
  }

  .hero-desktop__title {
    font-size: 4rem;
  }

  .hero-desktop__img {
    height: 440px;
  }

  .experiences {
    padding: 80px 120px;
    gap: 80px;
  }

  .weather-notice {
    padding: 0 120px 56px;
  }

  .faq {
    padding: 56px 120px 64px;
  }

  .cta-contact {
    padding: 48px 120px 80px;
  }
}

/* ========================================
   RESPONSIVE — Ultra-wide (1920px)
   ======================================== */
@media (min-width: 1920px) {

  .navbar {
    padding: 24px 160px;
  }

  .hero-desktop {
    padding: 32px 160px 0;
  }

  .hero-desktop__title {
    font-size: 4.5rem;
  }

  .hero-desktop__img {
    height: 500px;
  }

  .experiences {
    padding: 96px 160px;
  }

  .weather-notice {
    padding: 0 160px 64px;
  }

  .faq {
    padding: 64px 160px 72px;
  }

  .cta-contact {
    padding: 56px 160px 96px;
  }
}
