/* ===========================
   Hurghada Dream — Mini site
   Mobile-first, max 480px utile
   =========================== */

:root {
  --bg-cyan: #e9f3f4;
  --bg-cyan-deep: #d6ebec;
  --teal-dark: #1a6e72;
  --teal-button: #1f7378;
  --teal-button-hover: #185c60;
  --mustard: #c89438;
  --mustard-deep: #b8842a;
  --aqua: #6dd1d6;
  --aqua-hover: #57bfc4;
  --text-dark: #1f3a3b;

  --orange-bg: #ff7a1a;
  --orange-bg-deep: #ee6a08;
  --whatsapp-green: #25d366;
  --cream: #fbdcae;
  --cream-hover: #f6c987;
  --black-text: #1a1a1a;

  --shadow-btn: 0 4px 0 rgba(0, 0, 0, 0.07), 0 6px 14px rgba(0, 0, 0, 0.06);
  --shadow-btn-strong: 0 6px 0 rgba(0, 0, 0, 0.10), 0 10px 22px rgba(0, 0, 0, 0.10);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  min-height: 100dvh;
}

body {
  display: flex;
  justify-content: center;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

/* ============ Container ============ */
.page {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 28px 26px 36px;
  overflow: hidden;
}

/* ============ THEMES ============ */
.page--home,
.page--catalogues {
  background-color: var(--bg-cyan);
  color: var(--text-dark);
}

.page--whatsapp {
  background-color: var(--orange-bg);
  color: var(--black-text);
}

/* ============ LOGO ============ */
.logo {
  width: 250px;
  max-width: 78%;
  height: auto;
  display: block;
  margin: 4px auto 8px;
}

/* ============ Tagline / Titres ============ */
.tagline {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 6px 8px 20px;
  line-height: 1.4;
}

.title-block {
  text-align: center;
  margin: 6px 0 22px;
  line-height: 1.05;
}

.title-block h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--teal-dark);
}

.title-block .subtitle {
  display: block;
  margin-top: 2px;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--mustard);
}

/* WhatsApp title block */
.wa-title {
  text-align: center;
  margin: 6px 0 22px;
  position: relative;
  width: 100%;
}

.wa-title .wa-script {
  font-family: 'Caveat', 'Pacifico', cursive;
  font-weight: 700;
  font-size: 62px;
  color: var(--whatsapp-green);
  line-height: 1;
  display: inline-block;
  transform: rotate(-4deg);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.05);
}

.wa-title .wa-sub {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--black-text);
  margin-top: -2px;
}

.wa-title .wa-logo {
  width: 64px;
  height: 64px;
  position: absolute;
  right: 6px;
  top: 4px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.18));
}

/* ============ BOUTONS PRINCIPAUX ============ */
.btn-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 4px;
  position: relative;
  z-index: 2;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 20px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  transition: transform 0.12s ease, background-color 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow-btn);
  border: none;
  cursor: pointer;
  position: relative;
}

.btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.07), 0 3px 8px rgba(0, 0, 0, 0.06);
}

/* Teal buttons */
.btn--teal {
  background-color: var(--teal-button);
  color: #ffffff;
  box-shadow: var(--shadow-btn-strong);
}

.btn--teal:hover {
  background-color: var(--teal-button-hover);
}

/* Cream buttons (whatsapp) */
.btn--cream {
  background-color: var(--cream);
  color: var(--black-text);
  font-size: 17px;
  padding: 16px 18px;
  line-height: 1.35;
  border-radius: 22px;
}

.btn--cream:hover {
  background-color: var(--cream-hover);
}

/* Back button */
.btn--back {
  background-color: var(--aqua);
  color: var(--text-dark);
  gap: 10px;
  margin-top: 28px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.08);
}

.btn--back:hover {
  background-color: var(--aqua-hover);
}

.btn--back .arrow {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* ============ +100K BADGE ============ */
.badge-100k {
  margin: 28px auto 18px;
  display: inline-block;
  position: relative;
  z-index: 2;
  text-align: center;
}

.badge-100k .big {
  display: inline-block;
  background: var(--mustard);
  color: #ffffff;
  font-weight: 900;
  font-size: 28px;
  padding: 4px 14px 6px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 0 var(--mustard-deep);
  transform: skew(-4deg);
}

.badge-100k .big span { display: inline-block; transform: skew(4deg); }

.badge-100k .sub {
  display: block;
  margin-top: 8px;
  background: #1f3a3b;
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 4px;
  transform: skew(-4deg);
}

.badge-100k .sub span { display: inline-block; transform: skew(4deg); }

/* ============ Social icons (rounded square, brand colors) ============ */
.socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  position: relative;
  z-index: 2;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-color: #b7e3e5;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  color: #1f3a3b;
}

.socials a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.socials svg {
  width: 30px;
  height: 30px;
  display: block;
}

/* ============ DECORATIONS ============ */
.deco {
  position: absolute;
  pointer-events: none;   /* clics traversent la déco vers les boutons */
  user-select: none;
  z-index: 3;             /* devant les boutons pour effet de profondeur */
}

/* Home : valise dépassant légèrement sur le 1er bouton */
.deco-suitcase-home {
  width: 115px;
  height: auto;
  top: 270px;
  left: -48px;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.18));
}

/* Catalogue : drapeau & palmier */
.deco-flag {
  width: 110px;
  height: auto;
  top: 218px;
  left: -30px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.12));
}

.deco-palm {
  width: 135px;
  height: auto;
  bottom: 150px;
  right: -28px;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.15));
}

/* WhatsApp : valise & flamant */
.deco-suitcase {
  width: 115px;
  height: auto;
  top: 215px;
  left: -46px;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.22));
}

.deco-flamingo {
  width: 175px;
  height: auto;
  bottom: 110px;
  right: -42px;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.22));
}

/* Footer text whatsapp */
.wa-footer {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--black-text);
  margin-top: 26px;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

/* z-index: keep content above decorations */
.title-block,
.wa-title,
.btn-list,
.btn,
.socials,
.tagline,
.wa-footer,
.badge-100k {
  position: relative;
  z-index: 2;
}

/* ============ MEDIA QUERIES ============ */
@media (min-width: 481px) {
  body {
    background: linear-gradient(180deg, #f3f7f7 0%, #e7eeee 100%);
    padding: 24px 0;
  }
  .page {
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
    border-radius: 32px;
    min-height: calc(100dvh - 48px);
  }
}

@media (max-width: 360px) {
  .title-block h1 { font-size: 25px; }
  .title-block .subtitle { font-size: 20px; }
  .btn { font-size: 16px; padding: 17px 16px; }
  .btn--cream { font-size: 15px; padding: 14px 14px; }
  .wa-title .wa-script { font-size: 50px; }
  .wa-title .wa-logo { width: 50px; height: 50px; }
  .badge-100k .big { font-size: 24px; }
}
