/* ============================================================
   Holiday Inn Toulouse Airport — News Dashboard
   Brand: IHG Green #006B54 + Deep Navy #0A2340 + Gold accent
   Mobile-first, lobby-display ready
   ============================================================ */

:root {
  /* Brand palette */
  --hi-green:       #006B54;
  --hi-green-dark:  #004c3c;
  --hi-green-light: #e6f2ef;
  --hi-navy:        #0A2340;
  --hi-navy-mid:    #1a3a5c;
  --gold:           #C9952A;
  --gold-light:     #fdf3e0;

  /* Neutrals */
  --ink:            #0f1f1a;
  --ink-mid:        #2e4040;
  --muted:          #607070;
  --bg:             #f4f6f5;
  --card:           #ffffff;
  --line:           #dde6e3;

  /* Shadows */
  --shadow-sm:      0 2px 8px rgba(0,76,60,.07);
  --shadow-md:      0 8px 28px rgba(0,76,60,.10);
  --shadow-lg:      0 18px 56px rgba(0,76,60,.13);

  /* Radius */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── TOP BAR ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: var(--hi-navy);
  border-bottom: 3px solid var(--hi-green);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 156px;
  height: 46px;
  border-radius: 12px;
  overflow: hidden;
  background: #006B54;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  text-decoration: none;
  flex: 0 0 auto;
}
.brand-logo img {
  width: 156px;
  height: 46px;
  object-fit: contain;
  display: block;
}
.brand-name {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: .3px;
}
.brand-sub {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-top: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 999px;
  transition: background .18s, color .18s;
}
nav a:first-child {
  background: var(--hi-green);
  color: #fff;
  border: 2px solid var(--hi-green);
}
nav a:first-child:hover {
  background: var(--hi-green-dark);
  border-color: var(--hi-green-dark);
}
nav a.ghost {
  background: transparent;
  color: rgba(255,255,255,.55);
  border: 2px solid rgba(255,255,255,.18);
}
nav a.ghost:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

/* ── HERO STRIP ── */
.hero {
  background: linear-gradient(100deg, var(--hi-navy) 0%, var(--hi-navy-mid) 55%, var(--hi-green-dark) 100%);
  color: #fff;
  padding: 36px 32px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-left { position: relative; }
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: -.5px;
}
.hero > .hero-left > p {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  max-width: 560px;
}

.timebox {
  position: relative;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-md);
  padding: 16px 22px;
  min-width: 210px;
  text-align: right;
  flex-shrink: 0;
}
.timebox span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px;
}
.timebox strong {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

/* ── MAIN LAYOUT ── */
main {
  max-width: 1480px;
  margin: 0 auto;
  padding: 28px 24px 40px;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

/* ── SECTION HEADING ── */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
}
.section-head h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--hi-navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-head h2 .icon {
  width: 28px;
  height: 28px;
  background: var(--hi-green);
  color: #fff;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.section-head span {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* ── NEWS CARDS ── */
.headline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.lead-card {
  grid-column: span 2;
  background: linear-gradient(135deg, #fff 60%, var(--hi-green-light));
  border-top: 4px solid var(--hi-green);
  min-height: 230px;
}

.meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 8px;
}
.meta span:first-child {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  background: var(--hi-green-light);
  color: var(--hi-green-dark);
  padding: 3px 9px;
  border-radius: 999px;
}
.meta span:last-child {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}

.card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.28;
  color: var(--ink);
  margin-bottom: 10px;
  flex-grow: 0;
}
.lead-card h3 {
  font-size: 22px;
  line-height: 1.2;
}
.card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}
.read {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--hi-green);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}
.read::after { content: ' →'; }
.read:hover { color: var(--hi-green-dark); }

.empty {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
  text-align: center;
  color: var(--muted);
  font-style: italic;
}

/* ── MINI SECTIONS (France / Business / Sport) ── */
.mini-sections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.mini-news {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.mini-news h2 {
  font-size: 14px;
  font-weight: 800;
  color: var(--hi-navy);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mini-news a {
  display: block;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.35;
  transition: color .15s;
}
.mini-news a:hover { color: var(--hi-green); }
.mini-news p { color: var(--muted); font-size: 13px; font-style: italic; }

/* ── GUEST SIDEBAR ── */
.guest-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.service-card h2 {
  font-size: 15px;
  font-weight: 800;
  color: var(--hi-navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.service-card h2 .icon {
  width: 30px;
  height: 30px;
  background: var(--hi-green);
  color: #fff;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.service-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.service-card p:last-child { margin-bottom: 0; }

/* Weather card */
.weather-card {
  background: linear-gradient(135deg, var(--hi-navy) 0%, var(--hi-green-dark) 100%);
  border: none;
  color: #fff;
}
.weather-card h2 { color: #fff; }
.weather-card h2 .icon { background: rgba(255,255,255,.18); }
.weather-card p { color: rgba(255,255,255,.7); }

.weather-body {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin: 8px 0 12px;
}
.weather-temp {
  font-size: 62px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: -2px;
}
.weather-unit { font-size: 28px; font-weight: 700; color: rgba(255,255,255,.6); align-self: flex-start; margin-top: 12px; }
.weather-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 6px;
}
.weather-detail span {
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.weather-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.weather-pill {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}

/* Button rows */
.button-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.button-row a {
  background: var(--hi-green);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 700;
  font-size: 13px;
  transition: background .18s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.button-row a:hover { background: var(--hi-green-dark); }

.small {
  font-size: 12px !important;
  color: var(--hi-green) !important;
  font-weight: 600;
  margin-top: 10px !important;
}

/* HI brand accent bar on sidebar cards */
.service-card:not(.weather-card) { border-left: 3px solid var(--hi-green); }

/* ── FOOTER ── */
footer {
  max-width: 1480px;
  margin: 0 auto 32px;
  padding: 0 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .layout {
    grid-template-columns: 1fr;
  }
  .guest-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .weather-card {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .topbar {
    padding: 0 16px;
    height: 62px;
  }
  .brand-sub { display: none; }
  nav a.ghost { display: none; }

  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 16px 22px;
    gap: 16px;
  }
  .timebox {
    width: 100%;
    text-align: left;
    min-width: 0;
  }

  main { padding: 16px 12px 32px; }

  .headline-grid {
    grid-template-columns: 1fr;
  }
  .lead-card {
    grid-column: span 1;
  }
  .lead-card h3 { font-size: 18px; }

  .mini-sections {
    grid-template-columns: 1fr;
  }

  .guest-column {
    grid-template-columns: 1fr;
  }
  .weather-card { grid-column: span 1; }

  .weather-temp { font-size: 52px; }
}

@media (min-width: 1600px) {
  main, footer { max-width: 1640px; }
  .layout { grid-template-columns: minmax(0, 1fr) 400px; }
}
