/* All reviews page: container for testimonials */


.all-testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  min-height: 0;
  width: auto;
  margin-top: 2em;
  background: var(--bee-white, #e4c214);
  padding: 2em 1em;
  z-index: 1;
}


.hero-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2.5rem;
  padding: 0;
}
.hero-text {
  flex: 1 1 340px;
  min-width: 260px;
  text-align: left;
  padding: 0 0.5em 0 0;
}
.hero-text h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--bee-brown);
  margin-bottom: 0.5em;
}
.hero-text .subtitle {
  font-size: 1.18rem;
  color: #b8860b;
  margin-bottom: 1.5em;
}
.cta-btn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em 1.5em;
  margin-bottom: 1.5em;
}
.cta-btn {
  background: var(--bee-brown);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-family: var(--font-main);
  cursor: pointer;
  box-shadow: 0 2px 8px var(--bee-shadow);
  transition: background 0.2s, transform 0.18s;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.cta-btn:hover {
  background: var(--bee-orange);
  transform: scale(1.07) rotate(-1deg);
}
.hero-img {
  flex: 1 1 260px;
  min-width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
}
.hero-img img {
  width: 100%;
  max-width: 260px;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(230,180,0,0.13);
  margin-bottom: 0.7em;
}
.hero-img .mini-imgs {
  display: flex;
  gap: 0.7em;
  justify-content: center;
}
.hero-img .mini-imgs img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 1px 4px 0 rgba(230,180,0,0.10);
}


/* Feature Cards Section */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.2rem;
  max-width: 900px;
  margin: 2.5rem auto 2.2rem auto;
}
.feature-card {
  background: #fffde4;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(230,180,0,0.09);
  border: 2.5px solid #ffe066;
  padding: 2.1rem 2.1rem 2.1rem 2.1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.1em;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 24px var(--bee-shadow);
  transform: translateY(-8px) scale(1.03);
}
.feature-icon {
  font-size: 2.5em;
  margin-bottom: 0.2em;
}
.feature-card h2 {
  font-family: var(--font-heading);
  color: #b28704;
  font-size: 1.35em;
  margin: 0.5em 0 0.3em 0;
}
.feature-card p {
  color: #6d4c1b;
  font-size: 1.08em;
  margin-bottom: 1.1em;
}

/* Special Section Improvements */
.homepage-special {
  margin: 2.5em auto 2em auto;
  max-width: 800px;
  text-align: center;
}
.homepage-special h2 {
  font-family: var(--font-heading);
  color: #b28704;
  font-size: 2rem;
  margin-bottom: 0.7em;
}
.special-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: center;
  align-items: stretch;
}
.special-card {
  flex: 1 1 180px;
  min-width: 180px;
  background: #fffde4;
  border-radius: 16px;
  padding: 1.2em 1em;
  box-shadow: 0 2px 8px rgba(230,180,0,0.10);
  margin-bottom: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
}
.special-card span {
  font-size: 2em;
}
.special-card h3 {
  margin: 0.5em 0 0.2em 0;
  font-size: 1.15em;
  color: #b28704;
  font-family: var(--font-heading);
}
.special-card p {
  margin: 0;
  font-size: 1em;
}

/* Blog Section Modernization */
.blog-section {
  background: var(--bee-white);
  padding: 2rem 1.5rem;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(230,180,0,0.10), 0 1.5px 8px 0 rgba(180,180,0,0.07);
}
.blog-section h2 {
  font-family: var(--font-heading);
  color: var(--bee-brown);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1em;
}
.blog-posts {
  display: grid;
  gap: 1.5em;
}
.blog-post {
  background: #fffefc;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(230,180,0,0.08);
  padding: 1.2em 1.5em;
}
.blog-post h3 {
  margin-bottom: 0.3em;
  color: #b28704;
  font-family: var(--font-heading);
}
.blog-more {
  text-align: center;
  margin-top: 1.5em;
}
/* --- FIX: Ensure nav menu never disappears when language dropdown is open --- */
.navbar {
  position: relative;
  z-index: 10;
}
.nav-links {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 20;
  transition: none !important;
}
.lang-switcher.dropdown {
  position: relative;
  z-index: 1000;
}
.lang-switcher .dropdown-content {
  z-index: 2000 !important;
}
@media (max-width: 700px) {
  .navbar {
    position: relative;
    z-index: 10;
  }
  .nav-links {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 20;
    transition: none !important;
  }
}
/* --- END FIX --- */

/* --- General Styles --- */
body {
  font-family: 'Quicksand', Arial, sans-serif;
  background: #fffbe7;
  color: #222217;
  margin: 0;
  padding: 0;
  font-size: 1.13rem;
  letter-spacing: 0.01em;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
  background: #ffe066;
  color: #222217;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 1.1em;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  outline: 2px solid #222217;
}

/* --- CLEANED NAVBAR & TOPBAR STYLES --- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #fffbe7;
  padding: 0.4rem 0.4rem 0.4rem 0.7rem;
  border-bottom: 3.5px solid #e6b400;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 2px 8px rgba(230,180,0,0.06);
  max-width: 820px;
  margin: 0 0 0 0.5rem;
  overflow: visible;
  gap: 0.7rem;
}
.logo {
  font-family: 'Pacifico', cursive;
  font-size: 1.3rem;
  color: #e6b400;
  letter-spacing: 0.04em;
  border-radius: 8px;
  padding: 0.1em 0.3em;
  margin-right: 1.2rem; 
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  font-size: 0.89em;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-start;
}
.nav-links a {
  text-decoration: none;
  color: #222217;
  font-weight: 600;
  padding: 0.32rem 0.2rem;
  border-radius: 8px;
  font-size: 0.97em;
  transition: background 0.2s, color 0.2s;
  background: none;
}
/* Unified nav link highlight */
.nav-links a.active, .nav-links a:focus, .nav-links a:hover {
  background: #ffe066;
  color: #b28704 !important;
  box-shadow: 0 2px 6px rgba(230,180,0,0.10);
}
.lang-switcher {
  display: flex;
  gap: 0.2rem;
}

/* Remove duplicate nav-links a rules below (if any) */
.lang-switcher #langDropdownBtn {
  background: #fffbe7;
  border: 3px solid #e6b400;
  color: #b28704;
  font-weight: bold;
  font-size: 0.98em;
  border-radius: 10px;
  padding: 0.22rem 1.2rem 0.22rem 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3em;
  transition: background 0.2s, color 0.2s, border 0.2s;
  min-width: 62px;
  margin-right: 1em;
}

/* Remove duplicate nav-links a and hover/active rules further down */
.lang-switcher #langDropdownBtn:focus, .lang-switcher #langDropdownBtn:hover {
  background: #ffe066;
  color: #222217;
  border-color: #b28704;
}
.lang-switcher .arrow {
  display: inline-block;
  border-left: 2.5px solid #e6b400;
  padding-left: 0.5em;
  margin-left: 0.5em;
  transition: transform 0.2s;
}
.lang-switcher .dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  left: auto;
  top: 100%;
  background: #fffbe7; /* Ensure dropdown background is always opaque */
  border: 3px solid #e6b400;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(230,180,0,0.13);
  z-index: 999; /* Ensure dropdown is above navbar and nav links */
  min-width: 150px;
  padding: 0.3em 0.2em;
  animation: dropdown-fade 0.18s;
  overflow: visible; /* Prevent dropdown from clipping its content */
  pointer-events: auto;
  user-select: auto;
}

/* Prevent accidental click-through on dropdown button */
.lang-switcher.dropdown > button {
  pointer-events: auto;
  z-index: 1001;
}
.lang-switcher button {
  background: #fffbe7;
  border: 2px solid #e6b400;
  color: #b28704;
  font-weight: bold;
  padding: 0.28rem 0.7rem;
  border-radius: 8px;
  font-size: 0.98em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.lang-switcher button:focus, .lang-switcher button:hover {
  background: #ffe066;
  color: #222217;
  border-color: #b28704;
}

/* Language Dropdown Styles */
.lang-switcher.dropdown {
  position: relative;
}
@keyframes dropdown-fade {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.lang-switcher .dropdown-content button {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: #b28704;
  font-weight: bold;
  font-size: 1em;
  padding: 0.5em 1em;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lang-switcher .dropdown-content button:hover, .lang-switcher .dropdown-content button:focus {
  background: #ffe066;
  color: #222217;
}

main {
  max-width: 900px;
  margin: 2.5rem auto;
  padding: 2.2rem 1.5rem 2.5rem 1.5rem;
  border-radius: 22px;
  background: #fffef8;
  box-shadow: 0 2px 16px rgba(230,180,0,0.04);
}

/* Section/Container Styling for More Rounded, Highlighted Sections */
section, .blog-section, .blog-posts, .blog-post, .guestbook-section, .gallery-section, .products-section, .about-section, .contact-section {
  border-radius: 22px !important;
  box-shadow: 0 4px 24px 0 rgba(230,180,0,0.10), 0 1.5px 8px 0 rgba(180,180,0,0.07);
  border: 2.5px solid #ffe066;
  background: #fffefc;
  margin-bottom: 2.2rem;
}
.blog-post {
  border-radius: 18px !important;
  border: 2.5px solid #e6b400;
  background: #fffde4;
  box-shadow: 0 2px 12px rgba(230,180,0,0.13);
}
.blog-section {
  border-radius: 22px !important;
  border: 2.5px solid #ffe066;
  background: #fffefc;
  box-shadow: 0 4px 24px 0 rgba(230,180,0,0.10), 0 1.5px 8px 0 rgba(180,180,0,0.07);
}
.blog-section h2 {
  font-size: 2.3rem;
  color: #b28704;
  margin-bottom: 2.2rem;
  letter-spacing: 0.02em;
}
.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.blog-post {
  background: #fffde4;
  border-left: 8px solid #e6b400;
  padding: 2.1rem 2.1rem 2.1rem 2.7rem;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(230,180,0,0.09);
  margin-bottom: 0.5rem;
}
.blog-post h3 {
  margin-top: 0;
  color: #b28704;
  font-size: 1.35em;
  margin-bottom: 0.7em;
}
.blog-post time {
  display: block;
  font-size: 1.05rem;
  color: #7a6a1a;
  margin-bottom: 0.7rem;
}
footer {
  background: #fffbe7;
  border-top: 2.5px solid #e6b400;
  text-align: center;
  padding: 2.2rem 0 1.3rem 0;
  font-size: 1.08rem;
  color: #b28704;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -2px 12px rgba(230,180,0,0.06);
}
footer a {
  color: #b28704;
  text-decoration: underline;
  border-radius: 8px;
  padding: 0.1em 0.4em;
}
.bee-heart {
  font-size: 1.3em;
}
.social-links {
  margin-top: 0.7rem;
}
.social-links a {
  display: inline-block;
  margin: 0 0.7rem;
  vertical-align: middle;
  border-radius: 50%;
  background: #fffde4;
  box-shadow: 0 1px 4px rgba(230,180,0,0.10);
  padding: 0.2em;
}

/* --- Responsive Design --- */
@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 0.5rem 0.7rem 0.5rem;
    border-radius: 0 0 10px 10px;
  }
  .nav-links {
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
    margin-top: 0.5rem;
  }
  main {
    padding: 1.1rem 0.5rem 1.5rem 0.5rem;
    border-radius: 10px;
  }
  .blog-post {
    padding: 1.1rem 1.1rem 1.1rem 1.3rem;
    border-radius: 10px !important;
  }
  section, .blog-section, .blog-posts, .guestbook-section, .gallery-section, .products-section, .about-section, .contact-section {
    border-radius: 10px !important;
  }
  footer {
    border-radius: 10px 10px 0 0;
    padding: 1.2rem 0 0.7rem 0;
  }
}

/* --- Dark Mode --- */
@media (prefers-color-scheme: dark) {
  body {
    background: #23211a;
    color: #f7e9b0;
  }
  .navbar, footer {
    background: #23211a;
    border-color: #ffe066;
  }
  .logo, .nav-links a, .nav-links a.active, .nav-links a:focus, .nav-links a:hover, .lang-switcher button, .lang-switcher button:focus, .lang-switcher button:hover, .blog-section h2, .blog-post h3, .blog-post, .bee-heart, .social-links a, footer a {
    color: #ffe066 !important;
    background: none !important;
  }
  .blog-post {
    background: #2d2b22;
    border-color: #ffe066;
  }
  .social-links a {
    background: #23211a;
    box-shadow: 0 1px 4px rgba(255,224,102,0.10);
  }
}
/* Animations */
.fade-in {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
section, .product-card, .testimonial, .blog-post {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.8s, transform 0.8s;
}

/* --- HOMEPAGE HERO SECTION IMPROVEMENTS --- */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  background: linear-gradient(120deg, var(--honey-yellow) 70%, var(--bee-white) 100%);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  max-height: 100vh;
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(230,180,0,0.10), 0 1.5px 8px 0 rgba(180,180,0,0.07);
  border: 2.5px solid #ffe066;
  margin: 2.5rem auto 2.2rem auto;
  max-width: 900px;
}
.hero-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2.5rem;
  padding: 0;
}
.hero-text {
  flex: 1 1 340px;
  min-width: 260px;
  text-align: left;
  padding: 0 0.5em 0 0;
}
.hero-text h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--bee-brown);
  margin-bottom: 0.5em;
}
.hero-text .subtitle {
  font-size: 1.18rem;
  color: #b8860b;
  margin-bottom: 1.5em;
}
.cta-btn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em 1.5em;
  margin-bottom: 1.5em;
}
.cta-btn {
  background: var(--bee-brown);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-family: var(--font-main);
  cursor: pointer;
  box-shadow: 0 2px 8px var(--bee-shadow);
  transition: background 0.2s, transform 0.18s;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.cta-btn:hover {
  background: var(--bee-orange);
  transform: scale(1.07) rotate(-1deg);
}
.hero-img {
  flex: 1 1 260px;
  min-width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
}
.hero-img img {
  width: 100%;
  max-width: 260px;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(230,180,0,0.13);
  margin-bottom: 0.7em;
}
.hero-img .mini-imgs {
  display: flex;
  gap: 0.7em;
  justify-content: center;
}
.hero-img .mini-imgs img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 1px 4px 0 rgba(230,180,0,0.10);
}

:root {
  --honey-yellow: #FFD54F;
  --bee-brown: #8D6E63;
  --bee-black: #3E2723;
  --bee-white: #FFFDE7;
  --bee-orange: #FFB300;
  --bee-shadow: rgba(141, 110, 99, 0.15);
  --font-main: 'Quicksand', Arial, sans-serif;
  --font-heading: 'Baloo 2', Arial, sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--bee-white);
  color: var(--bee-black);
  min-height: 100vh;
}

header {
  background: linear-gradient(90deg, var(--honey-yellow) 60%, var(--bee-orange) 100%);
  box-shadow: 0 2px 8px var(--bee-shadow);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
}
.logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--bee-brown);
  letter-spacing: 2px;
  transition: transform 0.2s, text-shadow 0.2s;
}
.logo:hover {
  transform: scale(1.08) rotate(-2deg);
  text-shadow: 0 2px 12px var(--bee-shadow);
}

.logo-img:hover {
  transform: scale(1.08) rotate(-2deg);
  text-shadow: 0 2px 12px var(--bee-shadow);
}

.logo-img {
  transition: transform 0.2s, text-shadow 0.2s;
  width: 350px;
  height: 200px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--bee-black);
  font-weight: 700;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--bee-brown);
}
.lang-switcher button {
  background: var(--bee-brown);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  margin-left: 0.3rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.lang-switcher button:hover {
  background: var(--bee-orange);
}

/* Language Dropdown Styles */
.lang-switcher.dropdown {
  position: relative;
}
.lang-switcher #langDropdownBtn {
  background: #fffbe7;
  border: 2px solid #e6b400;
  color: #b28704;
  font-weight: bold;
  font-size: 1em;
  border-radius: 8px;
  padding: 0.28rem 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3em;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.lang-switcher #langDropdownBtn:focus, .lang-switcher #langDropdownBtn:hover {
  background: #ffe066;
  color: #222217;
  border-color: #b28704;
}
.lang-switcher .arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.lang-switcher .dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #fffbe7;
  border: 2px solid #e6b400;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(230,180,0,0.13);
  z-index: 100;
  min-width: 90px;
  padding: 0.3em 0.2em;
  animation: dropdown-fade 0.18s;
}
@keyframes dropdown-fade {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.lang-switcher .dropdown-content button {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: #b28704;
  font-weight: bold;
  font-size: 1em;
  padding: 0.5em 1em;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lang-switcher .dropdown-content button:hover, .lang-switcher .dropdown-content button:focus {
  background: #ffe066;
  color: #222217;
}

.hero-section {
  display: flex;
  justify-content: center;   /* instead of space-between */
  align-items: center;       /* vertical centring */
  flex-wrap: wrap;
  background: linear-gradient(120deg, var(--honey-yellow) 70%, var(--bee-white) 100%);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  min-height: 60vh;
}

.hero-content {
  flex: 1 1 350px;
  max-width: 500px;
    text-align: center;
      display: flex;
  justify-content: center; /* horizontal */
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--bee-brown);
  margin-bottom: 0.5rem;
}
.subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--bee-black);
}
.cta-btn {
  background: var(--bee-brown);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-family: var(--font-main);
  cursor: pointer;
  box-shadow: 0 2px 8px var(--bee-shadow);
  transition: background 0.2s;
  text-decoration: none;
}
.cta-btn:hover {
  background: var(--bee-orange);
}
.hero-img {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img img {
  max-width: 400px;
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 4px 16px var(--bee-shadow);
}

.hero-img img[alt="Honeycombs"] {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    left: 100px;
    top: -300px;
}

.hero-img img[alt="Bee on flower1"] {
    position: relative;
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    left: -200px;
    top: -50px;
}

.hero-img img[alt="Bees and honeycombs"] {
    position: relative;
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    left: 20px;
    top: -20px;
}

.hero-img img[alt="Bee on flower"] {
    position: relative;
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    left: 20px;
    top: -20px;
}

.hero-img img[alt="Honeycomb"] {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    left: 10px;
    top: -20px;
}

.about-section {
  background: #fff;
  padding: 2rem 1.5rem;
}
.about-section h2 {
  font-family: var(--font-heading);
  color: var(--bee-brown);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.about-text {
  flex: 1 1 300px;
  font-size: 1.1rem;
}
.about-imgs {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-imgs img {
  width: 180px;
  border-radius: 1rem;
  box-shadow: 0 2px 8px var(--bee-shadow);
}

.products-section {
  background: var(--bee-white);
  padding: 2rem 1.5rem;
}
.products-section h2 {
  font-family: var(--font-heading);
  color: var(--bee-brown);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.product-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px var(--bee-shadow);
  padding: 1.2rem;
  width: 220px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
  border: 2px solid transparent;
}
.product-card:hover {
  transform: translateY(-10px) scale(1.06) rotate(-1deg);
  box-shadow: 0 8px 24px var(--bee-shadow);
  border: 2px solid var(--honey-yellow);
}
.product-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.7rem;
  border: 3px solid var(--honey-yellow);
}
.product-card h3 {
  color: var(--bee-brown);
  font-family: var(--font-heading);
  margin: 0.5rem 0 0.3rem 0;
}
.product-card .price {
  color: var(--bee-orange);
  font-weight: bold;
  margin: 0.5rem 0;
}
.order-btn {
  background: var(--bee-brown);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px var(--bee-shadow);
}
.order-btn:hover {
  background: var(--bee-orange);
  transform: scale(1.08) rotate(1deg);
}

.gallery-section {
  background: #fff;
  padding: 2rem 1.5rem;
}
.gallery-section h2 {
  font-family: var(--font-heading);
  color: var(--bee-brown);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.gallery-grid img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 2px 8px var(--bee-shadow);
  object-fit: cover;
  height: 180px;
}

.education-section {
  background: var(--bee-white);
  padding: 2rem 1.5rem;
}
.education-section h2 {
  font-family: var(--font-heading);
  color: var(--bee-brown);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.education-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.education-content > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px var(--bee-shadow);
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
}
.education-content h3 {
  color: var(--bee-orange);
  font-family: var(--font-heading);
  margin-top: 0;
}

.guestbook-section {
  background: #fff;
  padding: 2rem 1.5rem;
}
.guestbook-section h2 {
  font-family: var(--font-heading);
  color: var(--bee-brown);
  font-size: 2rem;
  margin-bottom: 1rem;
}
#guestbook-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 400px;
  margin-bottom: 1.5rem;
}
#guestbook-form input,
#guestbook-form textarea {
  padding: 0.6rem;
  border-radius: 0.5rem;
  border: 1px solid var(--bee-brown);
  font-size: 1rem;
  font-family: var(--font-main);
}
#guestbook-form button {
  background: var(--bee-brown);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
#guestbook-form button:hover {
  background: var(--bee-orange);
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  min-height: 0;
  width: auto;
  margin-top: 2em;
  background: var(--bee-white, #fffbe7);
  padding: 2em 1em;
}
.testimonial {
  background: var(--bee-white);
  border-radius: 1rem;
box-shadow: 0 2px 8px var(--bee-shadow);
  padding: 1.2em 1.2em 1em 1.2em;
  font-size: 1.08em;
  min-width: 100px;
  max-width: 250px;
  width: auto;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial:hover {
  box-shadow: 0 6px 18px var(--bee-shadow);
  transform: scale(1.03) rotate(-1deg);
}
.testimonial p {
  font-style: italic;
  margin: 0 0 0.5rem 0;
}
.testimonial span {
  color: #b28704;
  font-weight: bold;
}

.contact-section {
  background: #fff;
  padding: 2rem 1.5rem;
}
.contact-section h2 {
  font-family: var(--font-heading);
  color: var(--bee-brown);
  font-size: 2rem;
  margin-bottom: 1rem;
}
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 400px;
  margin-bottom: 1.5rem;
}
#contact-form input,
#contact-form textarea {
  padding: 0.6rem;
  border-radius: 0.5rem;
  border: 1px solid var(--bee-brown);
  font-size: 1rem;
  font-family: var(--font-main);
}
#contact-form button {
  background: var(--bee-brown);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
#contact-form button:hover {
  background: var(--bee-orange);
}
.contact-info {
  font-size: 1.1rem;
}
.contact-links {
  margin: 1rem 0;
  display: flex;
  gap: 1rem;
}
.whatsapp-btn {
  background: #25D366;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}
.whatsapp-btn:hover {
  background: #128C7E;
}
.map-embed iframe {
  border-radius: 1rem;
  margin-top: 1rem;
}

.blog-section {
  background: var(--bee-white);
  padding: 2rem 1.5rem;
}
.blog-section h2 {
  font-family: var(--font-heading);
  color: var(--bee-brown);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.blog-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.blog-post {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px var(--bee-shadow);
  padding: 1rem 1.2rem;
  flex: 1 1 220px;
  min-width: 180px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-post:hover {
  box-shadow: 0 6px 18px var(--bee-shadow);
  transform: scale(1.03) rotate(1deg);
}
.blog-post h3 {
  color: var(--bee-orange);
  font-family: var(--font-heading);
  margin-top: 0;
}

footer {
  background: var(--bee-brown);
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.bee-heart {
  font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    gap: 0.7rem;
  }
  .about-content, .education-content, .products-list, .testimonials, .blog-posts {
    flex-direction: column;
    align-items: stretch;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .logo {
    font-size: 1.5rem;
  }
}

/* Add Baloo 2 font for friendlier headings */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600&display=swap');

@media (max-width: 900px) {
  .all-testimonials {
    flex-direction: column;
    gap: 0.7em;
  }
  .all-testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
}

.all-testimonial-card {
  background: #f9f9c5 !important;
  color: #222 !important;
  box-shadow: 0 4px 16px rgba(230,180,0,0.18) !important;
  border: 3px solid red !important; /* Debug border */
  border-radius: 8px !important;
  padding: 0.7em !important;
  font-size: 0.95em !important;
  min-width: 180px !important;
  max-width: 260px !important;
  width: 100% !important;
  flex: 1 1 220px !important;
  display: block !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  z-index: 9999 !important;
}

@media (max-width: 700px) {
  .floating-images {
    gap: 2rem !important;
  }
  .floating-images img {
    width: 200px !important;
    height: 150px !important;
    border-radius: 10%;
  }
}

.floating-images {
            text-align: center;
            margin: 2rem 0;
            display: flex;
            justify-content: center;
            gap: 10rem;
            clear: both;
        }

        .floating-images img {
            width: 250px;
            height: 250px;
            border-radius: 10%;
        }
