@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Nunito:wght@300;400;600;700&display=swap');

:root {
  --fire: #E85D04;
  --ember: #F48C06;
  --gold: #FAA307;
  --dark: #1a0a00;
  --charcoal: #2d1a0e;
  --clay: #6B3A2A;
  --cream: #FFF8F0;
  --light: #FFF3E5;
  --white: #ffffff;
  --text: #2d1a0e;
  --muted: #7a5c4a;
  --shadow: 0 8px 40px rgba(232,93,4,0.15);
}

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

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  background: var(--dark);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1200px; margin: auto;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 24px; height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 50px; width: 50px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--fire);
}
.nav-logo-text {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; line-height: 1.2;
  font-weight: 700;
}
.nav-logo-text span { color: var(--gold); display: block; font-size: 0.7rem; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; }

.nav-links {
  display: flex; gap: 6px; list-style: none;
}
.nav-links a {
  color: #ccc; text-decoration: none;
  padding: 8px 16px; border-radius: 6px;
  font-size: 0.9rem; font-weight: 600;
  transition: all 0.25s; letter-spacing: 0.5px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white); background: var(--fire);
}

.nav-cta {
  background: linear-gradient(135deg,var(--fire),var(--ember));
  color: white !important; border-radius: 8px !important;
  padding: 10px 20px !important;
}

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; }
.hamburger span { width:26px; height:2px; background:white; border-radius:2px; transition:0.3s; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: #aaa;
  padding: 48px 24px 24px;
  margin-top: 80px;
}
.footer-grid {
  max-width: 1200px; margin: auto;
  display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 40px;
}
.footer-col h4 {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; margin-bottom: 16px;
}
.footer-col p, .footer-col a {
  font-size: 0.88rem; line-height: 1.8;
  color: #aaa; text-decoration: none;
  display: block;
}
.footer-col a:hover { color: var(--fire); }
.footer-bottom {
  max-width: 1200px; margin: 32px auto 0;
  border-top: 1px solid #333; padding-top: 20px;
  text-align: center; font-size: 0.82rem; color: #666;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 9999;
  background: #25D366;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  animation: waPulse 2s infinite;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width:32px; height:32px; fill:white; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.75), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ── SECTION HEADER ── */
.section-head {
  text-align: center; margin-bottom: 48px;
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900; color: var(--dark);
  position: relative; display: inline-block;
}
.section-head h2::after {
  content:''; display:block; height:4px;
  background: linear-gradient(90deg,var(--fire),var(--gold));
  border-radius:2px; margin-top:8px;
  animation: lineGrow 1s ease forwards;
  transform-origin: left;
}
@keyframes lineGrow { from{transform:scaleX(0)} to{transform:scaleX(1)} }
.section-head p { color:var(--muted); margin-top:10px; font-size:1rem; max-width:600px; margin-inline:auto; }

/* ── BUTTONS ── */
.btn-fire {
  display: inline-block;
  background: linear-gradient(135deg,var(--fire),var(--ember));
  color: white; padding: 14px 32px;
  border-radius: 10px; font-weight: 700;
  font-size: 1rem; text-decoration: none;
  border: none; cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(232,93,4,0.35);
  letter-spacing: 0.5px;
}
.btn-fire:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(232,93,4,0.5);
}
.btn-outline {
  display: inline-block;
  border: 2px solid var(--fire);
  color: var(--fire); padding: 12px 28px;
  border-radius: 10px; font-weight: 700;
  font-size: 0.95rem; text-decoration: none;
  transition: all 0.3s; background: transparent;
  cursor: pointer;
}
.btn-outline:hover { background:var(--fire); color:white; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 60%, #3d1a05 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-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='%23e85d04' fill-opacity='0.05'%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");
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem,4vw,3rem);
  color: white; font-weight: 900;
  position: relative;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p {
  color: #ccc; margin-top: 12px;
  font-size: 1.05rem; max-width: 600px;
  margin-inline: auto; position: relative;
}
.breadcrumb {
  color: #888; font-size: 0.85rem;
  margin-bottom: 16px; position: relative;
}
.breadcrumb a { color: var(--fire); text-decoration: none; }

/* RESPONSIVE */
@media(max-width:768px) {
  .nav-links { display:none; flex-direction:column; position:absolute; top:72px; left:0; right:0; background:var(--dark); padding:16px; gap:4px; }
  .nav-links.open { display:flex; }
  .hamburger { display:flex; }
}
