/* ==========================================
   base.css — Reset, Variables, Typography
   Maheswar Reddy Beverages
   Colors: Navy (#0a192f), Green (#1DB954),
           Gold (#D4A53C), White (#fff)
   ========================================== */

:root {
  --navy: #0a192f;
  --navy-light: #112240;
  --navy-mid: #1a2d4a;
  --green: #1DB954;
  --green-dark: #2d8a4e;
  --green-glow: rgba(29,185,84,0.3);
  --gold: #D4A53C;
  --gold-light: #F5C842;
  --gold-glow: rgba(212,165,60,0.3);
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray: #8892b0;
  --gray-light: #ccd6f6;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --font-alt: 'Cormorant Garamond', serif;
  --shadow: 0 20px 60px rgba(10,25,47,0.15);
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-height: 70px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--gray-light);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }

::selection {
  background: var(--green);
  color: var(--navy);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold { color: var(--gold); }
.text-green { color: var(--green); }

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-alt);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,165,60,0.08);
  padding: 6px 20px;
  border-radius: 50px;
  border: 1px solid rgba(212,165,60,0.15);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  font-weight: 700;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.divider span {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

.divider i {
  color: var(--gold);
  font-size: 1.2rem;
}
