/* ===== GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
  background-color: #fdfdf5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
 background: #32CD32; /* LimeGreen */

  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.navbar .logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 45px;
  width: auto;
  border-radius: 50%;
}

.logo span {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav-links li a {
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}
.nav-links li a:hover,
.nav-links li a.active {
  border-bottom: 2px solid #558b2f;
  font-weight: bold;
}


/* Mobile navbar */
@media(max-width:768px){
  .nav-links {
    position: fixed;
    top: 60px;
    right: -100%;
    background: linear-gradient(160deg, rgba(56, 142, 60, 0.95), rgba(129, 199, 132, 0.9)); /* Smooth transparent green gradient */
    height: 100vh;
    width: 220px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease-in-out, background 0.3s ease;
    backdrop-filter: blur(4px); /* subtle frosted effect */
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    color: #ffffff; /* white text for contrast */
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .nav-links li a:hover {
    color: #c8e6c9; /* soft mint green on hover */
  }

  .hamburger {
    display: flex;   
  }
}


/* ===== HOME SECTION ===== */
#home {
  text-align: center;
  padding: 60px 20px;
  background: #fdfdf5;
}
.header-text h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #2e7d32;
}
.header-text h3 {
  font-size: 1.25rem;
  margin-bottom: 25px;
  color: #555;
}
.home-images {
  margin-bottom: 30px;
}
.logo-img {
  width: 150px;
  height: auto;
  margin: 0 auto;
}
.hero {
  background: #f1f8e9;    /* soft pale green */
  padding: 50px 20px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 2px 6px rgba(85, 139, 47, 0.15);
}

.hero h1 {
  font-size: 2.2rem;
  color: #33691e;         /* medium green */
  margin-bottom: 12px;
  font-weight: 700;
}

.hero .motto {
  font-style: italic;
  font-weight: 600;
  font-size: 1.2rem;
  color: #689f38;         /* muted green */
  letter-spacing: 0.04em;
  user-select: none;
}
#home h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
#contact-info h3 {
  font-size: 1.2rem;
  color: #2e7d32;
  text-align: center;
  line-height: 1.6;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#contact-info a {
  color: #007b83;
  text-decoration: none;
  font-weight: 600;
}

#contact-info a:hover {
  text-decoration: underline;
}
.contact-highlight {
  background: #f1f8e9; /* soft green tint */
  color: #2e7d32;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
  margin-bottom: 20px;
}

.contact-highlight strong {
  color: #1b5e20; /* darker green for emphasis */
}

.contact-highlight a {
  color: #007b83;
  text-decoration: none;
  font-weight: 600;
}

.contact-highlight a:hover {
  text-decoration: underline;
}
/* ===== CONTACT BANNER ===== */
#contact-banner {
  padding: 60px 20px;
  background: #f9f9f9;
  display: flex;
  justify-content: center;
  text-align: center;
}

.contact-card {
  background: #ffffff;
  border-left: 6px solid #2e7d32;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  max-width: 800px;
  line-height: 1.8;
}

.contact-card h2 {
  color: #2e7d32;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.contact-card p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.contact-card strong {
  color: #1b5e20;
}

.contact-card a {
  color: #007b83;
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: #ffffff !important;
  padding: 12px 25px;
  border-radius: 30px;
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: #1ebd5a;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-card {
    padding: 30px 20px;
  }

  .contact-card h2 {
    font-size: 1.5rem;
  }

  .whatsapp-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}


section {
  padding: 40px 20px;
  text-align: center;
  background: #fefefe;
  margin-bottom: 40px;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2e7d32;
}

.image-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.image-item {
  width: 250px;
height: auto;
  text-align: center;
}

.image-item p {
  margin-bottom: 12px;
  font-weight: 600;
  color: #33691e;
}

/* Slider container */
.slider-container {
  position: relative;
  width: 100%;
  height: 150px; /* fixed height for consistency */
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Slides */
.slider-container .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slider-container .slide.active {
  opacity: 1;
  position: relative;
}

/* Buttons */
.slider button.prev,
.slider button.next {
  position: relative;
  margin: 10px 5px 0 5px;
  background-color: #2e7d32;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 18px;
  user-select: none;
}

.slider button.prev:hover,
.slider button.next:hover {
  background-color: #558b2f;
}

/* ===== THEME VARIABLES ===== */
:root {
  --primary: #2e7d32;
  --accent: #558b2f;
  --light-bg: #f9f9f9;
  --hover-bg: #f1f8e9;
  --text-dark: #333;
  --text-light: #555;
}
/* ===== DISPENSARY SECTION STYLING ===== */
.dispensary-section .image-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.dispensary-section .image-item {
  width: 250px;
  text-align: center;
}

.dispensary-section .image-item p {
  margin-bottom: 12px;
  font-weight: 600;
  color: #33691e;
}

/* Match Front Store shape */
.dispensary-section .image-item img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dispensary-section .image-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* Responsive fix */
@media (max-width: 600px) {
  .dispensary-section .image-item {
    width: 180px;
  }
  .dispensary-section .image-item img {
    height: 130px;
  }
}


/* ===== SERVICES SECTION ===== */
#services {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

#services h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.services-intro {
  color: limegreen;
  margin: 30px auto 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  max-width: 700px;
  line-height: 1.6;
}

/* ===== ICONS GRID ===== */
.home-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  justify-items: center;
  margin-bottom: 25px;
}

.home-icons img {
  width: 100%;
  max-width: 160px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-icons img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;
}

.service:hover {
  transform: translateY(-6px);
  background: var(--hover-bg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service h3 {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.service ul {
  list-style: none;
  padding: 0;
}

.service ul li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
  color: var(--text-dark);
}

.service ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  #services {
    padding: 60px 15px;
  }

  .home-icons img {
    max-width: 120px;
  }

  .service {
    text-align: center;
  }

  .service ul {
    text-align: left;
    display: inline-block;
  }
}

/* ===== ANIMATION (Optional but Elegant) ===== */
.service {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== ABOUT US ===== */
#about {
  padding: 60px 20px;
  background: #fdfdf5;
}
#about h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #2e7d32;
}
.about-content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.about-content img {
  flex: 1 1 300px;
  width: 800px;
  height: 500px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about-content p {
  flex: 1 1 300px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}
.values {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.value {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  flex: 1 1 200px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.value:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.value i {
  font-size: 2.5rem;
  color: #558b2f;
  margin-bottom: 15px;
}
.value h3 {
  margin-bottom: 12px;
  color: #33691e;
}
.value p, .value ul {
  color: #555;
}
.value ul {
  list-style: none;
}
.value ul li {
  margin-bottom: 5px;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* --- Unified Rule --- */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 2rem;
  color: #333; /* base color */
  text-decoration: none;
  border-radius: 50%;
  transition: color 0.3s, transform 0.2s;
}

/* --- Default hover (greenish tone) --- */
.social-icons a:hover {
  color: #558b2f;
  transform: scale(1.1);
}

/* --- Platform-specific hover colors --- */
.social-icons a.whatsapp:hover {
  color: #25D366; /* WhatsApp green */
}

.social-icons a.email:hover {
  color: #D44638; /* Gmail red */
}

.social-icons a.address:hover {
  color: #007BFF; /* Google Maps blue */
}

.social-icons a.facebook:hover {
  color: #1877F2; /* Facebook blue */
}

/* ===== FOOTER ===== */
footer {
  background: #2e7d32;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}
footer p, footer {
  font-size: 0.9rem;
}

/* ===== MEDIA QUERIES (RESPONSIVE) ===== */
@media(max-width: 1024px) {
  .about-content {
    flex-direction: column;
  }
  .contact-section {
    flex-direction: column;
  }
}

@media(max-width: 768px) {
  .header-text h1 {
    font-size: 2rem;
  }
  .header-text h3 {
    font-size: 1rem;
  }
  #services h1, #about h1, #contact h1 {
    font-size: 1.75rem;
  }
  .services-grid, .values, .contact-section, .items {
    gap: 15px;
  }
}

/* ===== HAMBURGER MENU FIX ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

/* X animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}
