:root {
  --bg: #0B1B2B;
  --muted: #9fb0c3;
  --gold: #d9a24a;
  --gold-2: #ff8c42;
  --card: #0f1416;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column; /* stack children vertically */
  align-items: center;    /* center horizontally */
  justify-content: flex-start; /* start from top vertically */
  background: #111;
  font-family: Arial, sans-serif;
  margin: 0;
  min-height: 100vh; /* make sure body fills viewport height */
  color: #E0F4FF;
}

.wrap {
  max-width: 100%;
  margin: 0 auto;
  padding: 24px;
}

/* HEADER */
header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: rgba(21, 32, 54, 0.9);
}

#site-header {
  width: 100%;
  flex-shrink: 0;
}

.brand-logo .logo {
  height: 150px;
  width: 150px;
  max-width: 100%;
  animation: smooth-sway 2s ease-in-out infinite;
}

.header-text-group {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}

.brand-text {
  letter-spacing: 0.06em;
  color: #7FFF00;
  font-weight: 700;
  animation: smooth-sway 2s ease-in-out infinite;
}

.brand-sub-text {
  font-weight: 700;
  color: #FFFFFF;
}

@media (min-width: 601px) {
  .brand-text {
    font-size: 50px;
  }
  .brand-sub-text {
    font-size: 34px;
  }
  .brand-sub-text p {
    margin: 0;
  }
}

@media (max-width: 600px) {
  .brand-text {
    font-size: 28px;
  }
  .brand-sub-text {
    font-size: 14px;
  }
}

/* NAVIGATION */
nav.nav {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

nav.nav a.nav-text {
  color: #E0F4FF;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}

nav.nav a.nav-text:hover {
  color: #d9a24a;
}

/* CONSULTATION FRAME */
.consultation-frame {
  background: rgba(21, 32, 54, 0.85);
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 2px solid #d9a24a;
  max-width: 600px;
  margin: 40px auto;
  color: #E0F4FF;
}

.consultation-frame h1 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 24px;
  color: #d9a24a;
  text-align: center;
}

.consultation-frame p {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 20px;
}

.consultation-frame ul {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  nav.nav {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .brand-logo .logo {
    height: 120px;
    width: 120px;
  }
  .consultation-frame {
    margin-left: 8px;
    margin-right: 8px;
  }
}

/* ANIMATION */
@keyframes smooth-sway {
  0%   { transform: translateX(-5px); }
  50%  { transform: translateX(5px); }
  100% { transform: translateX(-5px); }
}

/* CAROUSEL */
.carousel {
  width: 100vw;
  height: 70vh;
  overflow: hidden;
  position: relative;
  background: #000;
}
.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .45s cubic-bezier(.2,.9,.2,1);
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative; /* IMPORTANT for absolute text overlay */
}

.slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.hero-inner {
  position: absolute;
  bottom: 20%;
  left: 5%;
  right: 5%;
  color: white;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.75);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-copy h1 {
  font-size: 40px !important; /* override inline */
  line-height: 1.2;
  margin: 0;
  font-weight: 900;
}

.hero-copy p.lead {
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
  font-size: 30px !important; /* override inline */
}

/* Carousel buttons */
.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border: 0;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.prev {
  left: 12px;
}

.next {
  right: 12px;
}

.dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.dot.active {
  background: #fff;
}

/* New container for the top buttons */
.carousel-buttons {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 16px;
}

.btn-primary,
.btn-secondary {
  padding: 10px 18px;
  font-size: 30px;
  font-weight: 700;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #BF00FF;
}

.btn-primary:hover {
  background-color: #9400cc;
}

.btn-secondary {
  background-color: #1DA1F2; /* Twitter blue as example */
}

.btn-secondary:hover {
  background-color: #0d8ddb;
}

/* Responsive text and overlay adjustments for mobile */
@media (max-width: 600px) {
  .hero-inner {
    top: auto;
    bottom: 17%;
    left: 5%;
    right: 5%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50px;
  }

  .hero-copy h1 {
    font-size: 20px !important; /* override inline font-size */
    line-height: 1.2;
  }

  .hero-copy p.lead {
    font-size: 15px !important;
    font-weight: 600;
  }

  .carousel-buttons {
    display: flex;          /* ensure flex */
    flex-direction: row;    /* side-by-side */
    gap: 10px;
    bottom: 7%;
    justify-content: center; /* optional: center buttons horizontally */
  }

  .btn-primary,
  .btn-secondary {
    padding: 2px 18px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    color: white;
    min-width: 140px;           /* ensure buttons don’t get too narrow */
    height: 44px;               /* fixed height for consistency */
    line-height: 1;             /* avoid extra vertical space */
    transition: background-color 0.3s ease;
  }
}
/* Container to center content and limit width */
      .wrap_about_me {
        max-width: 1350px;
        margin: 0 auto; /* centers horizontally */
        padding: 0 20px; /* space on left and right */
        box-sizing: border-box; /* include padding in width */
        overflow-x: hidden; /* prevent horizontal scroll */
      }

      /* Section styling */
      .about-me {
        margin-top: 60px;
        padding: 40px;
        border-radius: 16px;
        background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
        border: 1px solid rgba(255,255,255,0.05);
        box-sizing: border-box;
      }

      /* Headings */
      .about-me-title {
        font-family: 'Playfair Display', serif;
        font-size: 45px;
        font-weight: 700;
        margin-bottom: 30px;
        color: #eb0076;
      }

      /* Paragraph base style */
      .about-me-paragraph {
        font-size: 30px;
        line-height: 1.7;
        color: #E0F4FF;
        margin-bottom: 18px;
      }
      .about-me-quote{
      border-left: 4px solid var(--gold);
      padding-left: 16px;
      margin: 20px 0;
      color: var(--muted);
      font-style: italic;
      font-size: 3.3rem;
      line-height: 1.6;
    }

      /* Example for specific paragraphs with different colors */
      .about-me-highlight {
        font-size: 30px;
        line-height: 1.7;
        color: #d9a24a;
      }
      .about-me-warning {
        font-size: 30px;
        line-height: 1.7;
        color: #FF6B6B;
      }
      .about-me-highlight-paragraph {
  font-size: 40px;
  line-height: 1.7;
  color: #FFD166;
  margin-bottom: 18px;
}
.about-me-list {
  font-size: 28px;
  line-height: 1.7;
  color: #E0F4FF;
  margin-bottom: 18px;
  padding-left: 40px;
}
.section-heading-center {
  font-family: 'Playfair Display', serif;
  font-size: 62px;
  font-weight: 700;
  margin-top: 60px;
  margin-bottom: 32px;
  color: #eb0076;
  text-align: center;
}
.warning-highlight {
  background-color: #ffdde1;
  color: #b31246;
  font-weight: 700;
  font-style: italic;
  padding: 4px 8px;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(179, 18, 70, 0.6);
}
.about-me-list-item {
  font-size: 28px;
  line-height: 1.6;
  color: #E0F4FF;
  margin-left: 40px;
  margin-bottom: 12px;
}
.gradient-box {
  font-size: 28px;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(90deg, #7c4dff, #ff5ca8);
  padding: 20px 28px;
  border-radius: 14px;
  margin: 0 auto 24px auto;
  max-width: 900px;
  box-shadow: 0 4px 12px rgba(252, 87, 157, 0.4);
}
.gradient-box-wide {
  font-size: 30px;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(90deg, #7c4dff, #ff5ca8);
  padding: 20px 28px;
  border-radius: 14px;
  margin: 0 60px 24px 60px;
  box-shadow: 0 4px 12px rgba(252, 87, 157, 0.4);
}
      /* Responsive images inside about-me and testimonial-images */
      .about-me img,
      .testimonial-images img {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.4);
        margin: 30px 0;
        object-fit: cover;
      }

      /* Testimonial images container */
      .testimonial-images {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
      }

      .testimonial-images img {
        flex: 1 1 300px; /* flexible but minimum 300px */
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      }

.reels-wrapper {
  display: flex;
  gap: 40px; /* space between reels */
  justify-content: center; /* center horizontally */
  flex-wrap: nowrap; /* no wrapping to next line */
}
.reel-container {
  position: relative;
  width: 17vw;   /* same as your reel width */
  height: 60vh;  /* same as your reel height */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  border: 5px solid #EB0076;
  cursor: pointer;
}

.reel-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.play-button:hover {
  background: rgba(0,0,0,0.8);
}

/* The actual "play" triangle */
.play-button::before {
  content: "";
  display: block;
  margin-left: 5px;
  border-style: solid;
  border-width: 18px 0 18px 30px;
  border-color: transparent transparent transparent white;
}

.btn-bottom{
  padding: 10px 18px;
  font-size: 30px;
  font-weight: 700;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease;
  background-color: #BF00FF;
}
.btn-bottom:hover {
  background-color: #9400cc;
}


/* Responsive for smaller screens */
@media (max-width: 768px) {
     .wrap_about_me {
        max-width: 80%;       /* Allow full width of the screen */
        padding-left: 1%;    /* Some padding on sides */
        padding-right: 1%;
        box-sizing: border-box;
      }
    .about-me {
        padding: 20px;
        width: 100%;           /* Ensure it doesn’t overflow */
        max-width: 600px;      /* Optional: limit max width for readability */
        }
      .about-me-title {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 30px;
        color: #eb0076;
      }
      /* Paragraph base style */
      .about-me-paragraph {
        font-size: 14px;
        line-height: 1.7;
        color: #E0F4FF;
        margin-bottom: 18px;
      }
      .about-me-quote{
          border-left: 4px solid var(--gold);
          padding-left: 16px;
          margin: 20px 0;
          color: var(--muted);
          font-style: italic;
          font-size: 1.3rem;
          line-height: 1.6;
        }

      /* Example for specific paragraphs with different colors */
      .about-me-highlight {
        font-size: 20px;
        line-height: 1.3;
        color: #d9a24a;
      }
      .about-me-warning {
        font-size: 20px;
        line-height: 1.7;
        color: #FF6B6B;
      }
      .about-me-highlight-paragraph {
          font-size: 20px;
          line-height: 1.3;
          color: #FFD166;
          margin-bottom: 18px;
        }
    .about-me-list {
      font-size: 20px;
      line-height: 1.7;
      color: #E0F4FF;
      margin-bottom: 18px;
      padding-left: 40px;
    }
    .section-heading-center {
      font-family: 'Playfair Display', serif;
      font-size: 38px;
      font-weight: 700;
      margin-top: 60px;
      margin-bottom: 32px;
      color: #eb0076;
      text-align: center;
    }
    .warning-highlight {
      background-color: #ffdde1;
      color: #b31246;
      font-weight: 700;
      font-style: italic;
      padding: 4px 8px;
      border-radius: 8px;
      box-shadow: 0 0 6px rgba(179, 18, 70, 0.6);
    }
    .about-me-list-item {
      font-size: 20px;
      line-height: 1.6;
      color: #E0F4FF;
      margin-left: 40px;
      margin-bottom: 12px;
    }
    .gradient-box {
      font-size: 12px;
      line-height: 1.6;
      color: #ffffff;
      background: linear-gradient(90deg, #7c4dff, #ff5ca8);
      padding: 20px 28px;
      border-radius: 14px;
      margin: 0 auto 24px auto;
      max-width: 900px;
      box-shadow: 0 4px 12px rgba(252, 87, 157, 0.4);
    }
    .gradient-box-wide {
      font-size: 14px;
      line-height: 1.6;
      color: #ffffff;
      background: linear-gradient(90deg, #7c4dff, #ff5ca8);
      padding: 20px 28px;
      border-radius: 14px;
      margin: 0 auto 24px auto;
      box-shadow: 0 4px 12px rgba(252, 87, 157, 0.4);
    }
    .btn-bottom {
          font-size: 14px;
          padding: 14px 30px;
        }
        .testimonial-images {
          flex-direction: column;
          gap: 15px;
        }
      }