/* ============================= */
/* STOP WHITE SPACE ON ROTATION */
/* ============================= */

/* 1) Lock the page to the viewport and prevent horizontal overflow */
html,
body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: "Baskerville", serif;
  background-color: #ffffff;

}

body {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* ============================= */
/* FULL-WIDTH SECTIONS */
/* ============================= */
section {
  width: 100%;
  margin: 0;
}



/* ============================= */
/* NAVBAR */
/* ============================= */
.navbar {
  background-color: #000;
  padding: 0.75rem 1rem;
}

/* Brand container */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;

  /* CRITICAL: allow shrinking on Android */
  min-width: 0;
}

/* Logo */
.navbar-logo {
  width: 48px;
  height: auto;
}

/* Brand text must be allowed to shrink */
.brand-text {
  font-family: "Baskerville", serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff;

  /* PREVENT OVERLAP */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  /* THIS IS THE ANDROID FIX */
  min-width: 0;
  max-width: 100%;
}

/* Nav links */
.navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #ffffff !important;
}


/* ============================= */
/* HAMBURGER TOGGLE (FORCED WHITE) */
/* ============================= */
.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.6);
  margin-left: 1rem;
  
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Replace Bootstrap SVG with white stroke */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================= */
/* MOBILE MENU */
/* ============================= */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #000;
    padding: 1rem 0;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 0;
    font-size: 16px;
  }
}

/* ============================= */
/* TABLET */
/* ============================= */
@media (min-width: 768px) {
  .brand-text {
    font-size: 22px;
  }

  .navbar-logo {
    width: 56px;
  }
}

/* ============================= */
/* DESKTOP */
/* ============================= */
@media (min-width: 992px) {
  .brand-text {
    font-size: 26px;
    letter-spacing: 1.5px;
  }

  .navbar-logo {
    width: 70px;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ============================= */
/* SMALL IPHONES */
/* ============================= */
@media (max-width: 375px) {
  .brand-text {
    font-size: 18px;
  }

  .navbar-logo {
    width: 42px;
  }
}





/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero-section {
  position: relative;
  background: url("../Photos/hero-bg.png") center / cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

/* Overlay */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(180, 180, 180, 0.75);
}

/* Content container */
.hero-section .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

/* ============================= */
/* HERO HEADING */
/* ============================= */
.hero-heading {
  font-family: "Baskerville", serif;
  font-weight: bold;
  color: #000;
  line-height: 1.2;
  margin-bottom: 1.25rem;

  /* Responsive font sizing */
  font-size: clamp(2rem, 5vw, 3rem);
}

/* ============================= */
/* HERO TEXT */
/* ============================= */
.hero-text {
  font-family: "Baskerville", serif;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  margin-bottom: 2rem;

  /* Responsive font sizing */
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

/* ============================= */
/* HERO BUTTON */
/* ============================= */
.hero-content-button {
  display: inline-block;
  text-decoration: none;
  background-color: #000;
  color: #fff;
  font-family: "Baskerville", serif;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-content-button:hover {
  background-color: #222;
  transform: translateY(-2px);
}

/* ============================= */
/* SMALL IPHONES */
/* ============================= */
@media (max-width: 375px) {
  .hero-section {
    min-height: 60vh;
    padding: 2.5rem 1rem;
  }
}





/* ============================= */
/* CONTENT SECTION */
/* ============================= */
#music {
  background-color: #000;
  padding: 3rem 1rem;
}

/* Section Heading */
.content-heading {
  font-family: "Baskerville", serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: bold;
  letter-spacing: 1px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2rem;
}

/* ============================= */
/* CONTENT GRID */
/* ============================= */
.content-row {
  display: grid;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================= */
/* PHONES – 2 IMAGES */
/* ============================= */
@media (max-width: 767px) {
  .content-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .photos:nth-child(n + 3) {
    display: none;
  }
}

/* ============================= */
/* TABLETS – 3 IMAGES */
/* ============================= */
@media (min-width: 768px) and (max-width: 991px) {
  .content-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .photos:nth-child(n + 4) {
    display: none;
  }
}

/* ============================= */
/* DESKTOP – 5 IMAGES */
/* ============================= */
@media (min-width: 992px) {
  .content-row {
    grid-template-columns: repeat(5, 1fr);
  }

  .photos:nth-child(n + 6) {
    display: none;
  }
}

/* ============================= */
/* IMAGE WRAPPER */
/* ============================= */
.photos {
  width: 100%;
}

/* Images */
.photos img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}







/* ============================= */
/* MEMBERSHIP SECTION */
/* ============================= */
.membership-section {
  padding: 4rem 1rem;
  background-color: #ffffff;
}

/* ============================= */
/* HEADING */
/* ============================= */
.membership-heading {
  font-family: "Baskerville", serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: bold;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 1.5rem;
}

/* ============================= */
/* TEXT */
/* ============================= */
.membership-text {
  font-family: "Baskerville", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #000;
  max-width: 700px;
  margin: 0.75rem auto;
  line-height: 1.6;
}

/* ============================= */
/* BUTTON */
/* ============================= */
.membership-button {
  display: inline-block;
  margin-top: 1.75rem;
  text-decoration: none;
  background-color: #000;
  color: #fff;
  font-family: "Baskerville", serif;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
}

.membership-button:hover {
  background-color: #222;
  transform: translateY(-2px);
}

/* ============================= */
/* TABLET */
/* ============================= */
@media (min-width: 768px) {
  .membership-text {
    font-size: 1.05rem;
  }
}

/* ============================= */
/* DESKTOP */
/* ============================= */
@media (min-width: 992px) {
  .membership-text {
    font-size: 1.1rem;
  }
}





/* ============================= */
/* CONTACT FORM */
/* ============================= */
.contact-section {
    background: #ffffff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.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.08);
    text-align: center;
}

.contact-heading {
  font-family: "Baskerville", serif;
  color: #000;
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-subtext {
  font-family: "Baskerville", serif;
    margin-bottom: 30px;
    color: #000000d6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.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;
  }
}






/* ============================= */
/* FOOTER */
/* ============================= */
footer {
  background-color: #000;
  color: #fff;
}

/* ============================= */
/* FOOTER MAIN BAR */
/* ============================= */
.footer {
  padding: 2rem 1rem;
}

/* Layout */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================= */
/* FOOTER LOGO / ADDRESS */
/* ============================= */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: "Baskerville", serif;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #ffffff;
  line-height: 1.4;
}

.footer-logo img {
  width: 60px;
  height: auto;
}

/* ============================= */
/* FOOTER NAV LINKS */
/* ============================= */
.footer-foot {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-item {
  list-style: none;
}

.footer-link {
  text-decoration: none;
  font-family: "Baskerville", serif;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #ffffff;
}

.footer-link:hover {
  text-decoration: underline;
}

/* ============================= */
/* POLICIES */
/* ============================= */
.policies {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  background-color: #ffffff;
  margin: 0;
}

.policy_text {
  text-decoration: none;
  font-family: "Baskerville", serif;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #000;
}

.policy_text:hover {
  text-decoration: underline;
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 767px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-foot {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-logo {
    justify-content: center;
    text-align: center;
  }
}

