    .glass-btn {
      display: inline-block;
      padding: 0.9rem 2rem;
      font-family: "PT Sans Narrow", sans-serif;
      font-weight: 700;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--blueish);
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 15px;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
      transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
      position: relative;
      overflow: hidden;
    }

    .glass-btn::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.6s;
    }

    .glass-btn:hover {
      transform: translateY(-3px) scale(1.03);
      background: rgba(232,180,184,0.8);
      border-color: rgba(232,180,184,0.8);
  box-shadow: 
    0 8px 25px rgba(232,180,184,0.8),
    0 0 0 1px rgba(232,180,184,0.8) inset;
    }

    .glass-btn:hover::before { left: 100%; }
    .glass-btn:active { transform: translateY(-1px) scale(1.01); }
	

    /* Category filters layout */
    .category-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      margin: 2.5rem 0;
      justify-content: center;
    }

    /* Active category state */
    .glass-btn.active {
      background: rgba(232,180,184, 1);
      border-color: rgba(81, 15, 19, 0.8);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(81, 15, 19, 0.4);
    }

    /* Pagination container */
    .pagination {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin: 3.5rem 0;
    }

    .pagination a.glass-btn {
      padding: 0.8rem 1.4rem;
      font-size: 0.95rem;
      min-width: 50px;
      text-align: center;
    }

    .pagination a.glass-btn.disabled {
      opacity: 0.45;
      cursor: not-allowed;
      transform: none !important;
      box-shadow: none !important;
      pointer-events: none;
    }
	.container {
	margin-bottom: 50px;	
	}
	
/* Service meta grid - 4 equal glass blocks in one row */
.service-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);      /* 4 equal columns */
  gap: 1rem;                                  /* spacing between blocks */
  margin: 1.5rem 0 2rem;
}

/* Each meta card - glass look, non-clickable */
.meta-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 1.2rem 1rem;
  text-align: center;
  color: white;
  font-family: "PT Sans Narrow", sans-serif;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

/* Optional subtle hover effect (like btn-glass but lighter) */
.meta-card:hover {
  transform: translateY(-3px);
  background: rgba(232,180,184,0.8);      /* slight pink tint */
  box-shadow: 
    0 8px 25px rgba(232,180,184,0.8),
    0 0 0 1px rgba(232,180,184,0.8) inset;
}

/* Shine sweep on hover */
.meta-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
  pointer-events: none;
}

.meta-card:hover::before {
  left: 100%;
}

/* Icon styling */
.meta-card i {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  /* color: var(--blueish);               /* or #fff if you prefer */
  color: #ffffff;
  display: block;
}

/* Text below icon */
.meta-card span {
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
  line-height: 1.3;
}

/* Mobile - stack vertically */
@media (max-width: 768px) {
  .service-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);      /* 2 equal columns */
  gap: 1rem;                                  /* spacing between blocks */
  margin: 1.5rem 0 2rem;
  }
  .meta-card {
    padding: 1.5rem;
  }
}
	
/* Gallery container - fixed 3 columns like articles.php */
.popped-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);   /* always 3 columns, even with 1 image */
  gap: 1rem;
  position: relative;
}

/* Each thumbnail box - square, fixed aspect */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  aspect-ratio: 1;                       /* square */
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Fade-in class (same as articles) */
.gallery-item.visible {
  opacity: 1;
  transform: scale(1);
}

/* Image fills square perfectly */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

/* Hover zoom */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* Shine effect (same as articles) */
.gallery-item::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left .6s;
  z-index: 1;
  pointer-events: none;
}
.gallery-item:hover::before {
  left: 100%;
}



/* Mobile - stack to 1 or 2 columns */
@media (max-width: 768px) {
  .popped-gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

    /* Hero */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 60dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:#006064;
  color: white;
}
    .hero video,.hero img{position:absolute;top:50%;left:50%;min-width:100%;min-height:100%;transform:translate(-50%,-50%);object-fit:cover;z-index:0;}
.hero-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/splash/hands_2_blur_redwine_dark.jpg') center/cover no-repeat;
  animation: heroZoom 5s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.5); }
}
		
    /*
	.hero-content{position:relative;z-index:2;max-width:1200px;margin:0 auto;padding:0 2rem;height:100%;display:flex;flex-direction:column;justify-content:center;gap:2rem;}
	*/
	.hero-content {
	  position:relative;
	  z-index:2;
	  max-width:1200px;
	  margin:0 auto;
	  padding:0 2rem;

	  min-height:100%;
	  display:flex;
	  flex-direction:column;
	  justify-content:center;
	  align-items:center;
	  text-align:center;
	  gap:2rem;
	}
	.hero-content p {
		max-width: 100%;
		text-align: justify;
	}
    .hero h1{
      font-size:4.5rem;font-weight:900;line-height:1;letter-spacing:-1px;
      font-family:"PT Sans Narrow",sans-serif;text-shadow:0 2px 10px rgba(0,0,0,0.6);
    }
    .hero p{
      font-size:1.6rem;font-weight:400;font-family:"PT Sans Narrow",sans-serif;
    }
	.no-background {
		background: none;
		color: var(--accent-strong);
	}
	.container {
	margin-bottom: 50px;	
	}
	
/* social media */
/* Share buttons container - placed below gallery or at bottom of single service */
.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center; /* or flex-start / space-between */
}

/* Glass share button - matches btn-glass exactly */
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.8rem;
  font-family: "PT Sans Narrow", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blueish);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

/* Shine effect on hover */
.share-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.share-btn:hover::before {
  left: 100%;
}

/* Hover state */


.share-btn:hover {
  transform: translateY(-3px) scale(1.03);
  background: rgba(232,180,184,0.8);
  border-color: rgba(232,180,184,0.8);
  box-shadow: 
    0 8px 25px rgba(232,180,184,0.8),
    0 0 0 1px rgba(232,180,184,0.8) inset;
}

/* Active/pressed state */
.share-btn:active {
  transform: translateY(-1px) scale(1.01);
}

/* Icons inside buttons */
.share-btn i {
  font-size: 1.3rem;
}

/* Mobile - stack vertically if too many */
@media (max-width: 480px) {
  .share-buttons {
    flex-direction: column;
    align-items: center;
  }
  .share-btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }
}

/* Team booking buttons grid - 2 per row on desktop, 1 on mobile */
.team-booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 1.2rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .team-booking-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}

/* Individual team booking button - glass style with photo on top */
.team-booking-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.2rem 1rem;
  min-height: 220px; /* consistent height */
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Hover shine + lift (matches your glass-btn) */
.team-booking-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
  pointer-events: none;
}

.team-booking-btn:hover::before {
  left: 100%;
}

.team-booking-btn:hover {
  transform: translateY(-3px) scale(1.03);
  background: rgba(232,180,184,0.8); 
  border-color: rgba(232,180,184,0.8);
  box-shadow: 
    0 8px 25px rgba(232,180,184,0.8),
    0 0 0 1px rgba(232,180,184,0.8) inset;
}

/* Photo container - square, fixed size */
.team-photo {
  width: 100px;
  height: 100px;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}


/* Image inside photo - full coverage, centered */
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text below photo */
.team-booking-btn span {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

/* Text below photo */
.team-booking-btn span:hover {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: none !important;
  color: var(--accent-strong);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .team-booking-btn {
    min-height: 240px;
    padding: 1.5rem 1rem;
  }
  .team-photo {
    width: 120px;
    height: 120px;
  }
}


.popped-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;    /* ← key change: aligns content to the top */
  align-items: stretch;           /* or flex-start / center – depending on horizontal preference */
  gap: 1.5rem;                    /* optional: better spacing between children */
}