/* --- Variables --- */
:root {
  --color-honey-gold: #E6B325;
  --color-warm-brown: #5C4033;
  --color-soft-beige: #FFF8E7;
  --color-deep-amber: #A37E1C;
  --color-dark-text: #333333;
}

/* --- Base & Typography --- */
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: var(--color-soft-beige);
  color: var(--color-dark-text);
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

h1, h2, h3 {
  color: var(--color-warm-brown);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--color-honey-gold);
}

/* --- Animations --- */
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes expand {
  from { width: 0; }
  to { width: 100px; }
}

/* Element reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* --- Utility Classes --- */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: inline-block;
}

.btn-primary {
  background-color: var(--color-honey-gold);
  color: white;
  border: 2px solid var(--color-honey-gold);
}

.btn-primary:hover {
  background-color: var(--color-deep-amber);
  border-color: var(--color-deep-amber);
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

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

.btn-secondary:hover {
  background-color: var(--color-warm-brown);
  color: var(--color-soft-beige);
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}


/* --- Animated Bees Background --- */
.bee {
    position: fixed;
    font-size: 2rem;
    pointer-events: none;
    z-index: -1;
    opacity: 0.2;
    animation: moveBee 15s linear infinite;
    transform: translate(-100vw, 100vh);
}

.bee-1 {
    top: 10%;
    left: 10%;
    animation-duration: 15s;
    animation-delay: 0s;
}

.bee-2 {
    top: 50%;
    left: 80%;
    animation-duration: 20s;
    animation-delay: 5s;
}

.bee-3 {
    top: 80%;
    left: 30%;
    animation-duration: 18s;
    animation-delay: 10s;
}

@keyframes moveBee {
    0% {
        transform: translate(-10vw, 90vh) rotate(0deg);
    }
    50% {
        transform: translate(90vw, 10vh) rotate(180deg);
    }
    100% {
        transform: translate(-10vw, 90vh) rotate(360deg);
    }
}


/* --- Navigation Bar (Sticky) --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-deep-amber);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: var(--color-warm-brown);
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

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

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-honey-gold);
  transition: width 0.3s ease-out;
}

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

/* Mobile Menu Button (Honeycomb) */
.menu-btn {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1100;
}

.dot {
  width: 100%;
  height: 3px;
  background-color: var(--color-warm-brown);
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* --- Scrolling Banner --- */
.banner-scroll {
  background-color: var(--color-deep-amber);
  color: white;
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: inset 0 -3px 5px rgba(0, 0, 0, 0.05);
}

.banner-content {
  display: inline-block;
  padding-left: 100%;
  animation: scrollBanner 25s linear infinite;
}

.banner-content span {
  margin-right: 5rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@keyframes scrollBanner {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* --- Hero Section (Homepage) --- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  min-height: 50vh;
  background: radial-gradient(circle at top left, #FFFBEB, #FFFAE0);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: fade-in-up 1s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-deep-amber);
  margin-bottom: 2rem;
  font-weight: 300;
  animation: fade-in 1s ease-out 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  animation: fade-in-up 1s ease-out 0.5s both;
}

/* --- Products Section --- */
.products-section {
  padding: 4rem 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--color-honey-gold);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-warm-brown);
  opacity: 0.7;
  margin-bottom: 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-emoji {
  font-size: 4rem;
  line-height: 1;
}

.product-name {
  font-size: 1.4rem;
  margin: 0.5rem 0;
}

.product-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-deep-amber);
  margin-bottom: 0.5rem;
}

.product-description {
  color: var(--color-dark-text);
  font-size: 0.9rem;
  opacity: 0.8;
  min-height: 3em;
}

.product-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}


/* --- Footer --- */
.footer {
  text-align: center;
  padding: 1.5rem 2rem;
  background-color: var(--color-warm-brown);
  color: var(--color-soft-beige);
  font-size: 0.9rem;
}

.footer a {
  color: var(--color-honey-gold);
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}


/* --- Responsive Styles --- */
@media (max-width: 768px) {
  /* Mobile Navigation Fix */
  .nav-container {
      /* Increased mobile padding for better edge spacing */
      padding: 1rem 1.25rem; 
  }

  .logo {
      /* FIX: Reduced logo size further for better fit with menu button */
      font-size: 1.2rem; 
      white-space: nowrap; 
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    gap: 0;
  }

  .nav-links li {
    text-align: center;
    padding: 0.75rem 0;
  }

  .nav-links li a::after {
    bottom: -3px;
  }

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

  .menu-btn {
    display: flex;
  }

  /* Hero Section */
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  /* Products Section */
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-buttons {
    flex-direction: column;
    width: 100%;
  }

  .product-buttons .btn {
      width: 100%;
  }
}