/* =========================
   1. Root Colors and Fonts
   ========================= */
:root {
  --royal-purple: #3e1f6b;
  --orchid-pink: #a64ca6;
  --soft-pink: #f8c8dc;
  --lavender: #ebddf4;
  --cream: #f6f0eb;
  --text-dark: #3a1f5b;
  --gold: #c9b363;
  --brown: #a64c00;
  --shadow-glow: rgba(164, 76, 166, 0.4);
  --font-main: "Segoe UI", "Arial", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  --font-heading: "Segoe UI Semibold", "Segoe UI", "Arial Black", Arial,
    sans-serif;
  --font-script: "Dancing Script", cursive;
  --font-satisfy: "Satisfy", cursive;
}

/* =========================
   2. Reset and Global Styles
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: linear-gradient(
    135deg,
    var(--royal-purple),
    var(--orchid-pink),
    var(--soft-pink)
  );
  color: var(--text-dark);
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  line-height: 1.6;
}

/* =========================
   3. Accessibility Skip Link
   ========================= */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
  background: var(--royal-purple);
  color: var(--soft-pink);
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
  width: auto;
  height: auto;
  overflow: visible;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  outline-offset: 3px;
}

/* =========================
   4. Container
   ========================= */
.container {
  max-width: 1100px;
  width: 100%;
  background: var(--cream);
  border-radius: 28px;
  box-shadow: 0 8px 30px var(--shadow-glow);
  overflow: hidden;
  margin: 2em auto;
  padding-bottom: 2em;
}

/* =========================
   5. Banner Section
   ========================= */
.banner {
  position: relative;
  background: linear-gradient(90deg, #6c2b8f 60%, #e0c2f5 90%, #f9c2d5 100%);
  border-radius: 18px 18px 0 0;
  padding: 2em 1em 1.5em 1em;
  color: #fff;
  margin-bottom: 1.5em;
  text-align: center;
  box-shadow: inset 0 0 40px rgba(248, 200, 220, 0.5);
  overflow: hidden;
}
.banner-content {
  position: relative;
  z-index: 10;
}
.banner-title {
  font-family: var(--font-script), var(--font-heading);
  font-size: 2.5em;
  margin-bottom: 0.2em;
  color: #fff;
  text-shadow: 0 0 8px #f8c8dc80, 0 0 12px #f5a4d280, 0 0 18px #a064b84d;
}
.banner-subtitle {
  font-family: var(--font-script), var(--font-main);
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: 1.2em;
  margin-bottom: 1em;
  color: #e0c2f5;
  text-shadow: 0 0 8px #965ac84d;
}

/* =========================
   6. Navigation Bar
   ========================= */
.banner-menu {
  display: flex;
  justify-content: center;
  gap: 1.2em;
  font-weight: 600;
  font-size: 1.08em;
  color: #fff;
  z-index: 12;
  position: relative;
  flex-wrap: wrap;
  background: none;
  box-shadow: none;
  transition: none;
}
.banner-menu a {
  color: #fff;
  background: #a566c4;
  border-radius: 8px;
  padding: 0.5em 1.2em;
  margin: 0 0.3em;
  text-decoration: none;
  border: 1.5px solid #caa6e6;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
}
.banner-menu a:hover,
.banner-menu a:focus {
  background: #fff;
  color: #6c2b8f;
  box-shadow: 0 2px 8px #caa6e680;
}
@media (max-width: 768px) {
  .banner-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    min-width: 0;
    background: rgba(62, 31, 107, 0.98); /* semi-transparent royal purple */
    flex-direction: column;
    gap: 0;
    padding-top: 5.5rem;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 2, 0.6, 1);
    box-shadow: 0 8px 32px #0008;
    border-radius: 0;
    z-index: 1001;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
  }
  .banner-menu.active {
    transform: translateY(0);
  }
  .banner-menu a {
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--soft-pink);
    border-radius: 0;
    margin: 0;
    width: 100vw;
    max-width: 320px;
    text-align: center;
    background: none;
    color: #fff;
    font-size: 1.2em;
    min-width: unset;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .banner-menu a:last-child {
    border-bottom: none;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1.2rem;
    right: 0.7rem;
    background: var(--royal-purple);
    border: none;
    color: var(--soft-pink);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1100;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    box-shadow: 0 2px 8px #0002;
    transition: color 0.3s, background 0.3s, box-shadow 0.3s;
  }
  .menu-toggle:hover,
  .menu-toggle:focus {
    color: var(--gold);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 2px var(--orchid-pink);
  }
  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }
}

@media (max-width: 900px) {
  .banner {
    padding-bottom: 1.5em;
  }
  .banner-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: auto;
    width: 100vw;
    min-width: 0;
    background: rgba(62, 31, 107, 0.98);
    flex-direction: column;
    gap: 0;
    padding-top: 0.5rem;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0.5rem;
    transform: translateY(-30px) scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 2, 0.6, 1), opacity 0.2s;
    box-shadow: 0 8px 32px #0008;
    border-radius: 0 0 18px 18px;
    z-index: 1001;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    opacity: 0;
    pointer-events: none;
  }
  .banner-menu.active {
    transform: translateY(0) scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }
  .banner-menu a {
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--soft-pink);
    border-radius: 0;
    margin: 0;
    width: 100vw;
    max-width: 320px;
    text-align: center;
    background: none;
    color: #fff;
    font-size: 1.2em;
    min-width: unset;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .banner-menu a:last-child {
    border-bottom: none;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1.2rem;
    right: 0.7rem;
    background: var(--royal-purple);
    border: none;
    color: var(--soft-pink);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1100;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    box-shadow: 0 2px 8px #0002;
    transition: color 0.3s, background 0.3s, box-shadow 0.3s;
  }
  .menu-toggle:hover,
  .menu-toggle:focus {
    color: var(--gold);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 2px var(--orchid-pink);
  }
  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }
  .container {
    border-radius: 0;
    margin: 0;
    padding: 0 0 2em 0;
    max-width: 100vw;
  }
  main {
    padding: 1em 0.5em 2em 0.5em;
    max-width: 100vw;
  }
  .footer {
    border-radius: 0 0 12px 12px;
    margin-top: 2em;
  }
}

@media (max-width: 600px) {
  .banner-title {
    font-size: 1.5rem;
  }
  .banner-subtitle {
    font-size: 1rem;
  }
  .banner-content {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  .footer {
    font-size: 0.85rem;
    padding: 1em 0.5em;
  }
  .footer-col {
    min-width: 140px;
    max-width: 100vw;
    margin: 0 0.2em;
  }
  .footer-qr-section {
    gap: 8px;
  }
  .footer-qr-block {
    width: 38px;
    height: 38px;
  }
  .footer-qr-icon {
    font-size: 1.2em;
  }
  .footer-social a {
    width: 28px;
    height: 28px;
    font-size: 0.9em;
  }
  .fb-iframe-container {
    max-width: 100vw;
    border-radius: 8px;
  }
  .fb-iframe-container iframe {
    min-height: 180px;
  }
}

@media (max-width: 400px) {
  .banner-title {
    font-size: 1.1rem;
  }
  .footer-qr-block {
    width: 30px;
    height: 30px;
  }
  .footer-qr-icon {
    font-size: 1em;
  }
}

/* =========================
   8. Main Content & Typography
   ========================= */
main {
  padding: 40px 30px;
  color: var(--text-dark);
  max-width: 900px;
  margin: 0 auto;
}
main h2 {
  font-family: "Segoe UI", "Arial Black", Arial, sans-serif;
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: var(--royal-purple);
  text-align: center;
}
main h2.dancing-brown {
  color: #b85c38;
}
main h2.dancing-purple {
  color: var(--royal-purple);
}
main p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #4a3a53;
}
main strong {
  color: var(--orchid-pink);
}

/* =========================
   9. Price List
   ========================= */
.price-list {
  list-style-type: none;
  margin-bottom: 2em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  font-size: 1.125rem;
  color: var(--text-dark);
}
.price-list li {
  background: var(--lavender);
  margin-bottom: 1rem;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}
.price-list strong {
  font-weight: 700;
}
.price-list span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: var(--royal-purple);
}

/* =========================
   10. Facebook Reels Embed
   ========================= */
.fb-iframe-container {
  margin: 0 auto 3rem;
  max-width: 560px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.fb-iframe-container iframe {
  width: 100%;
  border: none;
}
.desktop-only iframe {
  height: 500px;
}
.mobile-only {
  display: none;
}
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
  .mobile-only iframe {
    height: 300px;
  }
}

/* =========================
   11. Footer Styles
   ========================= */
.footer {
  background-color: var(--royal-purple);
  color: var(--soft-pink);
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.9rem;
  user-select: none;
  margin-top: 3rem;
}
.footer-col {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  margin: 0 0.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-col h3 {
  font-weight: 700;
  margin-bottom: 0.5em;
  font-family: "Arial Black", Arial, sans-serif;
}
address {
  font-style: normal;
  line-height: 1.6;
  font-size: 1em;
  margin-bottom: 0.5em;
}
.contact-phone {
  display: inline-block;
  padding: 8px 18px;
  background: #fff9e3;
  color: #b85c38;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #f7c87344;
  transition: background 0.2s, color 0.2s;
}
.contact-phone:hover,
.contact-phone:focus {
  background: #f7c873;
  color: #fff;
  outline: none;
}
.footer-hours table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1em;
  margin-top: 0.7em;
}
.footer-hours td {
  padding: 2px 0;
}
.footer-hours td:first-child {
  font-weight: 600;
  color: #b85c38;
  padding-right: 0.5em;
}
.footer-hours td:last-child {
  text-align: right;
  color: #e6e5e7;
}
.footer-map iframe {
  width: 100%;
  min-width: 180px;
  max-width: 340px;
  height: 220px;
  border-radius: 12px;
  box-shadow: 0 2px 8px #0001;
  margin-top: 0.5em;
}

/* =========================
   12. Footer QR Icons Section
   ========================= */
.footer-qr-section {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 1.5em;
  flex-wrap: wrap;
}
.footer-qr-block {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #a64ca6;
  box-shadow: 0 2px 6px #0002;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.22s;
  user-select: none;
  position: relative;
  overflow: visible;
}
.footer-qr-block:hover,
.footer-qr-block:focus-within {
  border-color: #f8c8dc;
  box-shadow: 0 0 18px 4px #a64ca6cc, 0 6px 24px #b85c3840;
  transform: scale(1.1);
  outline: none;
  z-index: 2;
}
.footer-qr-icon {
  font-size: 1.8em;
  color: #a64ca6;
  pointer-events: none;
}
/* QR popup */
.footer-qr-popup {
  display: none;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 2px solid #a64ca6;
  border-radius: 12px;
  box-shadow: 0 6px 32px #a64ca688;
  padding: 14px 16px 10px 16px;
  z-index: 10;
  min-width: 160px;
  text-align: center;
  user-select: text;
}
.footer-qr-block:hover .footer-qr-popup,
.footer-qr-block:focus-within .footer-qr-popup {
  display: block;
}
.footer-qr-popup img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px #0002;
}
.footer-qr-popup .close-qr {
  display: inline-block;
  background: #a64ca6;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  padding: 6px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
  user-select: none;
}
.footer-qr-popup .close-qr:hover,
.footer-qr-popup .close-qr:focus {
  background: #6c2b8f;
  outline: none;
}

/* =========================
   13. Footer Social Icons
   ========================= */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 1em;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #2e1537;
  font-size: 1.2em;
  box-shadow: 0 1px 5px #0002;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
}
.footer-social a.facebook {
  background: #3b5998;
  color: #fff;
}
.footer-social a.tiktok {
  background: #000;
  color: #fff;
}
.footer-social a.instagram {
  background: #e4405f;
  color: #fff;
}
.footer-social a.youtube {
  background: #ff0000;
  color: #fff;
}
.footer-social a.line {
  background: #00c300;
  color: #fff;
}
.footer-social a:hover,
.footer-social a:focus {
  filter: brightness(85%);
  transform: scale(1.12);
  outline: none;
}

/* =========================
   7. Facebook Reels iFrame Containers
   ========================= */
.fb-iframe-container {
  width: 100%;
  margin-bottom: 2em;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(58, 31, 91, 0.4);
}

.fb-iframe-container iframe {
  width: 100%;
  border: none;
  min-height: 480px;
  transition: min-height 0.3s ease;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

/* =========================
   8. Animations
   ========================= */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUp {
  from {
    transform: scale(0.82);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* =========================
   9. Responsive Fixes
   ========================= */
@media (max-width: 900px) {
  .banner-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    min-width: 0;
    background: rgba(62, 31, 107, 0.98); /* semi-transparent royal purple */
    flex-direction: column;
    gap: 0;
    padding-top: 5.5rem;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 2, 0.6, 1);
    box-shadow: 0 8px 32px #0008;
    border-radius: 0;
    z-index: 1001;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
  }
  .banner-menu.active {
    transform: translateY(0);
  }
  .banner-menu a {
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--soft-pink);
    border-radius: 0;
    margin: 0;
    width: 100vw;
    max-width: 320px;
    text-align: center;
    background: none;
    color: #fff;
    font-size: 1.2em;
    min-width: unset;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .banner-menu a:last-child {
    border-bottom: none;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1.2rem;
    right: 0.7rem;
    background: var(--royal-purple);
    border: none;
    color: var(--soft-pink);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1100;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    box-shadow: 0 2px 8px #0002;
    transition: color 0.3s, background 0.3s, box-shadow 0.3s;
  }
  .menu-toggle:hover,
  .menu-toggle:focus {
    color: var(--gold);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 2px var(--orchid-pink);
  }
  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }
}

@media (max-width: 600px) {
  .banner-menu {
    gap: 0.8em;
    font-size: 1em;
  }

  .banner-title {
    font-size: 2rem;
  }

  .banner-subtitle {
    font-size: 1rem;
  }

  main {
    padding: 0 1em 2em;
  }

  .fb-iframe-container.desktop-only {
    display: none;
  }

  .fb-iframe-container.mobile-only {
    display: block;
  }

  .fb-iframe-container.mobile-only iframe {
    min-height: 250px;
  }

  .floating-lotus {
    font-size: 1.4em;
    right: 0.8em;
    top: 0.8em;
  }
}

@media (max-width: 400px) {
  .footer-qr-block {
    width: 40px;
    height: 40px;
  }
  .footer-qr-icon {
    font-size: 1.3em;
  }
  .footer-social a {
    width: 28px;
    height: 28px;
    font-size: 0.9em;
  }
}

/* =========================
   10. Accessibility Focus Styles
   ========================= */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  transition: outline-offset 0.3s ease;
}

/* ====== Font Family Setup ====== */
:root {
  --royal-purple: #3e1f6b;
  --orchid-pink: #a64ca6;
  --soft-pink: #f8c8dc;
  --lavender: #ebddf4;
  --cream: #f6f0eb;
  --text-dark: #3a1f5b;
  --gold: #c9b363;
  --brown: #a64c00;
  --button-bg: #a566c4;
  --button-hover-bg: #fff;
  --button-hover-text: #6f3388;
  --font-main: "Segoe UI", "Arial", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  --font-heading: "Segoe UI Semibold", "Segoe UI", "Arial Black", Arial,
    sans-serif;
  --font-script: "Dancing Script", cursive;
  --font-satisfy: "Satisfy", cursive;
}

/* Use formal, clean font for body and headings */
body {
  font-family: var(--font-main);
  background: linear-gradient(
    135deg,
    var(--royal-purple),
    var(--orchid-pink),
    var(--soft-pink)
  );
  color: var(--text-dark);
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  line-height: 1.6;
}

/* Headings: use a formal sans-serif, bold style */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Special headings with script font for accent only */
.banner-title,
main h2.dancing-brown,
main h2.dancing-purple,
.aboutus-box h3 {
  font-family: var(--font-script), var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Subtitle with a touch of script for accent, but still formal */
.banner-subtitle {
  font-family: var(--font-script), var(--font-main);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Navigation and menu: formal sans-serif */
.banner-menu,
.banner-menu a,
.menu-toggle {
  font-family: var(--font-main);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Footer and address: formal sans-serif */
.footer,
.footer-col,
.footer-col h3,
address,
.contact-phone {
  font-family: var(--font-main);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* QR and social icons: inherit font */
.footer-qr-icon,
.footer-social a {
  font-family: inherit;
}

/* =========================
   Footer Grid Layout
   ========================= */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  border: none;
  margin: 1rem 0;
}

.hours-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.hours-table td {
  padding: 0.3rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-table td:first-child {
  font-weight: bold;
  color: var(--soft-pink);
}

.additional-info {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.additional-info p {
  margin: 0.5rem 0;
  color: var(--lavender);
}

.footer-bottom-bar {
  text-align: center;
  padding: 1.5rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--lavender);
}

/* Responsive footer grid */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-col {
    margin: 0;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 1rem 0.5rem;
  }

  .footer-grid {
    gap: 1rem;
    padding: 0.5rem;
  }

  .footer-col {
    padding: 1rem;
  }

  .map-container iframe {
    height: 150px;
  }
}

/* =========================
   14. Index Page Specific Styles
   ========================= */

/* Responsive Contact Buttons */
.call-follow-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.call-follow-buttons a {
  flex: 1 1 220px;
  text-align: center;
  padding: 0.8rem 1rem;
  font-size: 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  color: white;
  transition: transform 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.call-follow-buttons a.call-btn {
  background-color: #6a2d82;
}

.call-follow-buttons a.call-btn:hover {
  background-color: #8642ad;
  transform: scale(1.05);
}

.call-follow-buttons a.follow-btn {
  background-color: #3b5998;
}

.call-follow-buttons a.follow-btn:hover {
  background-color: #2d4373;
  transform: scale(1.05);
}

/* Location Box Styling */
.location-box {
  margin: 2rem auto;
  max-width: 480px;
  padding: 1rem 1.5rem;
  background: #faf8ff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgb(106 45 130 / 0.1);
  font-family: "Arial", sans-serif;
  color: #333;
  font-size: 1rem;
  text-align: center;
}

.location-box h3 {
  font-family: "Dancing Script", cursive;
  color: #6a2d82;
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}

.location-box a {
  color: #6a2d82;
  text-decoration: none;
  font-weight: bold;
}

.location-box a:hover {
  text-decoration: underline;
}

/* Welcome Section Styling */
.welcome-section {
  margin: 2rem auto;
  max-width: 800px;
  padding: 2rem 1.5rem;
  background: #faf8ff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgb(106, 45, 130 / 0.1);
  font-family: "Arial", sans-serif;
  color: #333;
  font-size: 1rem;
  text-align: center;
}

/* Services Section Styling */
.services-section {
  margin: 2rem auto;
  max-width: 800px;
  padding: 2rem 1.5rem;
  background: #faf8ff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgb(106, 45, 130 / 0.1);
  font-family: "Arial", sans-serif;
  color: #333;
  font-size: 1rem;
}

/* Services Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.services-column {
  background: #faf8ff;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 6px rgb(106, 45, 130 / 0.1);
  font-family: "Arial", sans-serif;
  color: #333;
  font-size: 1rem;
  min-height: 400px;
}

.services-column h2 {
  font-family: "Dancing Script", cursive;
  color: #6a2d82;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.empty-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  color: #999;
  font-style: italic;
  text-align: center;
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  background: #fafafa;
}

/* Time Display in Banner */
.time-display {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-family: "Arial", sans-serif;
  font-size: 0.85rem;
  color: #333;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(106, 45, 130, 0.2);
}

.time-display h4 {
  margin: 0 0 0.5rem 0;
  font-family: "Dancing Script", cursive;
  color: #6a2d82;
  font-size: 1rem;
  text-align: center;
}

.time-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.3rem 0;
  font-weight: 500;
}

.time-item .city {
  color: #6a2d82;
  font-weight: bold;
  margin-right: 1rem;
  min-width: 80px;
}

.time-weather {
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 0.2rem;
}

.time-item .time {
  color: #333;
  font-family: monospace;
  font-size: 0.9rem;
}

.time-item .weather {
  color: #6a2d82;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Enhanced Floating Lotus Animation */
.floating-lotus {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.lotus {
  position: absolute;
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
  opacity: 0.7;
  filter: drop-shadow(0 2px 4px rgba(106, 45, 130, 0.3));
}

.lotus:nth-child(1) {
  left: 10%;
  animation-delay: calc(var(--i) * 0.5s);
  animation-duration: 8s;
}

.lotus:nth-child(2) {
  left: 20%;
  animation-delay: calc(var(--i) * 0.7s);
  animation-duration: 9s;
}

.lotus:nth-child(3) {
  right: 20%;
  animation-delay: calc(var(--i) * 0.3s);
  animation-duration: 7s;
}

.lotus:nth-child(4) {
  right: 10%;
  animation-delay: calc(var(--i) * 0.9s);
  animation-duration: 10s;
}

.lotus:nth-child(5) {
  left: 5%;
  animation-delay: calc(var(--i) * 1.2s);
  animation-duration: 6s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  50% {
    transform: translateY(-10vh) rotate(180deg);
    opacity: 0.9;
  }
}

/* =========================
   15. Responsive Mobile Optimizations
   ========================= */

/* Responsive grid */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    padding: 0 0.5rem;
  }

  .services-column {
    padding: 1.5rem 1rem;
  }

  /* Responsive time display */
  .time-display {
    position: static;
    margin: 1rem auto;
    max-width: 280px;
    font-size: 0.8rem;
  }

  .time-display h4 {
    font-size: 0.9rem;
  }

  .time-item .time {
    font-size: 0.8rem;
  }

  /* Responsive lotus sizing */
  .lotus {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .time-display {
    margin: 0.5rem auto;
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
  }

  /* Mobile stacking for buttons and location */
  .call-follow-buttons {
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 1rem;
  }

  .call-follow-buttons a {
    flex: none;
    width: 100%;
    font-size: 1.1rem;
    padding: 0.75rem 0;
  }

  .location-box {
    margin: 1rem;
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
  }

  .welcome-section,
  .services-section {
    margin: 1rem;
    padding: 1.5rem 1rem;
  }

  .lotus {
    font-size: 1.2rem;
  }
}

/* =========================
   16. Page-Specific Header Styles
   ========================= */

/* Main welcome heading */
main h1 {
  font-family: "Dancing Script", cursive;
  color: #6a2d82;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Section headings with Dancing Script font */
.welcome-section h2,
.services-section h2 {
  font-family: "Dancing Script", cursive;
  color: #6a2d82;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Services columns styling for inline divs */
.services-column div[style*="margin-bottom"] h3 {
  color: #6a2d82;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Price styling */
.services-column div[style*="margin-bottom"] p strong {
  color: #6a2d82;
}

/* Iframe wrapper styling */
div[style*="text-align: center"] iframe {
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
/* =========================
   14. extensions 
   ========================= */

.extensions-columns-wrapper {
  overflow-x: auto; /* horizontal scroll on narrow screens */
  padding-bottom: 1rem;
}

.extensions-columns {
  display: flex;
  gap: 2.5rem; /* space between columns */
  flex-wrap: nowrap; /* fix in one row */
  min-width: 780px; /* min total width for 3 columns */
  padding: 1rem 0;
}

.extension-column {
  flex: 1 1 0;
  min-width: 240px;
  background: #faf8ff; /* subtle light background */
  border-radius: 10px;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 2px 6px rgb(106 45 130 / 0.1);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.extension-column h3 {
  font-family: "Dancing Script", cursive;
  font-size: 1.4rem;
  color: #6a2d82;
  margin-bottom: 1rem;
  border-bottom: 2px solid #6a2d82;
  padding-bottom: 0.4rem;
}

.extension-column ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  line-height: 1.6;
  color: #333;
}

.extension-column li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s;
}

.extension-column li:last-child {
  border-bottom: none;
}

.extension-column li:hover {
  background-color: #f0e6ff;
  cursor: default;
}

.extension-column strong {
  color: #6a2d82;
  margin-top: 0.5rem;
  display: block;
}

.hair-extensions-section h2,
.aboutus-box h2,
.nanoplasty-section h2 {
  font-family: "Dancing Script", cursive;
  color: #6a2d82;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

/* Paragraphs font style applied globally */
.aboutus-box p,
.hair-extensions-section > p:first-of-type,
.nanoplasty-section p {
  font-family: Arial, Helvetica, sans-serif; /* clean readable font */
  font-size: 16px; /* comfortable reading size */
  line-height: 1.6;
  color: #333; /* readable dark gray */
}

/* Responsive: stack on small screens */
@media (max-width: 800px) {
  .extensions-columns {
    flex-wrap: wrap;
    min-width: auto;
  }
  .extension-column {
    min-width: 100%;
  }
}

.intro-text {
  font-family: "Arial", sans-serif; /* example: change font */
  font-size: 19px; /* example: increase size */
  font-weight: 400; /* normal weight */
  color: #5a3d8a; /* optional: change text color */
  line-height: 1.6; /* spacing for readability */
}

@media (max-width: 768px) {
  .banner-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(62, 31, 107, 0.98);
    z-index: 1001;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
  }

  .banner-menu.active {
    transform: translateY(0);
  }
}

/* Container for call & follow buttons */
.call-follow-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap; /* allow wrapping on small screens */
}

.call-follow-buttons a {
  flex: 1 1 200px; /* allow buttons to shrink and grow with a min width */
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Dancing Script", cursive;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 0 8px rgba(106, 45, 130, 0.6);
  cursor: pointer;
  position: relative;
  animation: glowFlash 2.5s ease-in-out infinite;
  transition: background-color 0.3s ease;
}

/* Different colors for each button */
.call-btn {
  background: #6a2d82;
  border: 2px solid #9144c8;
}

.call-btn:hover {
  background: #9144c8;
}

.follow-btn {
  background: #1877f2; /* Facebook Blue */
  border: 2px solid #4590ff;
}

.follow-btn:hover {
  background: #4590ff;
}

/* Glowing and flashing animation */
@keyframes glowFlash {
  0%,
  100% {
    box-shadow: 0 0 6px #6a2d82, 0 0 12px #9144c8, 0 0 24px #b377e8,
      0 0 36px #d8b3ff;
  }
  50% {
    box-shadow: 0 0 12px #9144c8, 0 0 24px #b377e8, 0 0 36px #d8b3ff,
      0 0 48px #e8ccff;
  }
}

/* Location box styling */
.location-box {
  text-align: center;
  font-family: "Arial", sans-serif;
  color: #333;
  max-width: 320px;
  margin: 0 auto 3rem auto;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background-color: #faf8ff;
  box-shadow: 0 0 12px rgba(106, 45, 130, 0.1);
  font-size: 1rem;
  line-height: 1.5;

  /* center all contents vertically and horizontally */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.location-box h3 {
  font-family: "Dancing Script", cursive;
  color: #6a2d82;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.location-box p {
  margin: 0;
}

.location-box p a {
  color: #6a2d82;
  text-decoration: none;
  font-weight: 600;
}

.location-box p a:hover {
  text-decoration: underline;
}

/* On small screens, stack buttons vertically */
@media (max-width: 480px) {
  .call-follow-buttons {
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 1rem;
  }
  .call-follow-buttons a {
    flex: none;
    width: 100%;
    font-size: 1.1rem;
    padding: 0.75rem 0;
  }

  .location-box {
    margin: 1rem;
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
  }
}
.nanoplasty-results {
  background-color: #faf8ff;
  border-radius: 12px;
  padding: 1.5rem 1.5rem;
  margin: 2rem auto;
  box-shadow: 0 4px 12px rgba(106, 45, 130, 0.12);
  font-family: Arial, sans-serif;
  color: #333;
  max-width: 720px;
  animation: fadeInResult 1.2s ease-in-out;
}

.nanoplasty-results p {
  margin: 0.7rem 0;
  line-height: 1.6;
  font-size: 1rem;
}

.results-heading {
  font-family: "Dancing Script", cursive;
  color: #6a2d82;
  font-size: 1.7rem;
  margin-bottom: 1rem;
  text-align: center;
}

/* Fade-in animation */
@keyframes fadeInResult {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .nanoplasty-results {
    padding: 1rem;
    margin: 1rem;
  }
  .results-heading {
    font-size: 1.5rem;
  }
  .nanoplasty-results p {
    font-size: 0.95rem;
  }
}
/* =============================
   Nanoplasty Results Section
============================= */
.nanoplasty-results {
  padding: 2rem 1rem;
  text-align: center;
}

.nanoplasty-results h3 {
  font-family: "Dancing Script", cursive;
  color: #6a2d82;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

/* Result list styling */
.nanoplasty-results ul {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: #333;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
  list-style: none;
  padding-left: 0;
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards;
}

/* Optional: bullet animation or hover effect */
.nanoplasty-results ul li {
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}

.nanoplasty-results ul li:hover {
  transform: scale(1.02);
  color: #6a2d82;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Tweak */
@media (max-width: 500px) {
  .nanoplasty-results h3 {
    font-size: 1.5rem;
  }

  .nanoplasty-results ul {
    font-size: 0.95rem;
    padding: 0 1rem;
  }
}
