






/* ---------------------------------------------------
   THEME VARIABLES
--------------------------------------------------- */
:root {
  /* ---- Text Colors ---- */
  --text-ivory: #F5EFE6;
  --text-gold: #C9A44E;
  --text-gold-bright: #EBCF83;
  --text-lavender: #C7B7FF;

  /* ---- Accent Colors ---- */
  --accent-pig-blush: #E8C1A0;
  --accent-pig-rose: #EED6D3;

  /* ---- Glow / Shadow ---- */
  --glow-gold: rgba(201, 164, 78, 0.45);
  --glow-ivory: rgba(245, 239, 230, 0.2);

  /* ---- Fonts ---- */
  --font-main: 'Quicksand', sans-serif;
  --font-heading: 'Tangerine', cursive;

  /* ---- Layout ---- */
  --content-width: 80%;
  --side-border: 20px;
  --section-padding: 3rem;
}


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


/* ---------------------------------------------------
   FULL-PAGE BACKGROUND IMAGE
--------------------------------------------------- */
body {
  background-image: url("images/tscbg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;

  color: var(--text-ivory);
  font-family: var(--font-main);
  min-height: 100vh;
  line-height: 1.7;
  overflow-x: hidden;
}


/* ---------------------------------------------------
   CONTENT WRAPPER (soft center glow + dark side fade)
--------------------------------------------------- */

#layout-wrapper {
  width: var(--content-width);
  margin: 0 auto;
  padding: 0 2rem;

  /* light, subtle center panel like before */
  background: rgba(221, 216, 216, 0.068);
  backdrop-filter: blur(1px);


  position: relative;
  z-index: 2;
}

/* ---------------------------------------------------
   FLOATING SIDE NAV (Option A)
--------------------------------------------------- */

.side-nav {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;

  z-index: 999; /* stays above everything */
}

.side-nav .nav-item {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;
  border-radius: 50%;

  font-size: 1.4rem;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.55);
  color: var(--text-gold);

  box-shadow:
    0 0 10px rgba(201, 164, 78, 0.25),
    inset 0 0 4px rgba(255, 255, 255, 0.15);

  transition: all 0.25s ease;
}

.side-nav .nav-item:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: scale(1.15);

  box-shadow:
    0 0 16px rgba(235, 207, 131, 0.4),
    inset 0 0 6px rgba(255, 255, 255, 0.25);
}


/* ---------------------------------------------------
   FANCY GOLD DIVIDER

--------------------------------------------------- */
/* Thin elegant gold divider (replaces curly one) */
.thin-gold-divider {
  border: 0;
  height: 1px;
  width: 60%;
  margin: 0.5rem auto 1.4rem auto;

  background: linear-gradient(
    to right,
    rgba(235, 207, 131, 0),
    rgba(235, 207, 131, 0.75),
    rgba(235, 207, 131, 0)
  );

  filter: drop-shadow(0 0 6px rgba(235, 207, 131, 0.4));
  display: block;
}



/* ---------------------------------------------------
   SECTION SPACING
--------------------------------------------------- */
/* Reduce global section spacing */
header, section, footer {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

/* Override hero specifically */
#hero-section {
  padding-top: 1.5rem !important;
  padding-bottom: 0.5rem !important;
}

/* Pull divider upward strongly */
.divider-wrapper {
  margin-top: -80px !important;
}
/*
header, section, footer {
  padding: var(--section-padding) 0;
}
*/ 


/* FAQ Spacing */
.faq-item {
  margin-bottom: 2rem;  /* space between each Q&A */
}

.faq-question {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.faq-answer {
  opacity: 0.9;
  line-height: 1.6;
}

/* ---------------------------------------------------
   ULTRASOUND IMAGE (Main Content)
--------------------------------------------------- */
.announcement-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin: 3rem auto;
  max-width: 1100px;
  padding: 0 1rem;
  flex-wrap: wrap; /* allows stacking on small screens */
}

/* LEFT SIDE – ultrasound */
.ultrasound-column {
  flex: 1 1 380px;
  display: flex;
  justify-content: center;
}

.ultrasound-img {
  width: 100%;
  max-width: 450px;
  border-radius: 18px;

  border: 1px solid rgba(235, 207, 131, 0.45);
  box-shadow:
    0 0 22px rgba(235, 207, 131, 0.25),
    inset 0 0 10px rgba(0, 0, 0, 0.35);

  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(1.2px);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ultrasound-img:hover {
  transform: scale(1.02);
  box-shadow:
    0 0 30px rgba(235, 207, 131, 0.4),
    inset 0 0 14px rgba(0, 0, 0, 0.45);
}

/* RIGHT SIDE – text */
.announcement-column {
  flex: 1 1 380px;
  text-align: left;
  max-width: 550px;
}

.announcement-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--text-gold);
  text-shadow: 0 0 10px var(--glow-gold);
  margin-bottom: 0.2rem;
}

.announcement-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-ivory);
  opacity: 0.95;
}


/* ---------------------------------------------------
FAQ
--------------------------------------------------- */

/* FAQ container with a border that can be cut */
#faq {
  position: relative;
  margin-top: 4rem;
  padding: 3.5rem 2rem 2.5rem 2rem;

  border-radius: 18px;

  /* Remove the normal border */
  border: none;

  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(2px);

  box-shadow:
    0 0 18px rgba(235, 207, 131, 0.25),
    inset 0 0 12px rgba(255, 255, 255, 0.06);
}

#faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  border-radius: 18px;
  border: 1px solid rgba(235, 207, 131, 0.35);

    /* Bigger, taller gap for the title */
  clip-path: polygon(
    0% 0%, 
    35% 0%, 
    35% 1.4rem,   /* gap height increased */
    65% 1.4rem, 
    65% 0%, 
    100% 0%, 
    100% 100%, 
    0% 100%
  );

  pointer-events: none;
  z-index: 0;
}

/* Title sits neatly in the gap */
.faq-title-wrapper {
  position: absolute;
  top: -2.8rem;
  left: 50%;
  transform: translateX(-50%);
}

.faq-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--text-gold);
  text-shadow: 0 0 10px var(--glow-gold);
}

/* Tiny gold inline button */
.tiny-btn {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.9rem;
  color: var(--text-ivory);
  text-decoration: none;
  border-radius: 6px;

  background: linear-gradient(
    to bottom,
    rgba(201, 164, 78, 0.85),
    rgba(184, 143, 53, 0.85)
  );

  box-shadow:
    0 0 6px rgba(201, 164, 78, 0.45),
    inset 0 0 3px rgba(255, 255, 255, 0.2);

  transition: all 0.2s ease;
}

.tiny-btn:hover {
  background: linear-gradient(
    to bottom,
    rgba(235, 207, 131, 0.95),
    rgba(201, 164, 78, 0.95)
  );
  box-shadow:
    0 0 10px rgba(235, 207, 131, 0.55),
    inset 0 0 4px rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}



/* ---------------------------------------------------
   REGISTRY BUTTON
--------------------------------------------------- */

.registry-wrapper {
  text-align: center;
  margin: 2.5rem 0 1rem 0;
}

.registry-btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  
  font-family: var(--font-main);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--text-ivory);

  border-radius: 40px;
  background: linear-gradient(
      to bottom,
      rgba(201, 164, 78, 0.85),
      rgba(184, 143, 53, 0.85)
  );

  box-shadow:
      0 0 12px rgba(201, 164, 78, 0.45),
      inset 0 0 6px rgba(255,255,255,0.2);

  transition: all 0.25s ease;
}

.registry-btn:hover {
  background: linear-gradient(
      to bottom,
      rgba(235, 207, 131, 0.92),
      rgba(201, 164, 78, 0.92)
  );
  box-shadow:
      0 0 18px rgba(235, 207, 131, 0.55),
      inset 0 0 8px rgba(255,255,255,0.3);
  transform: translateY(-2px);
}


/* ---------------------------------------------------
   HERO SECTION
--------------------------------------------------- */
#hero-section {
  text-align: center;
  padding-top: 1.5rem;     
  padding-bottom: 1.2rem;  
  position: relative;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-gold);
  letter-spacing: 1px;
  text-shadow:
        0 0 18px var(--glow-gold),
        0 0 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 0.8rem;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--text-ivory);
  opacity: 0.9;
  margin-top: 0.5rem;
}

/* Moon/Pig graphic placeholder */
#hero-accent {
  width: 120px;
  height: 120px;
  margin: 2.5rem auto 0;
  opacity: 0.7;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
   display: none;
}


/* ---------------------------------------------------
   FOOTER
--------------------------------------------------- */
/* Thin gold divider above footer */
.footer-divider {
  width: 60%;
  height: 1px;
  margin: 0.5rem auto 1rem auto;
  background: linear-gradient(
    to right,
    rgba(235, 207, 131, 0),
    rgba(235, 207, 131, 0.7),
    rgba(235, 207, 131, 0)
  );
  filter: drop-shadow(0 0 4px rgba(235, 207, 131, 0.4));
}

/* Footer text */
.footer-text {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-ivory);
  opacity: 0.8;
  line-height: 1.6;
  letter-spacing: 0.3px;
}




/* ---------------------------------------------------
   SHOOTING STAR ANIMATION (real comet tail)
--------------------------------------------------- */
/* ---------------------------------------------------
   SHOOTING STAR ARC ANIMATION (no JS needed)
--------------------------------------------------- */
/*
.shooting-stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1; 
}


.shooting-stars span {
  position: absolute;
  top: -50px;              
  right: -50px;
  width: 4px;
  height: 4px;

  background: white;
  border-radius: 50%;

  box-shadow:
    0 0 8px white,
    0 0 15px rgba(255,255,255,0.7);

  animation: shooting-arc 2.8s linear infinite;
}


.shooting-stars span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -260px; 
  transform: translateY(-50%);
  width: 260px;
  height: 2px;

  background: linear-gradient(
    to left,
    rgba(255,255,255,1),
    rgba(255,255,255,0.5),
    rgba(255,255,255,0)
  );
  opacity: 0.9;
  filter: blur(1px);
}


@keyframes shooting-arc {
  0% {
    transform: rotate(315deg) translate(0, 0);
    opacity: 1;
  }
  40% {
    transform: rotate(315deg) translate(-300px, -120px); 
    opacity: 1;
  }
  70% {
    transform: rotate(315deg) translate(-550px, 40px);   
    opacity: 1;
  }
  100% {
    transform: rotate(315deg) translate(-900px, 240px);
    opacity: 0;
  }
}


.shooting-stars span:nth-child(1) { animation-delay: 0s; }
.shooting-stars span:nth-child(2) { animation-delay: 0.6s; }
.shooting-stars span:nth-child(3) { animation-delay: 1.4s; }
.shooting-stars span:nth-child(4) { animation-delay: 2.2s; }
.shooting-stars span:nth-child(5) { animation-delay: 3.0s; }
.shooting-stars span:nth-child(6) { animation-delay: 4.0s; }
.shooting-stars span:nth-child(7) { animation-delay: 1.0s; }
.shooting-stars span:nth-child(8) { animation-delay: 2.8s; }
.shooting-stars span:nth-child(9) { animation-delay: 3.6s; }
.shooting-stars span:nth-child(10){ animation-delay: 4.4s; }




*/









/* ---------------------------------------------------
   RESPONSIVE MEDIA QUERIES
--------------------------------------------------- */

/* ================================
   LARGE DESKTOPS (1200px+)
================================ */
@media (min-width: 1200px) {
  #layout-wrapper {
    width: 75%;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .announcement-section {
    gap: 3rem;
  }
}


/* ================================
   LAPTOPS (992px–1199px)
================================ */
@media (max-width: 1199px) {
  #layout-wrapper {
    width: 85%;
  }

  .hero-title {
    font-size: 3.8rem;
  }

  .ultrasound-img {
    max-width: 420px;
  }
}


/* ================================
   TABLETS (768px–991px)
================================ */
@media (max-width: 991px) {
  /* center content panel */
  #layout-wrapper {
    width: 90%;
    padding: 0 1.2rem;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .announcement-section {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .announcement-column {
    text-align: center;
  }

  .thin-gold-divider {
    width: 70%;
  }

  .side-nav {
    left: 10px;
    gap: 1rem;
  }
}


/* ================================
   LARGE PHONES (576px–767px)
================================ */
@media (max-width: 767px) {
  body {
    background-position: center top; /* cleaner display on tall phones */
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .announcement-title {
    font-size: 2.4rem;
  }

  .ultrasound-img {
    max-width: 340px;
  }

  .fancy-divider img,
  .thin-gold-divider {
    width: 80%;
  }

  .side-nav {
    display: none; /* hide floating nav for mobile usability */
  }

  #faq {
    padding: 2.5rem 1.4rem;
  }

  .faq-title {
    font-size: 2.4rem;
  }
}


/* ================================
   SMALL PHONES (<576px)
================================ */
@media (max-width: 575px) {

  #layout-wrapper {
    width: 95%;
    padding: 0 0.8rem;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .announcement-title {
    font-size: 2rem;
  }

  .announcement-section {
    margin: 2rem auto;
    gap: 1.4rem;
  }

  .ultrasound-img {
    max-width: 300px;
  }

  .footer-text {
    font-size: 0.85rem;
  }

  .thin-gold-divider {
    width: 85%;
  }

  #faq {
    padding: 2rem 1rem 1.5rem;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-item {
    margin-bottom: 1.4rem;
  }
}
