/* 🌙 GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  color: #3a2c4a;
  background: linear-gradient(to bottom, #f8ecff, #fff2fa, #fdf7f9);
  overflow-x: hidden;
  position: relative;
}

canvas#starfield {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* 🌸 NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  z-index: 10;
  animation: fadeDown 1.5s ease;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.site-logo {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(222, 175, 255, 0.4);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #3a2c4a;
  letter-spacing: 1px;
}

.navbar nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #4a2f63;
  transition: all 0.3s ease;
  font-weight: 500;
}

.navbar nav a:hover {
  color: #d29ce3;
}

/* 🌙 HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 2rem;
  overflow: hidden;

  background: 
    linear-gradient(to bottom, rgba(255, 245, 255, 0) 70%, rgba(255, 245, 255, 1) 100%),
    url('pics/tbnbg.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(255,245,255,0) 0%, #fff2fa 100%);
  z-index: 1;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #3a2c4a;
}

.hero p {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #6b4f83;
}

.hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  object-fit: cover;
  box-shadow: 0 0 25px rgba(222, 175, 255, 0.6);
  animation: float 4s ease-in-out infinite;
}

.btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #d7aefb, #f7c9ec);
  color: white;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(190, 120, 255, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(190, 120, 255, 0.5);
}

/* 🌙 HERO OVERLAY LAYOUT */
.hero-overlay {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 3rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

/* Left content */
.hero-left {
  text-align: center;
  flex: 1;
  min-width: 300px;
}

/* Right image (Nitasha's photo) */
.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo {
  width: 330px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 35px rgba(180, 120, 230, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.5);
  filter: brightness(1.05) saturate(1.1);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  animation: fadeIn 2s ease forwards;
}

.hero-photo:hover {
  transform: scale(1.03);
  box-shadow: 0 0 45px rgba(200, 150, 255, 0.6);
}

/* ✨ Fade-in effect */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🌸 ABOUT SECTION */
.about {
  position: relative;
  padding: 8rem 2rem;
  text-align: center;
  color: #3a2c4a;
  font-family: 'Playfair Display', serif;
  line-height: 1.7;
  overflow: hidden;
  padding-left: 1%;
  padding-right: 1%;

  background: 
    linear-gradient(to bottom, rgba(255,245,255,1) 0%, rgba(255,245,255,0.8) 10%, rgba(255,245,255,0) 30%),
    url('pics/tbnbg2.jpeg'),
    linear-gradient(to bottom, rgba(255,245,255,0) 70%, rgba(255,245,255,1) 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about::before,
.about::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 1;
  pointer-events: none;
}

.about h2 {
  font-size: 2rem;
  color: #5b3b78;
  margin-bottom: 1rem;
}

.about em {
  color: #a377cc;
  font-style: italic;
  font-size: 1.1rem;
}

.about p {
  max-width: 750px;
  margin: 0.5rem auto;
  font-size: 1rem;
  color: #4c3c57;
}

/* Section Fade Effects */
.about::before {
  top: 0;
  background: linear-gradient(to top, rgba(255,245,255,0) 0%, #fff2fa 100%);
}
.about::after {
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255,245,255,0) 0%, #fff2fa 100%);
}

/* ✨ Section Divider */
.section-divider {
  width: 100%;
  height: 120px;
  background: radial-gradient(circle at center, rgba(230, 200, 255, 0.3) 0%, rgba(255,255,255,0) 70%);
}

/* 🌙 LEARN TAROT SECTION */
.videos {
  position: relative;
  padding: 8rem 2rem;
  text-align: center;
  color: #3a2c4a;
  font-family: 'Playfair Display', serif;
  overflow: hidden;
  z-index: 1;

  background:
    linear-gradient(to bottom, rgba(255,245,255,1) 0%, rgba(255,245,255,0.8) 10%, rgba(255,245,255,0) 30%),
    url('pics/tbnbg3.jpeg'),
    linear-gradient(to bottom, rgba(255,245,255,0) 70%, rgba(255,245,255,1) 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.videos::before,
.videos::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 1;
  pointer-events: none;
}

.videos::before {
  top: 0;
  background: linear-gradient(to top, rgba(255,245,255,0) 0%, #fff2fa 100%);
}

.videos::after {
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255,245,255,0) 0%, #fff2fa 100%);
}

.video-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.video-card {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  width: 300px;
  height: 200px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(220, 180, 255, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(190, 120, 255, 0.5);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* 🌟 TESTIMONIALS WORLD MAP */
.testimonials {
  position: relative;
  padding: 8rem 2rem;
  text-align: center;
  color: #3a2c4a;
  background:
    linear-gradient(to bottom, rgba(255,245,255,1) 0%, rgba(255,245,255,0.8) 10%, rgba(255,245,255,0) 30%),
    url('pics/tbnbg4.jpeg'),
    linear-gradient(to bottom, rgba(255,245,255,0) 70%, rgba(255,245,255,1) 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.testimonials h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #5b3b78;
}

.section-subtitle {
  font-size: 1rem;
  color: #6d558d;
  margin-bottom: 3rem;
}

/* 🌟 TESTIMONIALS CAROUSEL */
.testimonials {
  position: relative;
  padding: 8rem 2rem;
  text-align: center;
  color: #3a2c4a;
  background:
    linear-gradient(to bottom, rgba(255,245,255,1) 0%, rgba(255,245,255,0.8) 10%, rgba(255,245,255,0) 30%),
    url('pics/tbnbg4.jpeg'),
    linear-gradient(to bottom, rgba(255,245,255,0) 70%, rgba(255,245,255,1) 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.testimonials h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #5b3b78;
}

.section-subtitle {
  font-size: 1rem;
  color: #6d558d;
  margin-bottom: 3rem;
}

.testimonial-map {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.testimonial-map img {
  width: 90%;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 0 35px rgba(190, 140, 255, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-map img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 45px rgba(190, 140, 255, 0.6);
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
  gap: 1rem;
}

.testimonial-card {
  flex: 0 0 300px;
  background: rgba(255,255,255,0.4);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 0 25px rgba(200,150,255,0.4);
  font-style: italic;
  line-height: 1.6;
  color: #4c3c57;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(190, 120, 255, 0.5);
}

.testimonial-card span {
  display: block;
  margin-top: 0.8rem;
  font-weight: 600;
  color: #a377cc;
}

.testimonial-nav {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.testimonial-nav button {
  border: none;
  background: linear-gradient(135deg, #d7aefb, #f7c9ec);
  color: white;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(190, 120, 255, 0.4);
  transition: all 0.3s ease;
}

.testimonial-nav button:hover {
  transform: scale(1.1);
}

/* 🎵 Floating Music Player */
.music-player {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 20;
}

#music-toggle {
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(180, 140, 255, 0.3);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#music-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(180, 140, 255, 0.5);
}

#music-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 6px rgba(190, 120, 255, 0.5));
}

/* 💫 BOOK A READING */
.book {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(to bottom, #eee9ad, #ac97b5, #725477);
  color: #3a2c4a;
}

/* ✨ Top Blur Fade Effect */
.book::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), transparent);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.book-overlay {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1000px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.35);
  border-radius: 30px;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 0 25px rgba(190, 150, 250, 0.25);
  text-align: center;
}

.booking-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 2rem;
}

.left-side,
.right-side {
  flex: 1;
}

/* 👩‍🦰 Nitasha Photo */
.nitasha-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 20%;
  box-shadow: 0 0 25px rgba(170, 120, 230, 0.35);
  margin-bottom: 1rem;
  border: 3px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.nitasha-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(190, 150, 255, 0.5);
}

/* 📏 Divider */
.divider {
  width: 2px;
  height: 220px; /* extended length */
  background: linear-gradient(to bottom, transparent, #7d5ca5, transparent);
  opacity: 0.6;
}

/* 🌸 Contact Icons */
.contact-icons {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 1.5rem;
}

.contact-icons img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(190, 150, 255, 0.3);
}

.contact-icons img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(190, 150, 255, 0.6);
}

/* ✨ Left Side Adjustments */
.left-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-left: 2rem; /* Reduced from padding-left: 8%; for better balance */
  text-align: left;
}

.left-side h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: #4b2c63;
  margin-bottom: 0.4rem;
  letter-spacing: 1px;
}

.left-side p {
  font-size: 1.2rem;
  color: #7d5ca5;
  font-weight: 500;
}

/* ✨ Nitasha Photo */
.nitasha-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 20%;
  box-shadow: 0 0 25px rgba(170, 120, 230, 0.35);
  margin-bottom: 1rem;
  border: 3px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.nitasha-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(190, 150, 255, 0.5);
}

/* ✨ Divider Styling */
.divider {
  width: 2px;
  height: 240px; /* Increased from 180px */
  background: linear-gradient(to bottom, transparent, #7d5ca5, transparent);
  opacity: 0.7;
}

.right-side h3 {
  font-family: 'Playfair Display', serif;
  color: #4a2f63;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.right-side p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4c3c57;
  margin-bottom: 0.8rem;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.contact-icons img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(180, 140, 255, 0.3);
}

.contact-icons img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(190, 150, 255, 0.5);
}

/* 🌈 RESPONSIVE DESIGN FIXES */
@media (max-width: 1024px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .navbar nav {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .navbar nav a {
    margin: 0.3rem 0.6rem;
  }
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .video-card {
    width: 90%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 5rem 1.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .video-grid {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    min-width: 80%;
    max-width: 80%;
  }

  .booking-content {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .left-side {
    align-items: center;
    padding-left: 0;
    text-align: center;
  }

  .divider {
    display: none;
  }

  .right-side {
    text-align: center;
    padding: 0 1rem;
  }

  .contact-icons img {
    width: 40px;
    height: 40px;
  }

  footer {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-logo {
    width: 90px;
    height: 90px;
  }

  .btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
  }

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

  .left-side h2 {
    font-size: 2rem;
  }

  .right-side h3 {
    font-size: 1.5rem;
  }

  .navbar {
    padding: 0.5rem 1rem;
  }
}

/* 🌙 FOOTER */
footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #5b3b78;
  background: rgba(255, 255, 255, 0.4);
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  box-shadow: 0 -5px 20px rgba(200, 150, 255, 0.15);
  position: relative;
  z-index: 2;
}

footer span {
  color: #a377cc;
  font-weight: 600;
}

footer::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to top, rgba(255,255,255,0.4), transparent);
}

/* 🌠 ANIMATIONS */
@keyframes fadeDown {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  
}