/* ===== Variables / Colors ===== */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("background.jpg") no-repeat;
  background-size: cover; /* make it cover the whole area */
  background-position: center 30%; /* horizontal center, vertical 30% down */
  opacity: 0.3;
  z-index: -1;
}

:root {
  --light-bg: #ece2fd;
  --mid-bg: #d4c9d9;
  --dark-bg: #2d2d2f;
  --accent1: #ab97de;
  --accent2: #c6b4ea;
  --text-dark: #2d2d2f;
  --text-light: #ffffff;
}

/* ===== Base Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Comfortaa", cursive;
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

section {
  padding: 30px 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 80px; /* header height + spacing */
}

h1,
h2,
h3 {
  color: var(--accent1);
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
  text-align: center;
}

h2 {
  font-size: 2rem;
  text-align: center;
}

p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* ===== Hero / Header ===== */
.hero {
  background-color: var(--light-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding: 0 20px;
}

.hero h1 {
  font-size: 4rem;
}

.hero h2 {
  font-size: 2rem;
  margin-top: 10px;
}

/* ===== About Section ===== */
.about {
  text-align: center;
}

.about img {
  border-radius: 50%;
  width: 200px;
  margin-bottom: 20px;
  border: 4px solid var(--accent2);
}

/* ===== Services Section ===== */
.services {
  background-color: var(--light-bg);
  text-align: center;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  background-color: var(--accent2);
  color: var(--text-light);
  padding: 15px;
  margin: 10px 0;
  border-radius: 10px;
  font-weight: bold;
  transition: transform 0.3s;
}

.services li:hover {
  transform: scale(1.05);
}

/* ===== CONTACT SECTION ===== */
.contact {
  color: #2d2d2f;
  text-align: center;
  padding: 80px 20px;
  background-color: var(--light-bg);
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #2d2d2f;
}

.contact p {
  font-size: 1.1rem;
  margin: 10px 0;
  line-height: 1.6;
  color: #2d2d2f;
}

.contact a {
  color: #2d2d2f;
  text-decoration: underline;
  font-weight: 600;
}

.contact a:hover {
  text-decoration: none;
  opacity: 0.9;
}

.contact-cta {
  margin-top: 25px;
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background-color: var(--accent2);
  color: #2d2d2f;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-button:hover {
  background-color: #d4c9d9;
  transform: translateY(-2px);
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 20px;
  background-color: var(--dark-bg);
  color: var(--text-light);
}

/* ===== Responsive ===== */

/* ===== HEADER / NAV ===== */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--accent1);
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 15px 0;
  margin: 0;
}

nav li {
  margin: 0 15px;
}

nav a {
  color: var(--text-light);
  font-weight: bold;
  font-size: 1rem;
  padding: 5px 10px;
  transition: background 0.3s, color 0.3s;
  border-radius: 5px;
}

nav a:hover {
  background-color: var(--accent2);
  color: var(--text-dark);
}

/* ===== WHY CHOOSE JADE SECTION ===== */
.why {
  text-align: center;
  padding: 40px 10px;
}

.why h2 {
  color: var(--accent1);
  margin-bottom: 30;
}

.why ul {
  list-style: none;
  margin: 0 auto 30px;
  padding: 0;
  max-width: 600px;
  text-align: left;
}

.why li {
  background-color: var(--accent2);
  color: var(--text-light);
  margin: 8px 0;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: bold;
  transition: transform 0.3s, background 0.3s;
}

.why li:hover {
  transform: scale(1.03);
  background-color: var(--accent1);
}

.why-message {
  margin: 30px auto;
  max-width: 700px;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark-bg);
}

.why h3 {
  margin: 20px 0 20px;
  color: var(--accent1);
}

blockquote {
  font-style: italic;
  color: #2d2d2f;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  background: var(--accent2);
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
  border-left: 4px solid #9a83b4;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

/* ===== ABBA SHOW SECTION ===== */
#abba-show {
  text-align: center;
  padding: 25px 20px;
}

/* Layout: Text left, Image right */
.abba-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 40px;
  flex-wrap: wrap; /* stacks nicely on mobile */
}

.abba-text {
  flex: 1;
  min-width: 280px;
}

.abba-text ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.abba-text li {
  background-color: var(--accent2);
  margin: 12px 0;
  padding: 12px 18px;
  border-radius: 10px;
  color: white;
  font-size: 1.05rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Image styling */
.abba-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.abba-image img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 16px;
  border: 4px solid #d4c9d9;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.abba-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Quote */
#abba-show blockquote {
  font-style: italic;
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  background: var(--accent2);
  padding: 20px;
  border-left: 4px solid #9a83b4;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

/* ===== TESTIMONIALS SECTION ===== */

.testimonials {
  text-align: center;
  color: #204b57;
  padding: 30px 20px;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #4b2e83;
}

.testimonial {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px 40px;
  margin: 20px auto;
  max-width: 900px;
  text-align: left;
  line-height: 1.8;
}

.testimonial p {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.testimonial cite {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #4b2e83;
  text-align: right;
}

.back-button {
  display: inline-block;
  margin: 20px auto;
  padding: 12px 25px;
  background-color: var(--accent2);
  color: var(--text-dark);
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.back-button:hover {
  background-color: var(--accent1);
  transform: translateY(-2px);
}

.music-session-image {
  text-align: center;
  margin: 20px 0;
}

.music-session-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  body {
    margin-top: 20px;
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .hero h1 {
    font-size: 3rem;
    max-width: 500px;
  }
  .video-section iframe {
    height: 250px;
  }

  /* Make header smaller */
  header nav ul {
    padding: 1px 0;
  }

  nav a {
    font-size: 0.9rem;
    padding: 1px 3px;
  }

  section {
    padding-top: 60px; /* smaller padding to match smaller header */
  }

  .why {
    padding: 60px 15px;
  }

  .why li {
    font-size: 0.95rem;
    padding: 10px 12px;
  }

  .video-wrapper iframe {
    height: 250px;
  }

  .abba-image img {
    max-width: 280px;
    border-radius: 12px;
  }

  .abba-section {
    flex-direction: column;
    text-align: center;
  }

  .abba-text ul {
    text-align: center;
  }

  .abba-image img {
    max-width: 280px;
  }

  .contact {
    padding: 60px 20px;
  }

  .contact h2 {
    font-size: 1.8rem;
  }

  .contact-button {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    max-width: 90%;
  }

  .testimonials h2 {
    font-size: 1.8rem;
  }
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  width: 25px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1100;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #2d2d2f;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  body::before {
    background: url("background2.jpg") no-repeat center center;
    background-size: contain; /* ensures the whole image fits */
    background-position: center center; /* keeps both people in view */
    opacity: 0.3;
  }
  header nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background-color: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    transition: right 0.4s ease;
    box-shadow: -3px 0 15px rgba(0, 0, 0, 0.1);
  }

  header nav ul.active {
    right: 0;
  }

  nav a {
    font-size: 1.2rem;
    color: #2d2d2f;
  }

  .hamburger {
    display: flex;
  }

  /* Animate hamburger to X */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  /* Hide desktop nav until opened */
  nav ul {
    display: flex;
  }
}

/* ===== Video Section ===== 
.video-section {
  background-color: var(--light-bg);
  text-align: center;
}

.video-section iframe {
  width: 100%;
  max-width: 800px;
  height: 450px;
  border-radius: 12px;
  border: none;
}

 ===== GALLERY & VIDEO SECTION ===== 
#gallery {
  background-color: var(--light-bg);
  text-align: center;
  padding: 80px 20px;
}

#gallery h3 {
  font-size: 1.8rem;
  color: #2d2d2f;
  margin-bottom: 30px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.gallery img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.video-wrapper {
  max-width: 700px;
  margin: 0 auto 30px;
}

.video-wrapper iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  border: none;
}

*/
