/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
body {
    background: #0B0B0B; 
    padding: 0px;
    margin: 0px;
    color: #FFFFFF;
     display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.content {
  flex: 1; 
}
div {
  margin: 0px;
  padding: 0px;
}
.pink-text {
    color: #E1066D;
}
h1 {
   font-family: "Libre Bodoni", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 72px;
  line-height: 70px;
}
h2 {
    font-family: "Libre Bodoni", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
}
h3 {
    font-family: "Libre Bodoni", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
}
h4{
    font-family: "Libre Bodoni", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
}
h5 {
    font-family: "Libre Bodoni", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
}
h6 {
    font-family: "Libre Bodoni", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}
p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 28px;
}
footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px;
    bottom: 0;
    height: 100px;

}
footer a {
    color: white;
    text-decoration: none;
}
.desktop {
    display: flex;

}
.mobile {
    display: none;

}
.content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.content-container ul li {
    font-size: 1.2rem;
    line-height: 1.5em;
}
.content-container ul li::marker {
    color: #E1066D;
    font-size: 1.2rem;
}
.columns {
    display: flex;
    gap: 20px;
}
.column-1 {
    padding: 0px;
    margin-top: -20px;
}
.column-2 {
    max-width: 300px;
}
.page-content {
    max-width: 800px;
    margin: 0 auto;
}
.page-content-wide {
    max-width: 1200px;
    margin: 0 auto;
}
.section-white {
    background-color: #FFFFFF;
    color: #000000;
    padding: 20px;
   margin-top: 20px;
    margin-bottom: 20px;
}
.section-white ul li {
    font-size: 1.2rem;
}
.section-white ul li::marker {
    color: #E1066D;
}
.section-white ol li {
    font-size: 1.2rem;
}
.section-white ol li::marker {
    color: #E1066D;
    font-size: 2.3rem;
}
.section-black {
    background-color: #000000;
    color: #FFFFFF;
    padding: 20px;
   margin-top: 20px;
    margin-bottom: 20px;
}
.section-black ul li::marker {
    color: #E1066D;
}    
.section-pink {
    background-color: #E1066D;
    color: #FFFFFF;
    padding: 20px;
   margin-top: 20px;
    margin-bottom: 20px;
}       
@media (max-width: 768px) {
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
  nav {
    width: 100%;
  }
    .mobile-nav-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px;
      width:100%;
    }
    .mobile-menu-button {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      height: 14px;
      width: 30px;
      margin-right: 20px;
      cursor: pointer;
    }
    .bar {
      background-color: #FFFAEE;
      height: 2px;
      width: 30px;
      border-radius: 8px;
    }
    .mobile-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 10px 10px;
    }
    .mobile-menu.open {
        display: flex;
    }
}