/*-------------- Music Videos --------------*/

.musicvid-header {

  background: url('WebsiteImages/MusicVideo.png') center/cover no-repeat;
}

.musicvid-packages {
  width: 100%;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.musicvid-packages h2 {
  font-size: 3rem;
  color: #fc3f40;
  margin-bottom: 20px;
}

.musicvid-packages p {
  font-size: 1.1rem;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* ===== Layout: Same as Wedding Packages ===== */
.musicvid-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

/* ===== Card Styling ===== */
.musicvid-card {
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  width: 30%;
  min-width: 300px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}

/* Dark overlay tint for readability */
.musicvid-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.musicvid-card * {
  position: relative;
  z-index: 1;
}

/* Hover glow per tier */
.musicvid-card.bronze:hover {
  box-shadow: 0 0 25px rgba(205, 127, 50, 0.9);
  transform: translateY(-5px);
}

.musicvid-card.silver:hover {
  box-shadow: 0 0 25px rgba(192, 192, 192, 0.9);
  transform: translateY(-5px);
}

.musicvid-card.gold:hover {
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.9);
  transform: translateY(-5px);
}

/* ===== Text Styling ===== */
.musicvid-card h3 {
  color: #fc3f40;
  font-size: 2.2rem;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.musicvid-card p {
  color: #ddd;
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ===== List Styling ===== */
.musicvid-card ul {
  list-style: none;
  padding-left: 0;
  margin: 15px auto 30px;
  text-align: left;
  max-width: 85%;
}

.musicvid-card ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #ddd;
  font-size: 1rem;
}

.musicvid-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background: url("WebsiteImages/redtriangle.png") no-repeat center;
  background-size: contain;
}

/* ===== Button ===== */
.musicvid-btn {
  display: inline-block;
  background: #fc3f40;
  color: #fff;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 15px;
}

.musicvid-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(252, 63, 64, 0.8);
}

/* ===== Responsive Layout ===== */
@media (max-width: 1000px) {
  .musicvid-container {
    flex-direction: column;
    align-items: center;
  }

  .musicvid-card {
    width: 90%;
  }
}

/* ===== Recent Music Video Section ===== */
/* ===== Recent Music Video Section ===== */
.musicvid-feature {
  background: linear-gradient(to bottom, #000, #000);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.musicvid-feature-box {
  background: url('WebsiteImages/boxes4.jpg') center/cover no-repeat;
  border-radius: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 50px;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  transition: all 0.3s ease; /* enables smooth hover */
}

/* Hover Glow Effect */
.musicvid-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(252, 63, 64, 0.8); /* red glow like others */
}

/* Black tint overlay */
.musicvid-feature-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  z-index: 1;
}

/* Two-column layout */
.musicvid-feature-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 2;
  text-align: left;
}

/* Left: text content */
.musicvid-feature-text {
  flex: 1 1 45%;
  color: #fff;
}

.musicvid-feature h2 {
  color: #fc3f40;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.musicvid-feature p {
  color: #ddd;
  font-size: 0.9rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.musicvid-feature-btn {
  display: inline-block;
  background: #fc3f40;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.musicvid-feature-btn:hover {
  background: #ff5758;
  box-shadow: 0 0 20px rgba(252, 63, 64, 0.7);
}

/* Right: video */
.musicvid-feature-video {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.musicvid-feature-video iframe {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16 / 9;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
  transition: all 0.3s ease;
}

/* Subtle glow on hover for the video too */
.musicvid-feature-box:hover{
  box-shadow: 0 0 25px rgba(252, 63, 64, 0.8);
}

/* Responsive layout */
@media (max-width: 900px) {
  .musicvid-feature-content {
    flex-direction: column;
    text-align: center;
  }
  .musicvid-feature-text, 
  .musicvid-feature-video {
    flex: 1 1 100%;
  }
  .musicvid-feature h2 {
    font-size: 2.2rem;
  }
}
