/*
Theme Name: DrinkFavorites One-Pager
Theme URI: https://drinkfavorites.example
Author: DrinkFavorites
Author URI: https://drinkfavorites.example
Description: A lightweight one-page WordPress theme designed for the DrinkFavorites brand. Pairs with the "DrinkFavorites Data Widgets" plugin.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: drinkfavorites
*/

/* Base */
:root{
  --df-bg: #0b1020;
  --df-card: #121a33;
  --df-text: #e9eefc;
  --df-muted: rgba(233,238,252,.72);
  --df-accent: #5eead4;
  --df-accent-2: #60a5fa;
  --df-border: rgba(233,238,252,.12);
  --df-shadow: 0 10px 30px rgba(0,0,0,.35);
  --df-radius: 18px;
  --df-max: 1080px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--df-text);
  background: radial-gradient(1200px 800px at 20% -20%, rgba(96,165,250,.25), transparent 60%),
              radial-gradient(900px 700px at 110% 10%, rgba(94,234,212,.22), transparent 55%),
              var(--df-bg);
  line-height:1.55;
}

a{color:inherit;}
a:hover{opacity:.92}
.container{
  max-width:var(--df-max);
  margin:0 auto;
  padding: 0 20px;
}

.df-skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.df-skip-link:focus{left:20px; top:20px; width:auto; height:auto; padding:10px 14px; background:#111; border:1px solid var(--df-border); border-radius:10px; z-index:9999;}

.df-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(11,16,32,.62);
  border-bottom: 1px solid var(--df-border);
}
.df-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 0;
}
.df-brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}
.df-logo{
  width:34px;
  height:34px;
  border-radius:12px;
  background: linear-gradient(135deg, var(--df-accent), var(--df-accent-2));
  box-shadow: var(--df-shadow);
}
.df-brand strong{
  font-size: 16px;
  letter-spacing: .2px;
}
.df-nav{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.df-nav a{
  text-decoration:none;
  color:var(--df-muted);
  padding:8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.df-nav a:hover{
  color:var(--df-text);
  border-color: var(--df-border);
  background: rgba(255,255,255,.04);
}

.df-hero{
  padding: 70px 0 36px;
}
.df-hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 900px){
  .df-hero-grid{grid-template-columns:1fr;}
}
.df-h1{
  font-size: 44px;
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -0.8px;
}
.df-sub{
  color:var(--df-muted);
  font-size: 17px;
  margin:0 0 18px;
  max-width: 58ch;
}
.df-pill-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.df-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--df-border);
  background: rgba(255,255,255,.03);
  color: var(--df-muted);
  font-size: 13px;
}
.df-card{
  background: rgba(18,26,51,.72);
  border: 1px solid var(--df-border);
  border-radius: var(--df-radius);
  box-shadow: var(--df-shadow);
}
.df-card.pad{padding: 18px;}
.df-card h2{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -.2px;
}
.df-card p{margin:0; color:var(--df-muted);}

.df-section{
  padding: 22px 0;
}
.df-section h2{
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing:-.2px;
}
.df-section p.lead{
  margin: 0 0 16px;
  color: var(--df-muted);
  max-width: 76ch;
}

.df-grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px){
  .df-grid-3{grid-template-columns:1fr;}
}

.df-footer{
  padding: 26px 0 40px;
  border-top: 1px solid var(--df-border);
  margin-top: 34px;
  color: var(--df-muted);
  font-size: 13px;
}
.df-footer a{color:var(--df-text); text-decoration:none; border-bottom:1px dotted var(--df-border);}
.df-footer a:hover{border-bottom-color:var(--df-text);}

.df-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--df-border);
  background: rgba(255,255,255,.03);
  color: var(--df-muted);
  font-size: 13px;
}
