/* Le Quetzal Cafe - Redon
   Reconstruction statique du site d'origine (Google Sites)
   Theme repris de l'archive : teal #0F7487, clair #E7F1F3, or #B79951 */

:root{
  --teal:#0F7487;
  --teal-dark:#0D6879;
  --teal-light:#E7F1F3;
  --gold:#B79951;
  --ink:#212121;
  --muted:#6A6A6A;
  --white:#fff;
  --max:1100px;
  --radius:4px;
}

*,*::before,*::after{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Roboto,"Open Sans",Lato,Arial,Helvetica,sans-serif;
  font-size:16px;
  line-height:1.65;
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}

img{max-width:100%;height:auto;display:block}

a{color:var(--teal);text-decoration:none}
a:hover{text-decoration:underline}

.wrap{max-width:var(--max);margin:0 auto;padding:0 24px}

.skip-link{
  position:absolute;left:-9999px;top:0;
  background:var(--teal);color:#fff;padding:10px 16px;z-index:100;
}
.skip-link:focus{left:0}

/* ---------- En-tete / navigation ---------- */
.site-header{
  position:sticky;top:0;z-index:50;
  background:var(--white);
  border-bottom:1px solid rgba(0,0,0,.12);
  box-shadow:0 1px 3px rgba(0,0,0,.08);
}
.site-header .wrap{
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;min-height:64px;
}
.brand{
  font-family:"Dancing Script",cursive;
  font-size:30px;line-height:1;color:var(--ink);
  text-decoration:none;white-space:nowrap;
}
.brand:hover{text-decoration:none}

.nav-toggle{
  display:none;background:none;border:0;cursor:pointer;
  padding:8px;font-size:24px;color:var(--ink);line-height:1;
}

.site-nav ul{display:flex;gap:8px;list-style:none;margin:0;padding:0}
.site-nav a{
  display:block;padding:10px 14px;color:var(--ink);
  font-size:15px;border-radius:var(--radius);
}
.site-nav a:hover{background:var(--teal-light);text-decoration:none}
.site-nav a.active{color:var(--teal);font-weight:500;box-shadow:inset 0 -3px 0 var(--teal)}

/* ---------- Banniere ---------- */
.hero{
  position:relative;
  min-height:460px;
  display:flex;align-items:center;justify-content:center;
  text-align:center;
  background:var(--teal) center/cover no-repeat;
  background-image:linear-gradient(rgba(0,0,0,.42),rgba(0,0,0,.42)),url("../img/banniere-accueil.jpg");
  color:var(--white);
  padding:80px 24px;
}
.hero h1{
  font-family:"Dancing Script",cursive;
  font-weight:700;
  font-size:clamp(48px,9vw,86px);
  margin:0;line-height:1.05;
  text-shadow:0 2px 12px rgba(0,0,0,.45);
}
.hero .hero-sub{
  font-size:clamp(16px,2.4vw,22px);
  margin:18px 0 0;
  text-shadow:0 1px 8px rgba(0,0,0,.5);
}

.page-head{
  background:var(--teal-light);
  padding:56px 24px 48px;
  text-align:center;
}
.page-head h1{
  font-family:"Dancing Script",cursive;
  font-size:clamp(34px,6vw,54px);
  color:var(--teal);margin:0;line-height:1.2;
}

/* ---------- Sections ---------- */
.section{padding:64px 0}
.section.light{background:var(--teal-light)}
.section.teal{
  background:var(--teal) center/cover no-repeat;
  background-image:linear-gradient(rgba(15,116,135,.88),rgba(15,116,135,.88)),url("../img/fond-contact.jpg");
  color:var(--white);
}
.section.teal a{color:var(--white);text-decoration:underline}
.section.teal h2{color:var(--white)}

h2{
  font-family:"Dancing Script",cursive;
  font-size:clamp(32px,5vw,46px);
  font-weight:700;margin:0 0 8px;color:var(--teal);
  text-align:center;line-height:1.2;
}
h3{font-size:20px;font-weight:500;margin:0 0 10px;color:var(--ink)}

.rule{
  width:64px;height:3px;background:var(--gold);
  border:0;margin:0 auto 34px;
}

/* ---------- Grille de vignettes ---------- */
.tiles{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.tile{text-align:center;margin:0}
.tile img{
  width:100%;aspect-ratio:1/1;object-fit:cover;
  border-radius:var(--radius);
  background:var(--teal-light);
}
.tile figcaption{
  margin-top:12px;font-size:17px;font-weight:500;color:var(--ink);
}

/* ---------- Texte / prose ---------- */
.prose{max-width:820px;margin:0 auto}
.prose p{margin:0 0 18px}
.prose p:last-child{margin-bottom:0}
.prose .lead{font-size:18px}
.center{text-align:center}

blockquote.quote{
  margin:26px 0;padding:14px 0 14px 22px;
  border-left:3px solid var(--gold);
  font-style:italic;font-size:18px;color:var(--ink);
}

/* ---------- Exemples de plats ---------- */
.menu-split{
  display:grid;grid-template-columns:1fr 1fr;gap:36px;align-items:start;
  max-width:960px;margin:0 auto;
}
.menu-photo img{width:100%;border-radius:var(--radius);background:var(--teal-light)}
.menu-cards{display:grid;gap:20px}
.menu-card{
  background:var(--white);border:1px solid rgba(0,0,0,.12);
  border-radius:var(--radius);padding:20px 22px;
}
.menu-card dl{margin:0}
.menu-card dt{
  font-weight:700;color:var(--teal);margin-top:12px;font-size:15px;
  text-transform:uppercase;letter-spacing:.03em;
}
.menu-card dt:first-child{margin-top:0}
.menu-card dd{margin:2px 0 0;color:var(--ink)}

.note{text-align:center;margin-top:32px;font-size:17px}
.disclaimer{font-size:14px;color:var(--muted);max-width:640px;margin-left:auto;margin-right:auto}

/* ---------- Brunch ---------- */
.brunch{
  display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;
  max-width:960px;margin:0 auto;
}
.brunch img{width:100%;border-radius:var(--radius);background:var(--teal-light)}
.brunch h2{text-align:left}
.brunch .rule{margin-left:0}

/* ---------- Contact ---------- */
.contact-cols{
  display:grid;grid-template-columns:1fr 1fr;gap:48px;
  max-width:900px;margin:0 auto;
}
.contact-cols h3{color:var(--white);font-size:22px;margin-bottom:14px}
.contact-cols ul{list-style:none;margin:0;padding:0}
.contact-cols li{padding:6px 0;border-bottom:1px solid rgba(255,255,255,.18)}
.contact-cols li:last-child{border-bottom:0}
.hours{display:flex;justify-content:space-between;gap:16px}
.hours .day{font-weight:500}
.closed{opacity:.85;font-style:italic}

/* ---------- Carte ---------- */
.map-frame{
  max-width:960px;margin:0 auto;
  border:1px solid rgba(0,0,0,.12);border-radius:var(--radius);overflow:hidden;
  line-height:0;background:var(--teal-light);
}
.map-frame iframe{width:100%;height:420px;border:0;display:block}

/* ---------- Cartes des boissons ---------- */
.boards{display:grid;gap:28px;max-width:900px;margin:0 auto}
.board{margin:0}
.board img{width:100%;border-radius:var(--radius);background:var(--teal-light)}

/* ---------- Carte des boissons (liste de prix) ---------- */
.board figcaption{
  margin-top:10px;text-align:center;font-size:14px;color:var(--muted);
}

.drinks{
  max-width:900px;margin:48px auto 0;
  display:grid;gap:36px;
}
.drink-group h2{
  font-family:"Dancing Script",cursive;
  font-size:30px;font-weight:700;color:var(--teal);
  text-align:center;margin:0 0 4px;
}
.group-note{
  text-align:center;font-size:14px;color:var(--muted);
  margin:0 0 12px;font-style:italic;
}
.price-list{
  list-style:none;margin:0;padding:0;
  columns:2;column-gap:48px;
}
.price-list li{
  display:flex;align-items:baseline;gap:10px;
  padding:7px 0;
  border-bottom:1px dotted rgba(0,0,0,.2);
  break-inside:avoid;
}
.price-list li>span:first-child{flex:1}
.price-list .price{
  font-weight:700;color:var(--teal);white-space:nowrap;
}

@media (max-width:640px){
  .price-list{columns:1}
}

/* ---------- Portrait Emilie ---------- */
.portrait{
  float:right;width:320px;margin:0 0 24px 32px;
  border-radius:var(--radius);background:var(--teal-light);
}
.portrait-wide{width:100%;margin:32px 0;border-radius:var(--radius);background:var(--teal-light)}

/* ---------- Mentions legales ---------- */
.legal h2{
  font-family:Roboto,"Open Sans",Lato,Arial,sans-serif;
  font-size:19px;font-weight:600;text-align:left;
  color:var(--teal);margin:32px 0 8px;
  padding-bottom:6px;border-bottom:1px solid var(--teal-light);
}
.legal h2:first-of-type{margin-top:0}
.legal ul{padding-left:22px}
.legal code{font-size:13px;background:var(--teal-light);padding:1px 5px;border-radius:3px}
.legal li{margin:4px 0}

/* ---------- Pied de page ---------- */
.site-footer{
  background:var(--ink);color:rgba(255,255,255,.87);
  padding:40px 0 28px;text-align:center;font-size:15px;
}
.site-footer a{color:var(--white);text-decoration:underline}
.footer-line{margin:0 0 14px}
.footer-sep{opacity:.5;padding:0 10px}
.footer-legal{margin:0 0 22px;font-size:14px}
.footer-credit{
  font-size:13px;color:rgba(255,255,255,.6);
  display:flex;flex-direction:column;align-items:center;gap:8px;
}
.footer-credit img{width:120px;opacity:.85}

/* ---------- Responsive ---------- */
@media (max-width:900px){
  .tiles{grid-template-columns:repeat(2,1fr)}
  .menu-split,.brunch,.contact-cols{grid-template-columns:1fr;gap:28px}
  .brunch h2{text-align:center}
  .brunch .rule{margin-left:auto}
  .portrait{float:none;width:100%;margin:0 0 24px}
}

@media (max-width:640px){
  .nav-toggle{display:block}
  .site-header .wrap{flex-wrap:wrap;padding-top:8px;padding-bottom:8px}
  .site-nav{flex-basis:100%;display:none}
  .site-nav.open{display:block}
  .site-nav ul{flex-direction:column;gap:0;padding-bottom:8px}
  .site-nav a{padding:12px 8px;border-bottom:1px solid rgba(0,0,0,.08)}
  .site-nav a.active{box-shadow:none}
  .hero{min-height:340px;padding:60px 20px}
  .section{padding:48px 0}
  .footer-sep{display:block;height:0;overflow:hidden}
}

@media print{
  .site-header,.map-frame,.nav-toggle{display:none}
  body{color:#000}
}
