:root {
  --black: #050709;
  --black-2: #0d1114;
  --black-3: #15181c;
  --gold: #b98634;
  --gold-2: #e7c476;
  --cream: #f7f1e8;
  --white: #fffdf8;
  --text: #171310;
  --muted: #6f675d;
  --line: #e5d8c5;
  --green: #168243;
  --orange: #d18a18;
  --danger: #9b2d2d;
  --shadow: 0 18px 50px rgba(17, 12, 5, 0.10);
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}
body.login-page,
body.admin-page { background: #f6efe4; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.serif, h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; }
.container { width: min(1320px, calc(100% - 44px)); margin-inline: auto; }
.hidden { display: none !important; }

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 9, 0.97);
  border-bottom: 1px solid rgba(231, 196, 118, 0.25);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand { flex: 0 0 auto; display: flex; align-items: center; }
.logo { width: 220px; height: auto; }
.menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
  white-space: nowrap;
}
.menu a:not(.btn) {
  opacity: .88;
  padding: 30px 0 24px;
  border-bottom: 2px solid transparent;
}
.menu a:hover,
.menu a.active:not(.btn) {
  color: var(--gold-2);
  border-bottom-color: var(--gold);
}
.mobile-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  color: var(--gold-2);
  border: 1px solid rgba(231,196,118,.7);
  border-radius: 8px;
  padding: 10px 13px;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 11px 18px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: transparent;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #111;
  border-color: transparent;
}
.btn.dark { background: var(--black); color: #fff; border-color: var(--black); }
.btn.light { background: #fff; color: var(--gold); border-color: #d8c8ad; }
.btn.full { width: 100%; }
.menu .btn {
  padding: 8px 11px;
  min-height: 38px;
  font-size: 10.5px;
  border-bottom: 1px solid var(--gold);
}
.menu .btn.active { box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); }

/* Home */
.hero {
  position: relative;
  min-height: 710px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.76) 42%, rgba(0,0,0,.18) 78%),
    url('images/hero-gln.png') center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 20px;
  background: #fff url('images/pattern-niger-gold.png') center / auto 72px repeat-x;
}
.hero-content { width: min(680px, 100%); padding: 86px 0 112px; }
.anniv { display: flex; align-items: center; gap: 18px; color: var(--gold-2); font-family: Georgia, serif; }
.anniv .num { font-size: clamp(72px, 8vw, 118px); line-height: .8; }
.anniv .txt { font-size: 28px; }
.hero h1 { font-size: clamp(34px, 4vw, 52px); line-height: 1.18; margin: 20px 0; text-transform: uppercase; letter-spacing: .035em; }
.hero p { font-size: 20px; color: #efe7da; max-width: 600px; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 32px 0 26px; }
.countdown .box { border: 1px solid rgba(231,196,118,.45); background: rgba(0,0,0,.42); padding: 18px 14px; text-align: center; border-radius: 8px; }
.countdown .value { font-family: Georgia, serif; font-size: 42px; color: var(--gold-2); line-height: 1; }
.countdown .label { margin-top: 7px; font-size: 12px; text-transform: uppercase; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.event-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; color: var(--gold-2); font-weight: 900; text-transform: uppercase; }

/* Sections */
.section { padding: 64px 0; }
.section.white { background: #fff; }
.section.dark { background: var(--black); color: #fff; }
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 42px; align-items: center; }
.eyebrow { color: var(--gold); font-size: 13px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.section h2, .page-title h1 { font-size: clamp(32px, 3vw, 44px); line-height: 1.14; margin: 10px 0 18px; }
.lead { font-size: 17px; color: var(--muted); max-width: 780px; }
.dark .lead, .page-hero .lead { color: #ded1bf; }
.stat-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { background: #fff; padding: 28px 18px; text-align: center; }
.stat .icon { font-size: 30px; color: var(--gold); }
.stat b { display: block; margin-top: 10px; font-family: Georgia, serif; font-size: 30px; }
.quote { background: var(--black); color: #fff; padding: 28px 20px; text-align: center; font-family: Georgia, serif; font-size: 21px; }
.quote small { color: var(--gold-2); }

/* Page heroes */
.page-hero {
  color: #fff;
  padding: 62px 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.48)),
    var(--banner) center/cover no-repeat;
}
.page-hero .container { display: flex; gap: 24px; align-items: center; }
.page-icon {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-size: 34px;
}
.page-title p { margin: 0; color: #efe8d9; font-size: 18px; }

/* Generic layout */
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.card.pad { padding: 26px; }
.grid-2 { display: grid; grid-template-columns: minmax(0, 2fr) minmax(280px, .85fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.tabs, .filters { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 28px 0; }
.tab, .filters select {
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 18px;
  border-radius: 7px;
  font-weight: 800;
  cursor: pointer;
}
.tab.active { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #111; border-color: transparent; }

/* Forms */
.form-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.field label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 900; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #dccfbd;
  border-radius: 7px;
  background: #fff;
  padding: 13px 14px;
  color: var(--text);
}
.field textarea { min-height: 136px; resize: vertical; }
.progress { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 30px; }
.step { display: flex; align-items: center; gap: 9px; color: #777; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.step span { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; border: 1px solid #bbb; background: #fff; }
.step.active { color: #111; }
.step.active span { background: var(--gold); color: #fff; border-color: var(--gold); }
.summary-card {
  background: linear-gradient(160deg, var(--black), #11100d);
  color: #fff;
  border: 1px solid rgba(231,196,118,.35);
  padding: 26px;
  border-radius: var(--radius);
  position: sticky;
  top: 106px;
}
.summary-card h3 { color: var(--gold-2); margin-top: 0; }
.summary-line { display: flex; justify-content: space-between; gap: 18px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); }

/* Programme */
.timeline-layout { display: grid; grid-template-columns: 270px minmax(0,1fr) 360px; gap: 26px; }
.days-vertical { background: var(--black); color: #fff; border-radius: var(--radius); overflow: hidden; }
.day-line { display: grid; grid-template-columns: 80px 1fr; border-bottom: 1px solid rgba(255,255,255,.12); }
.day-line .date { padding: 21px 9px; text-align: center; border-right: 1px solid rgba(255,255,255,.12); }
.day-line .date b { display: block; color: var(--gold-2); font-family: Georgia, serif; font-size: 33px; }
.day-line .info { padding: 22px 16px; }
.day-line.active .date { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #111; }
.day-line.active .date b { color: #111; }
.timeline { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.timeline-item { display: grid; grid-template-columns: 84px 48px minmax(0,1fr); gap: 18px; padding: 17px 0; border-bottom: 1px solid #ece6dc; }
.timeline-item:last-child { border-bottom: 0; }
.time { font-size: 18px; font-weight: 900; }
.dot { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--black); color: var(--gold-2); }
.timeline h3 { margin: 0 0 4px; }
.detail-card img { height: 215px; width: 100%; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }

/* Hotels */
.hotel-layout { display: grid; grid-template-columns: minmax(0,1fr) 350px; gap: 26px; }
.hotel-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.hotel-card { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.hotel-card img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; }
.hotel-info { padding: 22px; }
.stars { color: var(--gold); letter-spacing: 3px; }
.amenities { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; color: #2a251e; }
.side-stack { display: flex; flex-direction: column; gap: 22px; }
.map-card img { border: 1px solid var(--line); border-radius: 8px; }
.partner-logos { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.partner-logo { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 13px 16px; color: var(--green); font-weight: 900; }

/* Practical infos */
.info-grid { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 26px; }
.info-cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.info-card { min-height: 245px; }
.big-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 12px; background: #111; color: var(--gold-2); border-radius: 7px; font-size: 24px; }
.checks { list-style: none; padding: 0; margin: 16px 0; }
.checks li { display: flex; gap: 10px; margin: 10px 0; }
.checks li::before { content: "✓"; flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; display: inline-grid; place-items: center; background: var(--gold); color: #fff; font-size: 12px; }
.download-box { padding: 26px; border-radius: var(--radius); background: linear-gradient(135deg, #c29142, #7b4b13); color: #fff; }
.download-row { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.24); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.gallery-grid img { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; }
.gallery-grid .wide { grid-column: span 2; }

/* Participant and admin shared */
.portal, .admin-layout { display: grid; grid-template-columns: 288px minmax(0,1fr); min-height: calc(100vh - 82px); }
.sidebar { background: var(--black); color: #fff; padding: 24px 16px; border-right: 1px solid rgba(231,196,118,.25); }
.sidebar .logo { width: 210px; margin: 0 auto 20px; }
.side-link { display: flex; align-items: center; gap: 13px; padding: 15px 16px; margin-bottom: 7px; border-radius: 8px; color: #eee; font-weight: 800; }
.side-link:hover, .side-link.active { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #111; }
.side-link.logout { margin-top: 26px; border: 1px solid rgba(231,196,118,.35); }
.portal-main { padding: 26px; }
.dash-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(310px, .8fr); gap: 22px; }
.welcome-card { min-height: 250px; padding: 34px; border-radius: var(--radius); background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.32)), url('images/hero-gln.png') center/cover no-repeat; color: #fff; }
.badge-card { text-align: center; }
.badge-card img { width: 210px; margin: 0 auto 16px; }
.doc-row, .notif-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid #ece6dc; }

/* Admin */
.admin-top {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: var(--black);
  color: #fff;
  border-bottom: 1px solid rgba(231,196,118,.3);
}
.admin-top h1 { margin: 0; }
.admin-top .spacer { margin-left: auto; }
.kpi-row { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 14px; }
.kpi { padding: 20px; min-height: 130px; }
.kpi span { display: block; color: var(--muted); font-weight: 800; }
.kpi .num { margin: 8px 0 4px; font-family: Georgia, serif; font-size: 34px; color: #111; }
.table-wrap { width: 100%; overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th, .data-table td { padding: 13px 12px; border-bottom: 1px solid #ece6dc; text-align: left; vertical-align: top; }
.data-table th { background: #f4ede2; font-weight: 900; }
.status { display: inline-flex; align-items: center; min-height: 24px; border-radius: 20px; padding: 3px 10px; font-size: 12px; font-weight: 900; }
.status.ok { background: #e5f4e9; color: var(--green); }
.status.wait { background: #fff1db; color: var(--orange); }
.bars .bar { display: grid; grid-template-columns: 92px minmax(0,1fr) 45px; gap: 10px; align-items: center; margin: 12px 0; }
.track { height: 10px; border-radius: 999px; background: #eee5d8; overflow: hidden; }
.fill { height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold), var(--black)); }
.line-chart { height: 180px; border: 1px solid #ece6dc; border-radius: 8px; background: linear-gradient(180deg,#fff,#f6efe4); overflow: hidden; }
.line-chart svg { width: 100%; height: 100%; }

/* Login */
.admin-login-hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(360px, 560px) minmax(280px, 1fr);
  gap: 34px;
  align-items: center;
  padding: 64px max(32px, calc((100vw - 1320px)/2));
  background: linear-gradient(90deg, rgba(0,0,0,.98), rgba(0,0,0,.74) 44%, rgba(0,0,0,.35)), url('images/hero-gln.png') center/cover no-repeat;
  color: #fff;
}
.login-panel { padding: 38px; background: rgba(255,253,248,.97); color: var(--text); box-shadow: 0 30px 90px rgba(0,0,0,.42); }
.login-brand { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.login-brand img { width: 210px; }
.login-panel h1 { margin: 0 0 8px; font-size: 38px; }
.login-form { display: grid; gap: 18px; margin-top: 24px; }
.password-field { position: relative; }
.password-field input { padding-right: 92px; }
.password-field button { position: absolute; right: 8px; bottom: 7px; min-height: 36px; border: 1px solid var(--line); background: #fff; border-radius: 5px; color: var(--gold); font-weight: 900; cursor: pointer; }
.remember-row { display: flex; align-items: center; gap: 10px; color: #4d4439; font-size: 14px; font-weight: 700; }
.login-error { padding: 13px 14px; margin-top: 16px; border: 1px solid #dca1a1; border-radius: 6px; background: #fff0f0; color: #8c2020; font-weight: 900; }
.demo-credentials { display: grid; gap: 6px; margin-top: 22px; padding: 16px; border: 1px dashed #c9a66c; border-radius: 8px; background: #fbf5ea; color: #3d352b; }
.demo-credentials code { background: #161616; color: var(--gold-2); padding: 3px 6px; border-radius: 4px; }
.login-side { max-width: 520px; padding: 34px; border: 1px solid rgba(231,196,118,.35); border-radius: var(--radius); background: rgba(5,7,9,.75); backdrop-filter: blur(10px); }
.login-side h2 { margin-top: 0; color: var(--gold-2); font-size: 40px; }

/* Footer */
.footer { background: var(--black); color: #d8c8ad; padding: 32px 0; text-align: center; }
.footer .motto { font-family: Georgia, serif; color: var(--gold-2); letter-spacing: .18em; text-transform: uppercase; }

/* Responsive */
@media (max-width: 1280px) {
  .logo { width: 200px; }
  .menu { gap: 9px; font-size: 10px; }
  .menu .btn { padding: 7px 9px; font-size: 10px; }
}
@media (max-width: 1120px) {
  .mobile-toggle { display: inline-flex; }
  .menu {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    z-index: 60;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 22px 18px;
    background: var(--black);
    border-bottom: 1px solid rgba(231,196,118,.35);
    white-space: normal;
  }
  .menu.open { display: flex; }
  .menu a:not(.btn), .menu .btn { padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.08); justify-content: flex-start; width: 100%; }
  .grid-2, .split, .hotel-layout, .info-grid, .timeline-layout, .portal, .admin-layout, .dash-grid { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .kpi-row, .grid-3, .grid-4, .info-cards, .hotel-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .form-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .summary-card { position: static; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1320px); }
  .nav { min-height: 74px; }
  .logo { width: 178px; }
  .menu { top: 74px; }
  .hero { min-height: auto; }
  .hero-content { padding: 62px 0 88px; }
  .countdown, .stat-row, .kpi-row, .grid-3, .grid-4, .info-cards, .hotel-list, .form-grid, .progress { grid-template-columns: 1fr; }
  .hotel-card { grid-template-columns: 1fr; }
  .page-hero .container { align-items: flex-start; }
  .page-icon { width: 58px; height: 58px; font-size: 26px; }
  .timeline-item { grid-template-columns: 68px 42px 1fr; gap: 10px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-grid .wide { grid-column: span 2; }
  .admin-top { flex-wrap: wrap; }
  .admin-login-hero { grid-template-columns: 1fr; padding: 28px 18px; }
  .login-side { display: none; }
  .login-brand { align-items: flex-start; flex-direction: column; }
  .login-brand img { width: 180px; }
}
@media (max-width: 460px) {
  .hero-actions .btn, .event-meta { width: 100%; }
  .countdown .value { font-size: 34px; }
  .card.pad, .login-panel { padding: 22px; }
  .tabs, .filters { align-items: stretch; }
  .tab, .filters select { width: 100%; }
}


/* Hotel detail gallery */
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.hotel-detail-hero { min-height: 260px; }
.hotel-detail-layout { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 28px; align-items: start; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.hotel-overview { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 26px; align-items: center; margin-bottom: 32px; }
.hotel-facts { display: grid; grid-template-columns: 1fr; gap: 12px; }
.hotel-facts div { border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px; background: #fff; }
.hotel-facts b { display: block; font-family: Georgia, serif; color: var(--gold); font-size: 24px; line-height: 1.1; }
.hotel-facts span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; font-weight: 900; margin-top: 5px; }
.gallery-header { margin: 28px 0 18px; }
.hotel-photo-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.hotel-photo { position: relative; border: 0; padding: 0; background: #000; border-radius: 10px; overflow: hidden; cursor: pointer; min-height: 235px; box-shadow: var(--shadow); }
.hotel-photo img { width: 100%; height: 235px; object-fit: cover; transform: scale(1.01); transition: transform .22s ease, opacity .22s ease; }
.hotel-photo:hover img { transform: scale(1.055); opacity: .9; }
.hotel-photo span { position: absolute; left: 12px; bottom: 12px; right: 12px; padding: 9px 12px; border-radius: 7px; background: rgba(0,0,0,.68); color: var(--gold-2); font-weight: 900; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; color: var(--gold); font-weight: 900; margin-right: 8px; }
.lightbox { position: fixed; z-index: 200; inset: 0; background: rgba(0,0,0,.88); display: grid; place-items: center; padding: 34px; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 78vh; border-radius: 10px; border: 1px solid rgba(231,196,118,.45); box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.lightbox-close { position: fixed; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(231,196,118,.6); background: rgba(0,0,0,.5); color: #fff; font-size: 30px; cursor: pointer; }
#lightboxCaption { color: var(--gold-2); font-weight: 900; text-transform: uppercase; margin-top: 14px; letter-spacing: .06em; }
@media (max-width: 980px) {
  .hotel-detail-layout, .hotel-overview { grid-template-columns: 1fr; }
  .hotel-photo-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .card-actions { grid-template-columns: 1fr; }
  .hotel-photo-grid { grid-template-columns: 1fr; }
  .hotel-photo, .hotel-photo img { min-height: 220px; height: 220px; }
}








/* Animation du compte à rebours */
.countdown-box span {
  display: inline-block;
  transition: transform 0.25s ease, color 0.25s ease;
}

.countdown-box span.tick {
  animation: countdownTick 0.45s ease;
}

@keyframes countdownTick {
  0% {
    transform: scale(1);
    color: #d6a84f;
    text-shadow: 0 0 0 rgba(214, 168, 79, 0);
  }

  45% {
    transform: scale(1.18);
    color: #ffffff;
    text-shadow: 0 0 18px rgba(214, 168, 79, 0.75);
  }

  100% {
    transform: scale(1);
    color: #d6a84f;
    text-shadow: 0 0 0 rgba(214, 168, 79, 0);
  }
}















