/* Custom styles that complement Bootstrap */
@import url("colors.css");

/* Container fluid adjustment */
.container-fluid {
  margin: 0;
  padding: 0;
}

/* Hero Section */
.hero-container {
  height: 80vh;
  position: relative;
  max-height: 800px;
  min-height: 400px;
  overflow: hidden;
  background-color: var(--silver);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 10;
  color: white;
  padding: 1rem 1.5rem;
  background: rgba(30, 30, 30, 0.85);
  border-radius: 8px;
  max-width: 80%;
  text-align: left;
}

.hero-image-wrapper {
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Photography Packages Section */
#packages {
  position: relative;
  padding: 2rem 0;
}

.plans-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.plans-scroller {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.plans-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.plan-item {
  flex: 0 0 33%;
  padding: 0 8px;
  box-sizing: border-box;
  min-width: 0;
}

.scroll-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.scroll-arrow:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.scroll-left {
  left: 10px;
}
.scroll-right {
  right: 10px;
}

/* Card Styles */
.luxury-card {
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.luxury-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  height: 180px;
  overflow: hidden;
}

.card-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.luxury-card:hover .card-img-top img {
  transform: scale(1.05);
}

.card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card-body p {
  font-size: 0.85rem;
  margin-bottom: auto;
}

/* Video Showcase */
.video-container {
  position: relative;
  width: 100%;
  min-height: 500px;
  background-color: #000;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.video-container:hover .video-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.btn-play {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 24px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-play:hover {
  transform: scale(1.1);
  background: var(--primary-color);
}

/* Product Cards */
.product-card {
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
  transition: transform 0.5s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-card:hover .btn-group {
  opacity: 1;
}

.price,
.product-price {
  color: var(--primary) !important;
}

/* Process Steps */
.process-step {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: var(--silver-color);
}

/* Feature Box Hover Effect */
.feature-box {
  transition: transform 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--graphite) !important;
  background-color: var(--silver) !important;
}

/* Feature Item */
.feature-item {
  color: var(--secondary) !important;
}
.feature-item:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.package-category {
  font-weight: 600;
  color: var(--dark-color) !important;
}

.fas {
  color: var(--gray) !important;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .plans-container {
    padding: 0 40px;
  }
}

@media (max-width: 992px) {
  .hero-container {
    height: 60vh;
  }

  .plan-item {
    flex: 0 0 50%;
  }

  .video-container {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .plans-container {
    padding: 0 20px;
  }

  .plan-item {
    flex: 0 0 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .scroll-arrow {
    width: 36px;
    height: 36px;
  }

  .video-container {
    min-height: 300px;
  }

  .btn-play {
    width: 60px;
    height: 60px;
  }

  .product-features .feature-item {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 0.75rem;
  }

  .feature-icon {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .plans-container {
    padding: 0 15px;
  }

  .luxury-card {
    height: 340px;
  }

  .card-img-top {
    height: 160px;
  }
}

/* View All Packages button */
.btn.btn-primary {
  background-color: var(--white) !important;
  border: 1.5px solid var(--dark) !important;
  color: var(--dark) !important;
}

.btn-primary:hover {
  background-color: var(--dark) !important;
  color: var(--light) !important;
}

/* Details button */
.btn.btn-outline-primary {
  background-color: var(--white) !important;
  border: 1.5px solid var(--dark) !important;
  color: var(--dark) !important;
}

.btn.btn-outline-primary:hover {
  background-color: var(--dark) !important;
  color: var(--light) !important;
}
.product-card:hover .btn-group {
  opacity: 1 !important;
}

.feature-item {
  color: var(--secondary) !important;
}
.feature-item:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.package-category {
  font-weight: 600;
  color: var(--dark-color) !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-container {
    height: 60vh;
  }

  .plan-item {
    width: 48% !important;
  }
}

@media (max-width: 768px) {
  .plan-item {
    width: 100% !important;
  }

  .product-features .feature-item {
    flex-direction: row !important;
    text-align: left !important;
    align-items: center;
    gap: 0.75rem;
  }

  .feature-icon {
    margin-bottom: 0 !important;
    color: var(--secondary) !important;
  }
}

.fas {
  color: var(--gray) !important;
}

/* Process Steps Animation */
.process-step {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--danger, 1) !important;
  background-color: var(--primary) !important;
}

/* Feature Box Hover Effect */
.feature-box {
  transition: transform 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--graphite) !important;
  background-color: var(--silver) !important;
}
