/* Excellent Voyage Al Moumtaze — site vitrine
   Palette alignée sur le prototype Massasy (v0.2) pour cohérence de marque. */

:root {
  --navy: #0B2A4A;
  --blue: #2D9CDB;
  --violet: #7B5CD6;
  --pink: #E8447C;
  --sky: #EAF2FB;
  --sky-light: #C9E4FB;
  --gold: #D9A441;
  --gold-light: #F4D998;
  --sand: #FAF6ED;
  --ink: #12233B;
  --grey: #6B7A8F;
  --white: #FFFFFF;
  --radius: 6px;
  --max-width: 1160px;
  --font-display: 'Fraunces', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: var(--white);
  padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Buttons */
.btn {
  display: inline-block; padding: 12px 24px; border-radius: var(--radius);
  font-size: 14.5px; font-weight: 600; text-decoration: none; transition: transform .12s ease, opacity .12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--violet)); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }
.btn-ghost-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.6); }
.btn-whatsapp { background: #25D366; color: #04351b; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50; background: var(--white);
  border-bottom: 1px solid #EDE7D4;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); }
.brand-mark { width: 34px; height: 22px; }
.brand-text { font-weight: 700; font-size: 16px; line-height: 1.1; }
.brand-text em { display: block; font-style: normal; font-size: 9px; letter-spacing: .16em; color: var(--grey); text-transform: uppercase; }
.main-nav { display: flex; gap: 26px; font-size: 14.5px; font-weight: 500; }
.main-nav a { text-decoration: none; color: var(--ink); }
.main-nav a:hover { color: var(--blue); }
.header-cta { padding: 9px 18px; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 4px;
  width: 36px; height: 32px; background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--navy) 0%, var(--blue) 55%, var(--violet) 100%);
  color: var(--white); padding: 84px 0 96px;
}
.hero-inner { max-width: 760px; }
.eyebrow {
  display: block; text-transform: uppercase; letter-spacing: .16em; font-size: 12px;
  color: var(--sky-light); margin-bottom: 18px;
}
.hero h1 { font-size: clamp(28px, 4.5vw, 46px); font-weight: 700; line-height: 1.15; margin-bottom: 18px; }
.hero .lede { font-size: 17px; color: #DCE8F7; max-width: 56ch; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Sections */
section { padding: 72px 0; }
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.tag {
  display: inline-block; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--pink); font-weight: 700; margin-bottom: 10px;
}
.tag-light { color: var(--gold-light); }
.section-head h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.section-lede { color: var(--grey); font-size: 15.5px; }

/* Grids & cards */
.grid { display: grid; gap: 18px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.poles { background: var(--sand); }
.card {
  background: var(--white); border: 1px solid #EAE2CB; border-radius: var(--radius);
  padding: 22px 20px;
}
.card-n { font-size: 12px; color: var(--blue); font-weight: 700; letter-spacing: .08em; margin-bottom: 10px; }
.card h3 { font-size: 16.5px; color: var(--navy); margin-bottom: 8px; }
.card p { font-size: 13.8px; color: var(--grey); }
.card-accent { background: linear-gradient(135deg, var(--navy), var(--violet)); border-color: var(--navy); }
.card-accent h3 { color: var(--white); }
.card-accent p { color: #E7DBFA; }
.card-accent .card-n { color: rgba(255,255,255,.78); }

.dest {
  border: 1px solid #EAE2CB; border-radius: var(--radius); padding: 22px 18px; text-align: center;
}
.dest-flag { font-size: 30px; margin-bottom: 10px; }
.dest h3 { font-size: 15.5px; color: var(--navy); margin-bottom: 6px; }
.dest-price { font-weight: 700; color: var(--blue); font-size: 14.5px; margin-bottom: 8px; }
.dest p:last-child { font-size: 12.8px; color: var(--grey); }
.dest-note { font-size: 12.8px; color: var(--grey); text-align: center; max-width: 760px; margin: 30px auto 26px; }

.hajj {
  background: linear-gradient(160deg, var(--navy) 0%, #163a63 100%); color: var(--white);
}
.hajj-inner { max-width: 640px; text-align: center; margin: 0 auto; }
.hajj-inner h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; margin: 12px 0 14px; }
.hajj-inner p { color: #DCE8F7; margin-bottom: 26px; }

.trust { background: var(--sand); padding: 48px 0; }
.trust-item { text-align: center; }
.trust-item strong { display: block; font-size: 26px; color: var(--navy); }
.trust-item span { font-size: 13.5px; color: var(--grey); }

.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.contact-card {
  border: 1px solid #EAE2CB; border-radius: var(--radius); padding: 20px;
}
.contact-card h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--pink); margin-bottom: 8px; }
.contact-card p { font-size: 14.5px; }
.contact-card a { text-decoration: none; color: var(--blue); }
.contact-card a:hover { text-decoration: underline; }

/* Footer */
.site-footer { background: var(--navy); color: #9FB4CE; padding: 28px 0; font-size: 12.5px; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* Responsive */
@media (max-width: 900px) {
  .grid-4, .grid-5, .grid-3, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
}
@media (max-width: 560px) {
  .grid-4, .grid-5, .grid-3, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 72px; }
  section { padding: 56px 0; }
}

/* Mobile nav open state */
.main-nav.open {
  display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); padding: 16px 24px; border-bottom: 1px solid #EDE7D4; gap: 4px;
}
.main-nav.open a { padding: 10px 0; border-bottom: 1px solid #F1ECDC; }
/* Brand refresh — palette alignée sur le logo (bleu / violet / rose), typographie et touches distinctives */
h1, .section-head h2, .hajj-inner h2, .brand-text {
  font-family: var(--font-display);
  font-weight: 600;
}
.brand-text { letter-spacing: .01em; }

.hero::after {
  content: "";
  position: absolute; right: -60px; top: -60px; width: 420px; height: 420px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='84' stroke='white' stroke-width='2' fill='none'/%3E%3Cpath d='M40 130c40 24 100 14 150-40' stroke='white' stroke-width='6' stroke-linecap='round' fill='none'/%3E%3Cpath d='M150 60l40-14-12 22 22 6-28 10-8 16-6-18-20-4 12-18z' fill='white'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: .08; pointer-events: none;
}

.card, .dest { position: relative; overflow: hidden; }
.card::before, .dest::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--pink));
}

.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.contact-card .social-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
  border-radius: 999px; font-size: 13.5px; font-weight: 600;
  color: var(--white); text-decoration: none;
  transition: transform .12s ease, opacity .12s ease;
}
.contact-card .social-btn:hover { transform: translateY(-1px); text-decoration: none; opacity: .9; }
.social-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.social-tiktok { background: #010101; }
.social-instagram { background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 60%, #6228d7 100%); }
