html {
  background-color: white;
}

body {
  font-family: "Times New Roman", serif;
  text-align: center;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;

  /* ✨ NEW: this controls vertical spacing between children */
  gap: 8px;
}

main > * {
  /* ✨ NEW: neutralize any default margins & padding */
  margin: 0;
  padding: 0;
}



/* Nav Bar */
.top-ribbon {
    background-color: #333;
    color: white;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
}

.top-ribbon ul,
.top-ribbon ul li {
    list-style: none;  /* remove bullets */
    margin: 0;          /* remove default spacing */
    padding: 0;         /* remove default spacing */
}

.top-ribbon > a {
    display: flex;
    flex-shrink: 1;
    flex-grow: 0;
    min-width: 0;
}

.top-ribbon .logo {
    height: auto;
    max-height: 35px;
    width: auto;
    margin-left: 5px;
    margin-right: 5px;
    display: flex;
    flex-shrink: 1;
    flex-grow: 0;
    align-items: center;
    justify-content: center;
}

/* Navigation Menu */
.top-ribbon .desktop-nav {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    margin-left: auto; /* pushes desktop nav to the right */
}

.top-ribbon .desktop-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}
.top-ribbon .desktop-nav ul li {
    list-style: none;
}

.top-ribbon .desktop-nav ul li a {
    color: white;
    text-decoration: none;
    font-variant: small-caps;
    padding: 5px 10px;
    white-space: nowrap;
}

.mobile-nav {
    margin-left: 0;    
    flex: 0 0 auto;  /* prevent stretching */

}

.instagram-nav {
    display: flex;
    padding-left: 20px;
    padding-right: 15px;
    flex-shrink: 0;
}

.instagram-icon {
    width: 17px;
    height: auto;
    vertical-align: middle;
    margin-bottom: 0;
}

.hamburger-wrapper {
    display: none;
    position: relative;
}

.hamburger-menu {
    display: none;
    font-size: 1.8em;
    color: white;
    cursor: pointer;
    padding-right: 0;
}

.hamburger-dropdown li {
    display: none;
}

.intro-wrapper {
    position: fixed;
    top: 45px;
    width: 100vw;
    background: white;
    z-index: 999;
    overflow: visible; /* prevent clipping */
    display: flex;
    justify-content: center;
}

.intro-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
}




h1 {
    font-size: 2.3em;
    font-variant: small-caps;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
}

.title h1 a {
    text-decoration: none;
    color: inherit;       /* keeps the same color as h1 */
    font-variant: small-caps;
}

.title {
  position: sticky;
  top: 45px;
  align-items: center;
  background-color: white;
  width: 100%;
  z-index: 999;
  padding: 5px;
}


.menu-wrapper {
  position: absolute;
  top: 125px;        /* below sticky title/nav */
  bottom: 65px;     /* above fixed footer */
  left: 0;
  right: 0;
  justify-items: center;
  overflow-y: auto;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0 24px; /* horizontal padding for text readability */
  text-align: left;
  box-sizing: border-box;
}

/* Each pricing block spacing */
.pricing-section {
  margin-bottom: 48px;
   border: 1px solid #ccc;      /* light gray border */
  border-radius: 8px;          /* soft rounded corners */
  padding: 0px;          /* internal spacing */
  background-color: #fff;      /* optional, keeps content distinct */
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);  /* subtle depth */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 85%;
}

/* Section headers (Personal / Commercial) */
.pricing-section h2 {
  font-size: 2.0rem;
  font-variant: small-caps;
  font-weight: bold;
  letter-spacing: 0.04em;
}

/* Price titles / session types */
.pricing-section h3 {
  font-size: 1.2rem;
  font-variant: small-caps;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 28px 0 6px 0;
}

/* Paragraphs / description text */
.pricing-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 5px 0;
}

/* Intro paragraphs below section headers */
.pricing-intro {
  font-size: 0.98rem;
  margin-bottom: 18px;
}

/* Notes / asides */
.pricing-note {
  font-style: italic;
  opacity: 0.75;
  margin-top: 28px;
  text-align: center;
}



/* Collapsible section content */
.pricing-section .collapsible-content {
  max-height: 0;               /* collapsed */
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}

/* Open state */
.pricing-section.is-open .collapsible-content {
  max-height: 2000px;          /* large enough for any content */
  opacity: 1;
}

/* Toggle icon on the left of H2 */
.pricing-section h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  margin: 0px;
  padding: 25px;
}

.toggle-icon {
  display: inline-block;
  width: 1.2em;
  text-align: center;
  font-weight: bold;
  user-select: none;           /* prevents accidental text selection */
}

.collapsible-content {
  padding: 0px 10px 0px 10px;
}






/*footer*/
.tagline {
  font-size: 1.2em;
  font-style: italic;
  font-variant: small-caps;
}

.year-fix {
  font-size: 0.8em;
  /* Adjust size to match surrounding text */
}


/* Footer Stays at Bottom (Matching Landing Page) */
.footer-wrapper {
    display: flex;   /* shrink-to-fit the widest content */
    flex-direction: column;        /* stack vertically */
    align-items: center;
    justify-content: center;
    text-align: center;
    width: auto;
    box-sizing: border-box;
}

.footer-wrapper ul {
    display: block;          /* now fills the wrapper */
    width: 100%;             /* ensures text width matches wrapper */
    margin: 0;
    white-space: nowrap;     /* prevents line breaks */
    text-align: center;      /* keeps text centered */
}

.footer {
  background-color: #333;
  color: white;
  padding: 8px 0;
  font-size: 0.9em;
  font-variant: small-caps;
  text-align: center;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
}

.tagline {
    font-size: 1.2em;
    font-style: italic;
    font-variant: small-caps;
}

.year-fix {
    font-size: 0.8em;
    /* Adjust size to match surrounding text */
}

/* Clean, evenly spaced item list */
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px; /* even spacing between lines */
}

.footer-list li {
  line-height: 1;
}

.footer-list a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-list a:hover {
  opacity: 0.8;
}





@media (max-width: 825px) {
    /* Top Ribbon flex setup */
    .top-ribbon {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 4px 8px;
    }

    /* Logo container flex */
    .top-ribbon > a {
        display: flex;
        flex-shrink: 1;      
        flex-grow: 1;        
        min-width: 0;
        margin-right: 10px;  
    }

    .top-ribbon .logo {
        max-width: 85%;
        max-height: 35px;    
        width: auto;
        height: auto;
    }

    /* Nav container (hamburger + Instagram) */
    .top-ribbon nav {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Hamburger icon */
    .hamburger-menu {
        display: flex;             /* make container a flexbox */
        align-items: center;       /* vertically center the img */
        justify-content: center;   /* horizontally center if needed */
        cursor: pointer;
        padding: 0;
        line-height: 0;            /* removes any inline-gap issues */
        }

    /* Hamburger image */
    .hamburger-menu img {
        display: block;
        height: 17px;              /* match Instagram icon */
        width: auto;
    }

  /* Instagram icon */
    .instagram-icon {
        display: block;
        width: 17px;
        margin-bottom: 0;
    }

    /* Hamburger dropdown - hidden by default */
    .hamburger-dropdown {
        display: none;
        flex-direction: column;       /* vertical stacking */
        position: absolute;
        top: calc(100% + 4px);
        right: 0px;
        background-color: #333;
        list-style: none;
        padding: 0;
        margin: 0;
        min-width: 140px;
        z-index: 2000;                /* above ribbon */
    }

    .hamburger-dropdown li {
    display: block;
    }

    .hamburger-dropdown li a {
        display: block;
        padding: 12px;
        color: white;
        text-decoration: none;
        font-variant: small-caps;
        white-space: nowrap;
    }

    .hamburger-dropdown li a:hover {
        background-color: rgba(236, 233, 233, 0.2);
    }

    /* Hamburger wrapper */
    .hamburger-wrapper {
        display: block;
        position: relative;
    }

    /* Hide desktop nav in mobile */
    .top-ribbon .desktop-nav {
        display: none;
    }

    /* Show dropdown only when active */
    .hamburger-wrapper.active .hamburger-dropdown {
        display: flex;
    }

    .menu-wrapper {
      top: 90px;
      padding: 24px;
    }


    .collapsible-content {
      padding: 0px 10px 0px 10px;
    }

    .pricing-section {
      padding: 0px;
      width: 95%;
    }
}




@media (max-width: 685px) {


.intro-wrapper {
        display: inline-flex;
        top: 40px;
        transform: scale(0.80);
        transform-origin: top center;
        width: 100vh;
    }

    .intro-wrapper h1, .intro-wrapper h2 {
        display: block;    
        white-space: nowrap;
        margin-top: 5px;

    }


    .menu-wrapper {
      top: 85px;
      padding: 12px 18px;
    }

    .collapsible-content {
      padding: 0px 10px 0px 10px;
    }

    .pricing-section {
      margin-bottom: 24px;
    }

    .pricing-section h2 {
      padding: 10px;
      transform: scale(0.80);
    }

    h2 {
      transform: scale(0.80);

    }

    .footer {
      padding-top: 8px;
      padding-bottom: 0px;

    }
    
    .footer-wrapper ul {
        display: inline-flex;
        transform: scale(0.80);
        transform-origin: top center;
    }
} 
