/* ============================================
   RÔTISSERIE CHICKENOS — STYLE SHEET
   Warm & Rustic Design / Food Truck
   Colors extracted from logo
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  /* Logo-matched palette */
  --primary: #CF6518;          /* warm amber-orange (rooster body) */
  --primary-dark: #A85010;     /* deeper burnt orange */
  --primary-light: #E88A30;    /* lighter flame orange */
  --secondary: #7A5C35;        /* bronze/brown (ring shadow) */
  --secondary-light: #9A7648;  /* lighter bronze */
  --accent: #E8A530;           /* golden flame highlights */
  --accent-light: #FFC85A;     /* bright gold tips */
  --bg-dark: #0E0B07;          /* charcoal with warm undertone */
  --bg-card: #181008;          /* dark warm card bg */
  --bg-card-hover: #221710;    /* slightly lighter on hover */
  --text-cream: #F5E6D0;       /* warm cream (like logo text) */
  --text-muted: #B8A48E;       /* muted warm grey */
  --text-dim: #8C7D6C;         /* dim text (WCAG AA ≥ 4.5:1 on --bg-dark) */
  --error: #E74C3C;            /* form error red */
  --gold: #C4882A;             /* golden ring color from logo */
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-cream);
  overflow-x: hidden;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Make <picture> transparent to flex/grid layouts */
picture {
  display: contents;
}

/* Screen-reader only — visually hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

/* ===== CURSOR CANVAS ===== */
#cursor-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* ===== SELECTION ===== */
::selection {
  background: var(--primary);
  color: var(--text-cream);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(15, 10, 6, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(207, 101, 24, 0.15);
  padding: 12px 32px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  z-index: 1001;
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform var(--transition);
  filter: drop-shadow(0 0 8px rgba(207, 101, 24, 0.4));
}

.nav-logo:hover {
  transform: scale(1.1) rotate(5deg);
}

.nav-name {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--text-cream);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-cream);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(207, 101, 24, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 50%, rgba(122, 92, 53, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(232, 165, 48, 0.08) 0%, transparent 40%),
    var(--bg-dark);
}

/* Smoke effects */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.smoke {
  position: absolute;
  bottom: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 245, 230, 0.04) 0%, transparent 70%);
  filter: blur(40px);
  animation: smokeRise 8s ease-out infinite;
}

.smoke-1 {
  left: 20%;
  width: 200px;
  height: 200px;
  animation-delay: 0s;
  animation-duration: 10s;
}
.smoke-2 {
  left: 50%;
  width: 150px;
  height: 150px;
  animation-delay: 3s;
  animation-duration: 12s;
}
.smoke-3 {
  left: 70%;
  width: 180px;
  height: 180px;
  animation-delay: 5s;
  animation-duration: 9s;
}

@keyframes smokeRise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) scale(2.5);
    opacity: 0;
  }
}

/* Ember particles */
.ember {
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px 5px rgba(232, 165, 48, 0.6), 0 0 24px 8px rgba(207, 101, 24, 0.2);
  animation: emberFloat linear infinite;
}

.ember-1 { left: 10%; animation-duration: 6s; animation-delay: 0s; width: 12px; height: 12px; }
.ember-2 { left: 25%; animation-duration: 8s; animation-delay: 1s; width: 8px; height: 8px; }
.ember-3 { left: 40%; animation-duration: 5s; animation-delay: 2s; width: 11px; height: 11px; }
.ember-4 { left: 55%; animation-duration: 9s; animation-delay: 0.5s; width: 7px; height: 7px; }
.ember-5 { left: 65%; animation-duration: 7s; animation-delay: 3s; width: 13px; height: 13px; }
.ember-6 { left: 78%; animation-duration: 6.5s; animation-delay: 1.5s; width: 9px; height: 9px; }
.ember-7 { left: 88%; animation-duration: 8s; animation-delay: 2.5s; width: 10px; height: 10px; }
.ember-8 { left: 35%; animation-duration: 10s; animation-delay: 4s; width: 8px; height: 8px; }

@keyframes emberFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) translateX(30px);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

/* Hero logo */
.hero-logo-wrap {
  margin-top: 20px;
  margin-bottom: 28px;
}

.hero-logo {
  width: clamp(180px, 30vw, 320px);
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 30px rgba(207, 101, 24, 0.35)) drop-shadow(0 0 60px rgba(232, 165, 48, 0.15));
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes flicker {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.9); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 8px;
}

.title-line {
  display: block;
}

.title-line-1 {
  font-size: clamp(2rem, 5.5vw, 4rem);
  color: var(--text-cream);
  text-shadow: 0 2px 40px rgba(207, 101, 24, 0.2);
  letter-spacing: 2px;
}

.title-line-2 {
  font-size: clamp(3rem, 9vw, 6.5rem);
  background: linear-gradient(135deg, var(--accent-light), var(--primary), var(--accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  position: relative;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-tagline {
  font-size: clamp(0.8rem, 1.6vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}

.divider-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.divider-flame {
  font-size: 1.2rem;
  animation: flicker 2s ease-in-out infinite alternate;
}

.divider-wing {
  font-size: 1.2rem;
}

.divider-wing.flip {
  display: inline-block;
  transform: scaleX(-1);
}

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--text-cream);
  box-shadow:
    0 4px 15px rgba(207, 101, 24, 0.4),
    0 0 0 0 rgba(207, 101, 24, 0);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 25px rgba(207, 101, 24, 0.5),
    0 0 0 4px rgba(207, 101, 24, 0.15);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn span,
.btn svg {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Scroll indicator */


/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-delay-1 {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out 0.15s, transform 0.8s ease-out 0.15s;
}
.reveal-delay-2 {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}
.reveal-delay-3 {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out 0.45s, transform 0.8s ease-out 0.45s;
}
.reveal-delay-4 {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out 0.6s, transform 0.8s ease-out 0.6s;
}

.reveal.visible,
.reveal-delay-1.visible,
.reveal-delay-2.visible,
.reveal-delay-3.visible,
.reveal-delay-4.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ANNOUNCEMENT SECTION
   ============================================ */
.announcement {
  padding: 80px 0 60px;
  position: relative;
}

.announcement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(207, 101, 24, 0.2), transparent);
}

.announce-card {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(207, 101, 24, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-card), rgba(26, 18, 9, 0.6));
  border: 1px solid rgba(207, 101, 24, 0.12);
  border-radius: var(--radius);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.announce-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
}

.announce-flames {
  font-size: 2rem;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.announce-flames span {
  animation: flicker 1.5s ease-in-out infinite alternate;
}
.announce-flames span:nth-child(2) { animation-delay: 0.3s; }
.announce-flames span:nth-child(3) { animation-delay: 0.6s; }

.announce-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.announce-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 0 auto 28px;
  border-radius: 3px;
}

.announce-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 16px;
  line-height: 1.8;
}

.announce-text-bold {
  color: var(--text-cream);
  font-weight: 600;
  font-size: 1.15rem;
}

.announce-icons {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.announce-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(207, 101, 24, 0.1);
  border: 1px solid rgba(207, 101, 24, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all var(--transition-bounce);
}

.icon-circle:hover {
  transform: scale(1.1) rotate(5deg);
  background: rgba(207, 101, 24, 0.2);
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(207, 101, 24, 0.2);
}

.announce-icon-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ============================================
   SHARED COMPONENTS
   ============================================ */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(207, 101, 24, 0.1);
  padding: 6px 20px;
  border-radius: 50px;
  border: 1px solid rgba(207, 101, 24, 0.2);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--text-cream);
  margin-bottom: 12px;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter {
  padding: 60px 0 100px;
}

.newsletter-card {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(207, 101, 24, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(232, 165, 48, 0.06) 0%, transparent 50%),
    var(--bg-card);
  border: 1px solid rgba(207, 101, 24, 0.12);
  border-radius: var(--radius);
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
}

.newsletter-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(207, 101, 24, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(232, 165, 48, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.newsletter-content {
  position: relative;
  z-index: 1;
}

.newsletter-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.newsletter-form {
  max-width: 480px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.form-input {
  flex: 1;
  padding: 16px 24px;
  background: rgba(255, 245, 230, 0.06);
  border: 1px solid rgba(122, 92, 53, 0.25);
  border-radius: 50px;
  color: var(--text-cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition);
}

.form-input::placeholder {
  color: var(--text-dim);
}

.form-input:focus {
  border-color: var(--primary);
  background: rgba(255, 245, 230, 0.08);
  box-shadow: 0 0 0 4px rgba(207, 101, 24, 0.15);
}

.btn-submit {
  white-space: nowrap;
  padding: 16px 28px;
  min-width: 160px;
}

.btn-submit .btn-text {
  transition: opacity 0.3s, transform 0.3s;
}

.btn-submit .btn-loader {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: var(--text-cream);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-submit .btn-check {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-submit.loading .btn-text {
  opacity: 0;
  transform: scale(0.8);
}

.btn-submit.loading .btn-loader {
  opacity: 1;
  animation: spin 0.8s linear infinite;
}

.btn-submit.success .btn-text {
  opacity: 0;
  transform: scale(0.8);
}

.btn-submit.success .btn-check {
  opacity: 1;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-error {
  display: none;
  font-size: 0.85rem;
  color: var(--error);
  margin-top: 8px;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
}

.newsletter-success {
  display: none;
  padding: 24px;
  animation: fadeInUp 0.6s ease-out;
}

.newsletter-success.show {
  display: block;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.newsletter-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-cream);
  margin-bottom: 8px;
}

.newsletter-success p {
  color: var(--text-muted);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid rgba(122, 92, 53, 0.15);
  padding: 48px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-cream), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 6px rgba(207, 101, 24, 0.3));
}

.footer-tagline {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 4px;
}

.footer-contact-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-cream);
  margin-bottom: 10px;
}

.footer-address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-address a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-address a:hover {
  color: var(--accent);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 245, 230, 0.06);
  border: 1px solid rgba(122, 92, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-link svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(207, 101, 24, 0.3);
}

.social-link:hover svg {
  color: var(--text-cream);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(122, 92, 53, 0.1);
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-made {
  margin-top: 6px;
  font-size: 0.8rem;
}


/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 900px) {
  .announce-card {
    padding: 48px 32px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(15, 10, 6, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
  }

  .form-group {
    flex-direction: column;
  }

  .btn-submit {
    width: 100%;
    justify-content: center;
  }

  .newsletter-card {
    padding: 48px 24px;
  }

  .announce-icons {
    gap: 32px;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

}

/* ============================================
   RESPONSIVE — SMALL
   ============================================ */
@media (max-width: 400px) {
  .navbar {
    padding: 12px 16px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }

  .announce-card {
    padding: 36px 20px;
  }
}
