:root {
  --honey-gold: #e8b74a;
  --cream: #fff7e6;
  --warm-brown: #a97a46;
  --offwhite: #faf6f1;
  --text-dark: #3a2a1a;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--offwhite);
  color: var(--text-dark);
}

/* Sticky Header */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(250, 246, 241, 0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.navbar .logo {
  font-weight: bold;
  font-size: 1.3rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

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

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(232,183,74,0.35), rgba(250,246,241,0.7)),
              url('https://images.unsplash.com/photo-1626285094816-39f688104ce0?auto=format&fit=crop&q=80&w=1600')
              center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero-logo {
  max-width: 350px;
  width: 70%;
  -webkit-filter: drop-shadow(3px 3px 3px #222);
  filter: drop-shadow(3px 3px 3px #222);

    position: relative;
  z-index: 2;
  will-change: transform, opacity;
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.hero h1 {
  font-size: 1.8rem;
  max-width: 600px;
  margin: 1.5rem auto;
  color: #fff;
  -webkit-filter: drop-shadow(3px 3px 3px #222);
  filter: drop-shadow(3px 3px 3px #222);
}

.scroll-down {
  font-size: 2rem;
  text-decoration: none;
  color: white;
  margin-top: 1rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* About Section */
.about {
  padding: 4rem 2rem;
  background-color: var(--cream);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.about-photo {
  width: 50%;
  border-radius: 1rem;
}

.about-text {
  flex: 1;
  font-size: 1.2em;
}

/* Products & Hive Tour Sections */
.products {
  padding: 4rem 2rem;
  background-color: var(--offwhite);
}

.products-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.products-photo {
  width: 32%;
  border-radius: 1rem;
}

.products-text {
text-align:center;
}

.products-button {
text-align:center;
}

.about h2, .products h2, .hive-tour h2, .contact h2 {
  color: var(--warm-brown);
}

/* Contact Section */
.contact {
  padding: 4rem 2rem;
  background-color: var(--cream);
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

input, textarea {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
}

button {
  padding: 0.75rem;
  background-color: var(--honey-gold);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.4em;
  outline: 1px solid black;
}

button:hover {
  background-color: var(--warm-brown);
}

/* Footer */

.footer-logo {
  width: 100px;
  margin-bottom: 1rem;
}
footer {
  background-color: #fff8ee;
  text-align: center;
  padding: 2.5rem 1rem;
  color: #4b3621;
  font-family: 'Georgia', serif;
}

footer h3 {
  font-weight: normal;
  color: #6b4b2a;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

footer .social-links {
  margin-bottom: 1rem;
}

footer .social-links a {
  color: #e0a83f; /* honey gold */
  margin: 0 1rem;
  font-size: 1.8rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

footer .social-links a:hover {
  color: #c68b2c; /* darker gold */
  transform: scale(1.05);
}

footer p {
  font-size: 0.9rem;
  color: #6b4b2a;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--offwhite);
    flex-direction: column;
    align-items: center;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .about-content, .products-content {
    flex-direction: column;
  }

  .about-photo, .products-photo {
    width: 100%;
  }
}
/* Sticky Header Scroll Effect */
.sticky-header.scrolled {
  background-color: rgba(232, 183, 74, 0.92); /* warm honey-gold tint */
  transition: background-color 0.3s ease;
}
