/* Set default font to Inter, as required */
body {
    font-family: 'Inter', sans-serif;
    background-color: #fcfcfc; /* Very light background */
}

/* Custom scrollbar styling for aesthetics */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #fddbdc;
    border-radius: 10px;
}

#mobile-menu {
  transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}
#mobile-menu:not(.hidden) {
  opacity: 1;
}

#hero {
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
}

/* Background picture */
#about {
  position: relative;
  background: url('../images/bg-pattern.png') center/cover no-repeat;
  color: white; /* makes text readable */
  font-weight: 500; /* makes text bold */
  text-shadow: 0 2px 8px rgba(0,0,0,0.3); /* soft shadow under text */
}

/* Add a dark overlay */
#about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* adjust 0.4 → darker/lighter overlay */
  backdrop-filter: blur(2px); /* optional blur on the background */
  z-index: 0;
}

/* Make sure your text is above the overlay */
#about * {
  position: relative;
  z-index: 1;
}


/* Slider container */
#strawberry-slider {
  display: flex;
  width: 100%;
}

#strawberry-slider img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 1.5rem;
}

#hero-slider {
  display: flex;
  width: 100%;
}

#hero-slider img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 1.5rem;
  object-fit: cover;
}

/* ===== SOCIAL ICON HOVER EFFECT ===== */
footer a svg,
header a svg {
  transition: transform 0.2s ease, color 0.2s ease;
}

footer a:hover svg,
header a:hover svg {
  transform: scale(1.15);
  color: #db2777; /* Tailwind pink-600 */
}