.hero-bg {
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%),
    url("../assets/patrick_aime-hero.png?v=2");
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed; */
  /* background-blend-mode: overlay; */
  backdrop-filter: blur(2px);
}

.text-shadow {
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8);
  /* Reverted to darker shadow */
}

.nav-link {
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}

.nav-link:hover {
  color: #d9a457 !important;
}

.contact-btn {
  border: 2px solid #d9a457 !important;
  color: #d9a457 !important;
  background: transparent;
  transition: all 0.3s ease;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 12px 24px;
}

.contact-btn:hover {
  background: #d9a457 !important;
  color: #1a202c !important;
}

.social-icon {
  transition: all 0.3s ease;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.social-icon:hover {
  color: #d9a457 !important;
}

.social-icon-facebook {
  width: 22px;
  
}

.social-icon-youtube{
  width: 24px;
}

.album-card {
  transition: all 0.3s ease;
  cursor: pointer;
  border-color: #d9a457 !important;
}

.album-card:hover {
  transform: translateY(-5px);
}

/* .service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
} */

.gallery-item {
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  height: 100%;
  /* Ensure image fills its container */
  object-fit: cover;
  border-radius: 0.5rem;
  /* Rounded corners */
}

.gallery-item-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  height: 100%;
  /* Ensure wrapper fills its grid cell */
}

.hamburger-close span {
  background-color: #fff !important;
  /* black */
}

.herbal-products-card img {
  pointer-events: none;
  /* only disables clicks on the image */
}

.herbal-products-card a {
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.gallery-caption {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.gallery-item-wrapper:hover .gallery-caption {
  opacity: 1;
}

.gallery-item-wrapper:hover .gallery-item {
  transform: scale(1.05);
}

html {
  scroll-behavior: smooth;
}

.section-padding {
  padding: 80px 0;
}

/* Services Section Styles */
.bg-charcoal {
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 50%, #f8ffff 100%);
  position: relative;
  overflow: hidden;
}

.bg-charcoal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(173, 216, 230, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(173, 216, 230, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

#services {
  /* max-height: 100vh; */
  overflow-y: hidden;
}

#discography {

  overflow-y: hidden;
}

.max-w-7xl {
  max-width: 80rem;
  position: relative;
  z-index: 1;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.text-center {
  text-align: center;
}

.mb-16 {
  margin-bottom: 4rem;
}

.text-4xl {
  font-size: 2.5rem;
  line-height: 1.1;
}

.font-bold {
  font-weight: 700;
}

.text-white {
  color: #1a202c;
  /* Changed to dark text for contrast on light background */
  text-shadow: none;
  /* Removed text shadow for light background */
}

.mb-8 {
  margin-bottom: 2rem;
}

.grid {
  display: grid;
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-12 {
  gap: 3rem;
}

/* Service Cards */
.text-center[data-aos] {
  background: rgba(26, 32, 44, 0.92);
  /* dark background */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(217, 164, 87, 0.3);
  /* accent gold border */
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.text-center[data-aos]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(217, 164, 87, 0.08) 0%, rgba(26, 32, 44, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.text-center[data-aos]:hover {
  transform: translateY(-8px);
  border-color: #d9a457;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.text-center[data-aos]:hover::before {
  opacity: 1;
}

/* Service Icons */
.service-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  object-fit: contain;
}

.text-burnt-amber {
  color: #d9a457 !important;
  /* Direct color for icons */
  filter: none;
  /* Removed filter as direct color is used */
}

.mb-6 {
  margin-bottom: 1.5rem;
  position: relative;
}

.mb-6::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  background: radial-gradient(circle, rgba(173, 216, 230, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.text-center[data-aos]:hover .service-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px rgba(173, 216, 230, 0.8));
}

/* Service Text */
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  color: white;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.mb-4 {
  margin-bottom: 1rem;
}

.text-center[data-aos]:hover .text-xl {
  color: #d9a457 !important;
}

.text-medium-gray {
  color: #4a5568;
  /* Changed to new light-text color */
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
  text-shadow: none;
  /* Removed text shadow */
}

.text-center[data-aos]:hover .text-medium-gray {
  color: #2d3748;
  /* Slightly darker gray for hover on light background */
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.leading-relaxed {
  line-height: 1.625;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .grid-cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .section-padding {
    padding: 48px 0;
  }

  /* Mobile nav links text color */
  .mobile-menu .nav-link,
  .mobile-menu .nav-link.text-dark-text,
  .mobile-menu .nav-link:hover,
  .mobile-menu .nav-link:focus {
    color: #f0f8ff !important;
  }
}

@media (max-width: 768px) {

  .biography-text {
    font-size: 20px;
    /* Min 14px, Preferred 2.5vw, Max 16px */
  }

  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr !important;
  }

  .grid-cols-2 {
    grid-template-columns: 1fr !important;
  }

  .section-padding {
    padding: 32px 0;
  }

  .max-w-7xl,
  .max-w-2xl {
    max-width: 100% !important;
  }

  .px-8 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .pl-8,
  .pr-16 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .h-96,
  .h-64,
  .h-48 {
    height: 200px !important;
  }

  /* Apply clamp to hero h1 */
  .text-7xl {
    font-size: clamp(2.25rem, 8vw, 4.5rem) !important;
    /* Min 36px, Preferred 8vw, Max 72px */
  }

  /* Apply clamp to section h2 titles */
  .text-4xl {
    font-size: clamp(1.5rem, 5vw, 2.5rem) !important;
    /* Min 24px, Preferred 5vw, Max 40px */
  }
}

/* Responsive nav menu: stack links on mobile */
@media (max-width: 640px) {
  nav .flex.space-x-12 {
    flex-direction: column !important;
    gap: 0.5rem !important;
    align-items: flex-start !important;
  }

  .hero-bg {
    min-height: 60vh !important;
  }

  /* Further adjust hero h1 for very small screens */
  .text-7xl {
    font-size: clamp(1.5rem, 6vw, 2.25rem) !important;
    /* Min 24px, Preferred 6vw, Max 36px */
  }

  /* Further adjust section h2 titles for very small screens */
  .text-4xl {
    font-size: clamp(1.25rem, 4vw, 1.5rem) !important;
    /* Min 20px, Preferred 4vw, Max 24px */
  }
}

/* Add clamp for hero paragraph text */
.hero-bg p {
  font-size: clamp(1rem, 4vw, 1.125rem);
  /* Min 16px, Preferred 4vw, Max 18px */
}

/* Add clamp for discography/services/gallery/contact section descriptions */
.section-padding p {
  font-size: clamp(0.875rem, 3vw, 1.125rem);
  /* Min 14px, Preferred 3vw, Max 18px */
}

/* Add clamp for biography content */
#Biography .space-y-6 p {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  /* Min 14px, Preferred 2.5vw, Max 16px */
}

.bg-accent-blue {
  background-color: #d9a457 !important;
  color: #1a202c !important;
}

.border-accent-blue {
  border-color: #d9a457 !important;
}

.focus\:border-accent-blue:focus {
  border-color: #d9a457 !important;
}

/* Mobile nav menu background - force black for dark theme */
.mobile-menu {
  color: #000 !important;
}