/* ================================
   COMPONENTS STYLES
   ================================ */

/* Navigation Styles */
.header {
  background-color: var(--bg-primary);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 120px; /* Taller navbar to accommodate bigger logo */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
}

/* Much larger logo to account for empty space */
.logo img {
  height: 110px; /* Almost fills the navbar */
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  height: 100%;
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--accent-green);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  align-self: center;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  margin: 3px 0;
  transition: var(--transition);
}

/* Button with Scale + Shadow Effect */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--accent-green);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  margin: 0 8px;
  box-shadow: 0 2px 8px rgba(139, 174, 102, 0.2);
}

.btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 174, 102, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent-green);
  border: 1px solid var(--accent-green);
  box-shadow: 0 2px 8px rgba(139, 174, 102, 0.1);
}

.btn-secondary:hover {
  background-color: var(--accent-green);
  color: var(--white);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 174, 102, 0.3);
}

/* Product Cards - With Scale + Glow Hover Effect */
.product-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 4rem 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-height: 400px;
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2), 
              0 8px 20px rgba(0, 0, 0, 0.15),
              0 0 20px rgba(139, 174, 102, 0.3);
}

.product-image {
  width: 100%;
  height: 340px;
  object-fit: contain;
  border-radius: var(--border-radius);
  margin-bottom: 0.5rem;
}

.product-title {
  position: absolute;
  top: -10px;
  right: -15px;
  background-color: #FFD700;
  color: black;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* Call to Action Buttons */
.cta-buttons {
  text-align: center;
  margin-top: 4rem;
}

/* Much larger logo sizing for different devices */
@media (max-width: 480px) {
  .header {
    height: 100px;
  }
  
  .logo img {
    height: 90px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .header {
    height: 120px;
  }
  
  .logo img {
    height: 110px;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .header {
    height: 140px;
  }
  
  .logo img {
    height: 130px;
  }
}

@media (min-width: 1201px) {
  .header {
    height: 160px;
  }
  
  .logo img {
    height: 150px;
  }
}

/* Responsive Grid */
@media (min-width: 768px) {
  .product-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .hamburger {
    display: none;
  }
}

@media (min-width: 1024px) {
  .product-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .product-card {
    padding: 1.5rem 1rem;
    min-height: 380px;
  }
  
  .product-image {
    height: 320px;
  }
}

/* Mobile Navigation */
@media (max-width: 767px) {
  .nav-menu {
    position: fixed;
    top: 100px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 100px);
    background-color: var(--bg-primary);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 3rem;
    transition: var(--transition);
    box-shadow: 0 2px 10px var(--shadow);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 1rem 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .btn {
    margin: 0;
    width: 200px;
  }
  
  .product-cards {
    gap: 2rem;
    margin: 3rem 0;
  }
  
  .product-card {
    padding: 1.5rem 1rem;
    min-height: 350px;
  }
  
  .product-image {
    height: 280px;
  }
  
  .product-title {
    top: -8px;
    right: -10px;
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@media (min-width: 768px) {
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
}