/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero-section {
  position: relative;
  background: url("../Images/hero-bg.png") center center / cover no-repeat;
  min-height: 54vh;
  display: flex;
  padding: 3rem 1rem;
  margin: 0 auto;

  justify-content: center;
  font-family: 'Times New Roman', Times, serif;
}

/* Overlay */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(180, 180, 180, 0.263);
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  align-self: center;
  text-align: center;
}

/* HERO HEADING */
.hero-heading {
  font-weight: 900;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 1.25rem;

  /* Responsive font sizing */
  font-size: clamp(2.4rem, 5.4vw, 3.4rem);
}

/* HERO TEXT */
.hero-text {

  font-weight: 600;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 2rem;

  /* Responsive font sizing */
  font-size: clamp(1.5rem, 2.5vw, 1.25rem);
}

/* HERO BUTTON */
.hero-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  width: 200px; /* same width for both buttons */
  text-decoration: none;
  background-color: #000;
  color: #fff;

  font-size: 1.2rem;
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.hero-button:hover {
  background-color: #222;
  transform: translateY(-2px);
}

/* ============================= */
/* SMALL IPHONES */
/* ============================= */
@media (max-width: 375px) {
  .hero-section {
    min-height: 60vh;
    padding: 2.5rem 1rem;
  }
}



/* ============================= */
/* KEY FEATURES SECTION */
/* ============================= */
.features {
  background-color: #000000fa;
  padding: 2rem 1rem;
}

.features-container {
  font-family: 'Times New Roman', Times, serif;
  letter-spacing: 1px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2rem;
}

/* HEADING */
.section-title,
.features-heading {
  display: flex;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 1rem;

  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
}

.section-title::after,
.section-title::before,
.features-heading::before,
.features-heading::after {
  content: "";
  flex: 1;
  height: 1px;
}

.section-title::before,
.features-heading::before {
  background: linear-gradient(to right, transparent, #fff);
}

.section-title::after,
.features-heading::after {
  background: linear-gradient(to left, transparent, #fff);
}

.section-title span,
.features-heading span {
  padding: 0 20px;
}

/* ============================= */
/* GRID */
/* ============================= */
.features-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD */
.features-row {
  border: 1px solid #fff;
  border-radius: 20px;
  max-width: 300px;
  padding-bottom: 30px;
  margin: 0 auto;
}

/* IMAGE */
.features-photos {
  width: 100%;
  height: auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* TEXT */
.features-subheading {
  margin-top: 20px;
  font-size: 34px;
}

.features-text {
  font-size: 14px;
  padding: 0 10px;
}

/* BUTTON */
.features-button {
  text-decoration: none;
  color: #000;
  background-color: #fff;
  padding: 10px 30px;
  border-radius: 14px;
  display: inline-block;
}

.features-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px #9f9ff7;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .features-rows {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .section-title,
  .features-heading {
    font-size: 32px;
  }

  .features-subheading {
    font-size: 28px;
  }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
  .features-rows {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-title,
  .features-heading {
    font-size: 24px;
    flex-direction: column;
  }

  .section-title::before,
  .section-title::after,
  .features-heading::before,
  .features-heading::after {
    display: none;
  }

  .features-subheading {
    font-size: 22px;
  }

  .features-text {
    font-size: 13px;
  }

  .features-button {
    padding: 8px 20px;
  }
}



/* ============================= */
/* MEMBERSHIP SECTION */
/* ============================= */
.memberships {
  font-family: 'Times New Roman', Times, serif;
  padding: 60px 20px 80px;
  text-align: center;
}

/* HEADING */
.memberships-heading {
  display: flex;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;

  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000;
}

.memberships-subtext {
  margin-bottom: 1.5rem;
}

.memberships-heading::before,
.memberships-heading::after {
  content: "";
  flex: 1;
  height: 1px;
}

.memberships-heading::before {
  background: linear-gradient(to right, transparent, #000);
}

.memberships-heading::after {
  background: linear-gradient(to left, transparent, #000);
}

.memberships-heading span {
  padding: 0 20px;
}

/* ============================= */
/* GRID */
/* ============================= */
.memberships-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

/* CARD */
.memberships-column {
  border: 1px solid #000;
  padding: 30px 20px;
  border-radius: 10px;
}

/* TEXT */
.memberships-subheading {
  font-weight: 400;
  font-size: 30px;
  color: #000;
}

.memberships-text {
  font-size: 18px;
  color: #000;
  margin: 10px 0;
}

/* BUTTON */
.memberships-button {
  background-color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  display: inline-block;
}

.memberships-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px #000000dd;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
  .memberships-heading {
    font-size: 32px;
  }

  .memberships-subheading {
    font-size: 26px;
  }

  .memberships-text {
    font-size: 16px;
  }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
  .memberships-heading {
    font-size: 24px;
    flex-direction: column;
  }

  .memberships-heading::before,
  .memberships-heading::after {
    display: none;
  }

  .memberships-subheading {
    font-size: 22px;
  }

  .memberships-text {
    font-size: 14px;
  }

  .memberships-button {
    padding: 8px 16px;
  }
}



/* ============================= */
/* RELEASE GRID SECTION */
/* ============================= */
.releases {
    padding: clamp(60px, 2vw, 80px) clamp(20px, 5vw, 40px);
    text-align: center;
    background-color: #000000fa;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: clamp(30px, 3vw, 30px);
    max-width: 1200px;
    margin: 0 auto;
}

/* CARD */
.card {
    background: #000000fa;
    border-style: solid;
    border-color: #ffffff;
    padding: clamp(15px, 3vw, 20px);
    border-radius: 15px;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgb(30, 25, 116);
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: clamp(15px, 2.5vw, 18px);
    margin-bottom: 15px;
    font-family: 'Franklin Gothic';
    color: #ffffff;
}

/* BUTTON */
.watch-button {
    background: transparent;
    border: 2px solid #ffffffe1;
    color: #ffffff;
    padding: clamp(6px, 2vw, 8px) clamp(12px, 3vw, 15px);
    font-size: clamp(13px, 2vw, 14px);
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.watch-button:hover {
    background: #ffffff;
    color: #000000;
}

@media (max-width: 480px) {
    .grid {
        grid-template-columns: 1fr;
    }
}



/* ============================= */
/* CONTACT FORM */
/* ============================= */
.contact-section {
    background: #ffffff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    font-family: 'Times New Roman', Times, serif;
}

.contact-container {
    background: rgb(255, 255, 255);
    max-width: 1000px;
    width: 100%;
    padding: 40px;

    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.21);
    text-align: center;
}

.contact-heading {
  font-size: 32px;
  margin-bottom: 10px;
  color: #000;
}

.contact-subtext {
  margin-bottom: 30px;
  color: #000;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #000;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #e2e2e2;
    font-size: 16px;
    transition: 0.2s ease;
    background: #fafafa;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    background-color: #000;
    background: white;
    box-shadow: 0 0 0 3px rgba(224,184,0,0.15);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-button {
    background-color: #000;
    color: rgb(255, 255, 255);
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px #222;
}

/* Hide honeypot */
.honeypot {
    display: none;
}

/* ============================= */
/* RESPONSIVE CONTACT FORM */
/* ============================= */

/* Tablets */
@media (max-width: 992px) {
    .contact-container {
        padding: 40px 30px;
        border-radius: 14px;
    }

    .contact-heading {
        font-size: 28px;
    }
}

/* Phones */
@media (max-width: 600px) {

    .contact-section {
        padding: 50px 15px;
    }

    .contact-container {
        padding: 30px 20px;
        border-radius: 12px;
        box-shadow: none;
    }

    .contact-heading {
        font-size: 24px;
    }

    .contact-subtext {
        font-size: 14px;
    }

    .input-group input,
    .input-group textarea {
        font-size: 15px;
        padding: 12px 14px;
    }

    textarea {
        min-height: 120px;
    }

    .contact-button {
        font-size: 15px;
        padding: 12px;
    }
}



/* ============================= */
/* TESTIMONIAL SECTION */
/* ============================= */
.testimonial-section {
  padding: 4rem 1rem;
  background-color: #ffffff;
}

/* ============================= */
/* HEADING */
/* ============================= */
.testimonial-heading {
  font-family: "Baskerville", serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: bold;
  letter-spacing: 1px;
  color: #000;
  text-align: center;
  margin-bottom: 3rem;
}

/* ============================= */
/* CAROUSEL */
/* ============================= */
#testimonialCarousel {
  position: relative;
  padding: 0 3rem; /* space for arrows */
}

/* ============================= */
/* ROW INSIDE EACH SLIDE */
/* ============================= */
.testimonial-row {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

/* ============================= */
/* TESTIMONIAL BOX */
/* ============================= */
.testimonial-box {
  border: 2px solid #000;
  padding: 1.5rem;
  max-width: 340px;
  width: 100%;
  min-height: 220px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-family: "Baskerville", serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: #000;
  text-align: center;
}

/* Testimonial text */
.testimonial-box p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Name (NO highlight, plain text) */
.testimonial-box footer {
  background: none;
  padding: 0;
  margin-top: 0.5rem;
  font-weight: bold;
  color: #000;
}

/* ============================= */
/* CAROUSEL CONTROLS */
/* ============================= */
.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

/* Solid BLACK arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: none;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 0 0 .708L10.293 8l-5.647 5.646a.5.5 0 0 0 .708.708l6-6a.5.5 0 0 0 0-.708l-6-6a.5.5 0 0 0-.708 0z'/%3E%3C/svg%3E");
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 767px) {
  #testimonialCarousel {
    padding: 0 2.5rem;
  }

  .testimonial-row {
    flex-direction: column;
  }
}