/* Saba Hive - Yemeni Honey Website Styles */
/* LUXE GOLD & BLACK THEME - WITH MORE GOLD ACCENTS */

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap');

/* CSS Variables */
:root {
  /* Colors - Sidr Honey Gold on Black with more warmth */
  --gold: #B8860B;
  --gold-light: #C9943D;
  --gold-dark: #8B6914;
  --gold-muted: #9A7B32;
  --gold-pale: #F5E6C8;
  --gold-cream: #FBF7F0;
  --black: #0A0A0A;
  --black-light: #121212;
  --black-medium: #1A1A1A;
  --black-soft: #242424;
  --gray-dark: #2E2E2E;
  --gray: #888888;
  --gray-light: #B0B0B0;
  --white: #FFFFFF;
  --cream: #FFF9F0;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  background-color: var(--black);
  overflow-x: hidden;
}

/* Selection */
::selection {
  background-color: var(--gold);
  color: var(--black);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  font-size: 1.1rem;
  max-width: 65ch;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* Container */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

/* =====================
   NAVIGATION
   ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: var(--transition-medium);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-sm) 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--gold-dark);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.logo-icon {
  width: 65px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
}


.nav-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  position: relative;
  padding: var(--space-xs) 0;
}

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

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.mobile-menu-btn span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin: 6px 0;
  transition: var(--transition-fast);
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    transition: var(--transition-medium);
  }

  .nav-links.active {
    right: 0;
  }

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

/* =====================
   HERO SECTION
   ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, var(--black-medium) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(184, 134, 11, 0.15) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--black), transparent);
  pointer-events: none;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-30px, 30px) rotate(3deg);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-2xl) 0;
}

.hero-text {
  animation: fadeInUp 1s var(--transition-slow) forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.hero-title {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero-title span {
  color: var(--gold);
  font-style: italic;
}

.hero-description {
  color: var(--gray-light);
  margin-bottom: var(--space-lg);
  font-size: 1.2rem;
}

.hero-visual {
  position: relative;
  animation: fadeIn 1.2s 0.3s var(--transition-slow) forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.honey-jar {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  margin: 0 auto;
  background: radial-gradient(circle at 30% 30%, #C9943D 0%, #B8860B 40%, #8B6914 70%, #5C4A1F 100%);
  border-radius: 20% 20% 40% 40%;
  position: relative;
  box-shadow:
    0 30px 80px rgba(184, 134, 11, 0.4),
    0 0 120px rgba(184, 134, 11, 0.2),
    inset 0 -20px 40px rgba(92, 74, 31, 0.5),
    inset 0 20px 40px rgba(255, 255, 255, 0.15);
  animation: gentleFloat 6s ease-in-out infinite;
}

.honey-jar::before {
  content: '';
  position: absolute;
  top: -15%;
  left: 30%;
  right: 30%;
  height: 20%;
  background: linear-gradient(180deg, var(--gold-dark) 0%, var(--gold) 100%);
  border-radius: 5px 5px 0 0;
}

.honey-jar::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 15%;
  width: 25%;
  height: 20%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  filter: blur(10px);
}

@keyframes gentleFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Decorative honeycomb */
.honeycomb-bg {
  position: absolute;
  width: 300px;
  height: 300px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath fill='%23B8860B' fill-opacity='0.08' d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66ZM28 100L0 84L0 50L28 34L56 50L56 84L28 100Z'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.honeycomb-bg.top-right {
  top: 10%;
  right: 5%;
}

.honeycomb-bg.bottom-left {
  bottom: 10%;
  left: 5%;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--space-2xl) + 60px);
  }

  .hero-visual {
    order: -1;
  }

  .honey-jar {
    max-width: 300px;
  }
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--black);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(184, 134, 11, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}

/* =====================
   SECTIONS
   ===================== */
section {
  padding: var(--space-2xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.section-description {
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto;
}

/* =====================
   FEATURES SECTION
   ===================== */
.features {
  background: var(--black-light);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  text-align: center;
  padding: var(--space-lg);
  border-radius: 12px;
  transition: var(--transition-medium);
  background: var(--black-medium);
  border: 1px solid var(--gray-dark);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(184, 134, 11, 0.2);
  background: var(--black-soft);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.feature-icon-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.feature-card h3 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.feature-card p {
  color: var(--gray-light);
  font-size: 1rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   BUY SECTION
   ===================== */
.buy-section {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.buy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath fill='%23000000' fill-opacity='0.1' d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66ZM28 100L0 84L0 50L28 34L56 50L56 84L28 100Z'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.buy-section .section-label {
  color: var(--black);
  opacity: 0.7;
}

.buy-section .section-title {
  color: var(--black);
}

.buy-section .section-description {
  color: rgba(0, 0, 0, 0.7);
}

.buy-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.buy-card {
  background: var(--white);
  border-radius: 12px;
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition-medium);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.buy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.buy-card-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

#etsyLogo {
  margin-bottom: 6rem !important;
  margin-top: 4rem;
}

.buy-card h3 {
  color: var(--black);
  margin-bottom: var(--space-sm);
}

.buy-card p {
  color: var(--gray);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

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

@media (max-width: 600px) {
  .buy-cards {
    grid-template-columns: 1fr;
  }
}

/* =====================
   ABOUT PAGE
   ===================== */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, var(--black-medium) 100%);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(184, 134, 11, 0.12) 0%, transparent 70%);
}

.page-hero-content {
  max-width: 800px;
}

.page-hero .section-label {
  margin-bottom: var(--space-sm);
}

.page-hero h1 {
  margin-bottom: var(--space-md);
  color: var(--white);
}

.page-hero p {
  font-size: 1.25rem;
  color: var(--gray-light);
}

/* Story Section - NOW CREAM/WHITE */
.story-section {
  background: var(--cream);
  color: var(--black);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.story-content h2 {
  margin-bottom: var(--space-md);
  color: var(--black);
}

.story-content p {
  margin-bottom: var(--space-md);
  color: var(--gray);
}

.story-visual {
  position: relative;
}

.story-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gold-cream) 0%, var(--gold-pale) 100%);
  border: 2px solid var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.story-image::before {
  content: '';
  position: absolute;
  inset: 0;

}

.story-image-image {
  width: 100%;
  height: 100%;
}

.accent-box {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  padding: var(--space-md) var(--space-lg);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(184, 134, 11, 0.4);
}

.accent-box span {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}

.accent-box small {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-visual {
    order: -1;
  }
}

/* Values Section */
.values-section {
  background: var(--black);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.value-card {
  background: var(--black-medium);
  padding: var(--space-lg);
  border-radius: 12px;
  text-align: center;
  transition: var(--transition-medium);
  border: 1px solid var(--gray-dark);
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(184, 134, 11, 0.15);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
  color: var(--gold);
}

.value-card p {
  font-size: 0.95rem;
  color: var(--gray-light);
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   HONEY TYPES PAGE
   ===================== */
.honey-types-section {
  background: var(--black-light);
}

.honey-grid {
  display: grid;
  gap: var(--space-xl);
}

.honey-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-lg);
  background: var(--black-medium);
  border: 1px solid var(--gray-dark);
  border-radius: 12px;
  transition: var(--transition-medium);
}

.honey-card:nth-child(even) {
  direction: rtl;
}

.honey-card:nth-child(even)>* {
  direction: ltr;
}

.honey-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(184, 134, 11, 0.15);
}

.honey-card-visual {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.honey-card-visual.sidr {
  background: linear-gradient(135deg, #C9943D 0%, #B8860B 50%, #8B6914 100%);
}

.honey-card-visual.sumar {
  background: linear-gradient(135deg, #A67B3D 0%, #8B6914 50%, #6B5210 100%);
}

.honey-card-visual.marai {
  background: linear-gradient(135deg, #5C4A1F 0%, #3D3010 50%, #2A2008 100%);
}

.honey-card-visual.wildflower {
  background: linear-gradient(135deg, #B8860B 0%, #9A6B20 50%, #7A4A15 100%);
}

.honey-card-content h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-xs);
  color: var(--white);
}

.honey-origin {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.honey-card-content>p {
  color: var(--gray-light);
  margin-bottom: var(--space-md);
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-xs);
  font-size: 0.95rem;
  color: var(--gray-light);
}

.benefits-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
}

@media (max-width: 768px) {

  .honey-card,
  .honey-card:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* Benefits Overview - NOW GOLD GRADIENT */
.benefits-overview {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.benefits-overview::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath fill='%23000000' fill-opacity='0.08' d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66ZM28 100L0 84L0 50L28 34L56 50L56 84L28 100Z'/%3E%3C/svg%3E");
}

.benefits-overview .section-label {
  color: var(--black);
  opacity: 0.7;
}

.benefits-overview .section-title {
  color: var(--black);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.benefit-item {
  background: var(--white);
  border: none;
  border-radius: 8px;
  padding: var(--space-md);
  text-align: center;
  transition: var(--transition-medium);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.benefit-item span {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-xs);
}

.benefit-item h4 {
  font-size: 1rem;
  color: var(--black);
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 2px solid var(--gold);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-brand .logo-icon {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: var(--space-xs);
}

.footer-column a {
  color: var(--gray);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--gray-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  color: var(--gray);
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 500px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: 1;
  }

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

/* =====================
   ANIMATIONS
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

/* Smooth scroll anchor offset */
:target::before {
  content: '';
  display: block;
  height: 100px;
  margin-top: -100px;
  visibility: hidden;
}

/* Gold glow effect for special elements */
.gold-glow {
  box-shadow: 0 0 30px rgba(184, 134, 11, 0.4);
}