/* Enter Your Custom CSS Here */
/* Navigation Container */
.hostinger-ai-site-navigation {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  padding: 20px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  flex-wrap: wrap;
}

/* Reset default WordPress styles */
.hostinger-ai-site-navigation a {
  all: unset;
  display: inline-block;
  color: #111111;
  font-weight: 500;
  font-size: 17px;
  position: relative;
  cursor: pointer;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

/* Custom underline effect */
.hostinger-ai-site-navigation a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background-color: #0073e6;
  transition: transform 0.3s ease;
  transform-origin: center;
}

/* Hover state for top-level */
.hostinger-ai-site-navigation a:hover {
  color: #0073e6;
}
.hostinger-ai-site-navigation a:hover::before {
  transform: translateX(-50%) scaleX(1);
}

/* Remove underline for submenu items */
.hostinger-ai-site-navigation .wp-block-navigation__submenu-container a::before {
  display: none !important;
}
.hostinger-ai-site-navigation .wp-block-navigation__submenu-container a:hover::before {
  display: none !important;
}

/* Just blue hover for submenu items */
.hostinger-ai-site-navigation .wp-block-navigation__submenu-container a:hover {
  color: #0073e6;
}

/* Active/current item */
.hostinger-ai-site-navigation .current-menu-item > a {
  color: #0073e6;
  font-weight: 600;
}
.hostinger-ai-site-navigation .current-menu-item > a::before {
  transform: translateX(-50%) scaleX(1);
}

/* Remove all default link styling inside header */
header a {
  text-decoration: none !important;
  background-image: none !important;
  box-shadow: none !important;
  transition: color 0.3s ease;
}
header a:hover {
  color: #0073e6 !important;
}

.wp-image-105
{
	background-size: above;
}

.halcyon-text{
	color:red;
	text-align:center;
	width:100%;
}

.hostinger-ai-service-image-hostinger-index-3b{
  width: 15vw;
  height: 20vh;
  object-fit: contain; /* Keeps the image cropping nicely */
}


.browse-recipe{
	color:red;
	width:100%;
	background:black;
}

.custom-scroll-menu {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  align-items: center;
  background: #ffffff; /* white background */
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  justify-content: flex-start;
}

/* Hide scrollbar */
.custom-scroll-menu::-webkit-scrollbar {
  display: none;
}

.custom-scroll-menu a {
  text-decoration: none;
  color: #333;
  padding: 0 10px;
  flex-shrink: 0;
}

.separator {
  color: #999;
  padding: 0 5px;
  flex-shrink: 0;
}

.custom-search-wrapper {
  position: relative;
  z-index: 9999;
}

.search-icon {
  font-size: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  outline: none;
}

.search-icon:focus {
  outline: none;
  box-shadow: none;
}

.icon-search,
.icon-close {
  font-size: 22px;
}

.hidden {
  display: none !important;
}

.search-dropdown {
  position: absolute;
  top: 40px;
  right: 0;
  background: #fff;
  padding: 12px 15px;
  border-radius: 18px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999;
}

.search-dropdown input[type="text"] {
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 25px;
  border: 1px solid #ccc;
  outline: none;
  width: 200px;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .search-dropdown {
    top: 50px;
    right: 10px;
    width: calc(100vw - 40px);
  }

  .search-dropdown input[type="text"] {
    width: 100%;
  }
}

.child-category-section {
  margin-bottom: 60px;
}

.child-category-section h2 {
  margin-bottom: 25px;
  font-size: 24px;
  color: #222;
  text-align: left;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  max-width: 800px; /* limits overall row width */
     margin-right: auto;
  padding: 0 15px;
}

.post-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.post-card img:hover {
  opacity: 0.85;
}

.post-card h3 {
  font-size: 18px;
  font-weight: 600;
  padding: 15px;
  margin: 0;
  color: #333;
  font-family: 'Arial', sans-serif;
}

@media (max-width: 768px) {
  .card-grid {
    padding: 0 10px;
  }

  .post-card img {
    height: 180px;
  }

  .child-category-section h2 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .post-card h3 {
    font-size: 16px;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
}