/* Happy Bee - Local Raw Honey Styles */
/* Warm honey theme: gold/yellow/brown */

:root {
  --honey-gold: #D4A017;
  --honey-dark: #B8860B;
  --honey-light: #F4D03F;
  --honey-cream: #FFF8DC;
  --brown-dark: #5D4037;
  --brown-medium: #8D6E63;
  --brown-light: #D7CCC8;
  --white: #FFFFFF;
  --cream-bg: #FFFBF0;
  --text-dark: #3E2723;
  --text-light: #6D4C41;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--cream-bg);
}

/* Header */
header {
  background: linear-gradient(135deg, var(--honey-gold) 0%, var(--honey-dark) 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 50px;
  width: auto;
  border-radius: 8px;
}

.logo-text {
  color: var(--white);
}

.logo-text h1 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.logo-text span {
  font-size: 0.85rem;
  opacity: 0.95;
}

/* Language Toggle */
.lang-toggle {
  background: var(--white);
  color: var(--honey-dark);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid var(--white);
}

.lang-toggle:hover {
  background: transparent;
  color: var(--white);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(93, 64, 55, 0.7), rgba(93, 64, 55, 0.7)),
              url('images/market-booth.jpg') center/cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: transparent;
  color: var(--honey-gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 160, 23, 0.4);
}

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

.btn-secondary:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* Section Styles */
section {
  padding: 4rem 1rem;
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
  position: relative;
}

.section-title::after {
  content: '🐝';
  display: block;
  font-size: 2rem;
  margin-top: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* Products Section */
.products {
  background: var(--white);
}

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

.product-card {
  background: var(--cream-bg);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--honey-light);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 160, 23, 0.2);
  border-color: var(--honey-gold);
}

.product-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.product-card h3 {
  color: var(--brown-dark);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.product-card p {
  color: var(--text-light);
  font-size: 1rem;
}

/* Services Section */
.services {
  background: linear-gradient(135deg, var(--honey-cream) 0%, var(--cream-bg) 100%);
}

.service-highlight {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.service-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.service-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-content {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.service-content h3 {
  font-size: 2rem;
  color: var(--brown-dark);
  margin-bottom: 1rem;
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Reviews Section */
.reviews {
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-card {
  background: var(--cream-bg);
  border-radius: 15px;
  padding: 1.5rem;
  border-left: 4px solid var(--honey-gold);
  transition: all 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 5px 20px rgba(212, 160, 23, 0.15);
}

.stars {
  color: var(--honey-gold);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.review-text {
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.review-author {
  color: var(--brown-medium);
  font-weight: bold;
  font-size: 0.95rem;
}

/* FAQ Section */
.faq {
  background: linear-gradient(135deg, var(--honey-cream) 0%, var(--cream-bg) 100%);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 1.25rem;
  font-weight: bold;
  color: var(--brown-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--honey-cream);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--honey-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  padding: 0 1.25rem 1.25rem;
  max-height: 200px;
}

/* Map Section */
.map-section {
  background: var(--white);
  padding: 0;
}

.map-container {
  width: 100%;
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
  color: var(--white);
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact .btn-primary {
  background: var(--honey-gold);
  border-color: var(--honey-gold);
}

.contact .btn-primary:hover {
  background: transparent;
  color: var(--honey-gold);
}

.contact .btn-secondary {
  background: var(--white);
  color: var(--brown-dark);
  border-color: var(--white);
}

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

/* Footer */
footer {
  background: var(--brown-dark);
  color: var(--brown-light);
  padding: 2rem 1rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--honey-gold);
  margin-bottom: 1rem;
}

.footer-info {
  margin-bottom: 1rem;
}

.footer-info p {
  margin: 0.25rem 0;
}

.footer-info a {
  color: var(--honey-light);
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-social {
  margin-top: 1rem;
}

.footer-social a {
  color: var(--honey-gold);
  font-size: 1.2rem;
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--honey-light);
}

.footer-copy {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--brown-medium);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .logo img {
    height: 40px;
  }
  
  .logo-text h1 {
    font-size: 1.2rem;
  }
  
  .hero {
    min-height: 400px;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-highlight {
    flex-direction: column;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .products-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 1.75rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .contact-buttons {
    flex-direction: column;
  }
  
  .contact-buttons .btn {
    width: 100%;
  }
}

/* Accessibility */
.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;
}

/* Focus styles */
a:focus,
button:focus {
  outline: 2px solid var(--honey-gold);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  .hero-buttons,
  .contact-buttons,
  .map-container,
  footer {
    display: none;
  }
  
  .hero {
    min-height: auto;
    background: none;
    color: var(--text-dark);
  }
  
  section {
    padding: 1rem 0;
  }
}
