/* Events Page Specific Styles */
:root {
  --primary-color: #2563eb;
  --secondary-color: #06b6d4;
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  --gradient-secondary: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --border-radius: 0.75rem;
  --transition: all 0.3s ease;
}

/* === Carousel Image === */
.carousel-item img {
  height: 650px;
  object-fit: cover;
  pointer-events: none;   /* Prevent hover/click issues on img itself */
}

/* Ken Burns only on active slide */
.carousel-item.active img {
  animation: kenburns 12s ease-in-out forwards;
}

/* === Hover Zoom Effect (non-conflicting) === */
.carousel-item.active img:hover {
  transform: scale(1.25);    /* zoom in smoothly on hover */
  transition: transform 0.8s ease;
  animation: none;           /* pause kenburns on hover */
}

/* === Carousel Item Overlay === */
.carousel-item {
  position: relative;
}

.carousel-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
  background-size: 200% 200%;
  animation: gradientMove 8s ease infinite;
  pointer-events: none;   /* ✅ FIX: allows hover on img & carousel controls */

}

/* === Captions === */
.carousel-caption {
  /* z-index: 2;
  opacity: 1;
  transform: translateY(30px);
  transition: all 0.8s ease; */
  position: absolute;
  top: 10%;              /* push content to top side */
  left: center;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.carousel-item.active .carousel-caption {
  opacity: 1;
  transform: translateY(0);
}

/* === Keyframes === */
@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.2) translate(-10px, -10px); }
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
  .carousel-caption {
    top: 10%;      /* push content higher */
    left: 5%;      /* keep some padding */
    right: 5%;
    text-align: center; /* optional: center on mobile */
  }

  .slide-title {
    font-size: 1.8rem; /* smaller heading */
  }

  .slide-description {
    font-size: 1rem;
  }
}

.slide-badge {
  display: inline-block;
  padding: 0.5rem 1.3rem;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 25px;
  background: transparent;
  color: #fff;
  position: relative;
  z-index: 1;
}

.slide-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 2px;
  background: linear-gradient(90deg, #ff6ec4, #7873f5, #4ade80);
  background-size: 300% 300%;
  animation: borderMove 4s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@keyframes borderMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.slide-title {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-description {
  font-size: 1rem;
  /* color: rgba(203, 213, 225, 0.95); */
  color: white;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}


/* Hero Section with Video Background */
/* .events-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(51, 65, 85, 0.6) 50%, rgba(30, 41, 59, 0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

.hero-badge {
  background: rgba(37, 99, 235, 0.2);
  color: rgba(147, 197, 253, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(203, 213, 225, 0.9);
  max-width: 48rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
} */

/* Services Overview */
.section-description{
  color: rgba(1, 5, 10, 0.9);
}

.services-overview {
  /* background: white; */
  background: url("../img/event-bg-img.jpeg") no-repeat center center !important;
  background-size: cover !important;  /* full width + height */
  background-attachment: fixed;       /* parallax effect */
  min-height: 100vh;                  /* full screen height */
  position: relative;
  color: #fff;
  display: flex;
  align-items: center; 
}

.service-overview-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.service-overview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-overview-card .service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.service-overview-card:hover .service-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
}

.service-overview-card .service-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.service-overview-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.service-overview-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Corporate Events Section */
/* .corporate-events {
  background: url("../img/event-background.png") no-repeat center center !important;
  background-size: cover;
  min-height: 600px;
  position: relative;
  color: #fff;
} */
 .corporate-events {
  /* background: url("../img/event-background.png") no-repeat center center !important; */
  background-size: cover !important; /* makes it full width + height */
  background-attachment: fixed;       /* optional: parallax effect */
  min-height: 100vh;                  /* takes full screen height */
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;                /* vertically center content */
}

.service-content {
  padding: 2rem 0;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.service-badge i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.service-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.service-main-description {
  font-size: 1.125rem;
  /* color: var(--text-secondary); */
  color: rgba(1, 5, 10, 0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(37, 99, 235, 0.1);
  transform: translateX(5px);
}

.feature-item i {
  color: #10b981;
  margin-right: 0.75rem;
  font-size: 1rem;
}

.feature-item span {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
}

.service-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Service Image Gallery */
.service-image-gallery {
  position: relative;
}

.main-image {
  margin-bottom: 1rem;
}

.main-image img {
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.main-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.gallery-thumbnails {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.thumbnail {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.thumbnail:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Photography Section */
.photography-section {
  background: white;
}

.photography-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.photography-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.photography-card:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.8) 0%, rgba(6, 182, 212, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.photography-card:hover .card-overlay {
  opacity: 1;
}

.card-overlay i {
  font-size: 3rem;
  color: white;
}

.card-content {
  padding: 1.5rem;
}

.card-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.card-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Photography Details */
/* .mb-5 {
    margin-bottom: 7rem !important;
} */

.photography-details h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.photography-details h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.photography-details h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

.services-checklist {
  list-style: none;
  padding: 0;
}

.services-checklist li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.services-checklist i {
  color: #10b981;
  margin-right: 0.75rem;
  font-size: 0.9rem;
}

.photography-showcase img {
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Event Coverage Section */
.event-coverage {
  background: #f8fafc;
}

.coverage-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.coverage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.coverage-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.coverage-card:hover .coverage-icon {
  transform: scale(1.1);
}

.coverage-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 1.5rem;
}

.coverage-item {
  margin-bottom: 1.5rem;
}

.coverage-item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.coverage-item h5 i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  font-size: 1rem;
}

.coverage-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-left: 1.5rem;
}

/* Family Events Section */
.family-events {
  /* background: white; */
  background: url("../img/event-bg.jpg") no-repeat center center !important;
  background-size: cover !important; /* makes it full width + height */
  background-attachment: fixed;       /* optional: parallax effect */
  min-height: 100vh;                  /* takes full screen height */
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;                /* vertically center content */
}

.family-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.event-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.event-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.event-item:hover .event-image img {
  transform: scale(1.1);
}

.event-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.event-item:hover .event-overlay {
  transform: translateY(0);
}

.event-overlay h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.event-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* Portfolio Showcase */
.portfolio-showcase {
  /* background: #f8fafc; */
  /* background: url("../img/event-bg.jpg") no-repeat center center !important; */
  background-size: cover !important; /* makes it full width + height */
  background-attachment: fixed;       /* optional: parallax effect */
  min-height: 100vh;                  /* takes full screen height */
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;                /* vertically center content */
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-btn {
  background: white;
  border: 2px solid #e2e8f0;
  color: var(--text-secondary);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-primary);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 300px;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-overlay h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.portfolio-overlay p {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  position: relative;
  background: var(--gradient-secondary);
  color: white;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-secondary);
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(147, 197, 253, 0.9);
  max-width: 32rem;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .service-main-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn,
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
  }

  .service-actions {
    flex-direction: column;
  }

  .service-actions .btn {
    width: 100%;
  }

  .gallery-thumbnails {
    flex-wrap: wrap;
  }

  .family-events-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-filter {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .service-main-title {
    font-size: 1.75rem;
  }

  .service-overview-card {
    padding: 2rem 1.5rem;
  }

  .coverage-card {
    padding: 1.5rem;
  }

  .photography-card .card-content {
    padding: 1rem;
  }
}

/* Animation Enhancements */
.service-overview-card,
.photography-card,
.coverage-card,
.event-item,
.portfolio-item {
  /* opacity: 0; */
  transform: translateY(30px);
}

.service-overview-card.aos-animate,
.photography-card.aos-animate,
.coverage-card.aos-animate,
.event-item.aos-animate,
.portfolio-item.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth Hover Transitions */
* {
  transition: all 0.3s ease;
}

/* Loading Animation */
.loading {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.loading.loaded {
  opacity: 1;
  transform: translateY(0);
}
