/* ===========================
   AEERNY — style.css
   Variables, Reset, Topbar, Hero, Buttons
   =========================== */

:root {
  --orange: #F37021;
  --orange-dark: #C45A10;
  --orange-light: #FFF3E8;
  --green: #1B6B35;
  --green-light: #E8F5EC;
  --brown: #3D1F00;
  --cream: #FFFDF8;
  --text: #2A1500;
  --text-muted: #6B5040;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(61,31,0,0.10);
  --radius: 16px;
  --transition: 0.25s ease;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

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

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); }
.btn-primary.small { padding: 10px 22px; font-size: 0.9rem; }
.btn-primary.full { width: 100%; text-align: center; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.7);
  transition: background var(--transition), border-color var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-disabled {
  display: inline-block;
  background: #ddd;
  color: #999;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: not-allowed;
}

/* === TOP BAR === */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
.topbar.scrolled {
  background: var(--brown);
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.topbar-logo img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}

.topbar-cta {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: background var(--transition);
}
.topbar-cta:hover { background: var(--orange-dark); }

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--transition);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brown);
  padding-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brown) 0%, #6B3500 40%, var(--green) 100%);
  opacity: 0.95;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 60px 5% 60px;
  color: var(--white);
}

.hero-tagline {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  position: absolute;
  right: 0; bottom: 0;
  width: 48%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}
.hero-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center ;
  filter: drop-shadow(-8px 0 40px rgba(0,0,0,0.4));
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  letter-spacing: 1px;
  z-index: 3;
}

/* === RESPONSIVE HERO === */
@media (max-width: 768px) {
  .hero { flex-direction: column; min-height: 100svh; padding-bottom: 0; }
  .hero-image { position: relative; width: 100%; height: 280px; }
  .hero-image img { height: 100%; object-position: center; }
  .hero-content { padding: 80px 20px 24px; }
  .hero h1 { font-size: 2.4rem; }
}