/* Pallette 
____________________________________________________
Void Purple     #100520
Slightly Lighter #190734
Antique Gold    #BD9445

Off-White       #F4F1EA
Parchment       #E0D3AF
Warm Gray       #8A8578

Muted Teal      #2E6F68
Blue-Gray       #5E6B73

Bronze Accent   #8C6A2F
Deep Wine       #4B1F3A
____________________________________________________*/

/* custom font 
____________________________________________________*/
@font-face {
  font-family: 'Audiowide';
  src: url('/fonts/Audiowide-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* nav 
__________________________________________________ */

/* Hamburger icon */
.hamburger {
  position: fixed;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1100;
  color: #BD9445;
}

/* Side menu panel */
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 20vw;            /* 10% of viewport width */
  height: 100vh;           /* full height */
  background-color: #100520; /* cosmic purple */
  transform: translateX(100%); /* hidden by default */
  transition: transform 0.3s ease-in-out;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Menu links */
.menuheader {
  display: block;           /* ensures margin works predictably */
  font-weight: bolder;        /* if you want it visually distinct */
  font-size: 1.7rem;        /* optional, for emphasis */
  margin-top: 2rem;         /* vertical breathing room */
  margin-bottom: 1rem;      /* optional, to separate from next item */
  text-align: center;       /* keep it centered in the panel */
  color: #8C6A2F;            /* match your menu style */
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: center;
}

.side-menu li {
  margin: 2rem 0;
}

.side-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Open state */
.side-menu.open {
  transform: translateX(0);
}

/* Shared
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button {
  border-radius: 100px;
}

/* Sections
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.section {
  padding: 8rem 0 7rem;
  text-align: center;
}
.section-heading,
.section-description {
  margin-bottom: 1.2rem;
}

/* Hero
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.phones {
  position: relative;
}
.phone {
  position: relative;
  max-width: 80%;
  margin: 3rem auto -12rem;
}
.phone + .phone {
  display: none;
}




/* Values
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.values {
  background-image: url('../images/cosmic_fullscreen_faded.png');
  background-size: cover;
  color: #E0D3AF;
  padding-bottom: 5rem;
}
.values a {
  color: #FFF;
}
.value-multiplier {
  margin-bottom: .5rem;
  background-color: #BD9445;
  color: #8C6A2F;
}
.value-heading {
  margin-bottom: .3rem;
}
.value-description {
  opacity: .8;
  font-weight: 300;
}

/* Help
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.get-help {
  border-bottom: 1px solid #ddd;
}

/* Categories
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.categories {
  background-image: url('../images/cosmic_fullscreen_faded.png');
  background-size: cover;
  color: #E0D3AF;

}
.categories .section-description { 
  margin-bottom: 4rem;
}

/* Bigger than 550 */
@media (min-width: 550px) {
  .section {
    padding: 12rem 0 11rem;
  }
  .hero {
    padding-bottom: 12rem;
    text-align: left;
    height: 165px;
  }
  .phone {
    position: absolute;
    top: -7rem;
    right: 3rem;
    max-height: 362px;
    z-index: 3;
  }
  .phone + .phone {
    top: -6rem;
    display: block;
    max-width: 73.8%;
    right: 0;
    z-index: 2;
    max-height: 338px;
  }
  .hero-heading {
    font-size: 2.4rem;
  }
}

/* Bigger than 750 */
@media (min-width: 750px) {
  .hero {
    height: 190px;
  }
  .hero-heading {
    font-size: 2.6rem;
  }
  .section {
    padding: 14rem 0 15rem;
  }
  .hero {
    padding: 16rem 0 14rem;
  }
  .section-description {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  .phone {
    top: -14rem;
    right: 5rem;
    max-height: 510px;
  }
  .phone + .phone {
    top: -12rem;
    max-height: 472px;
  }
  .categories {
    padding: 15rem 0 8rem;
  }
}

/* Bigger than 1000 */
@media (min-width: 1000px) {
  .section {
    padding: 20rem 0 19rem;
  }
  .hero {
    padding: 22rem 0;
  }
  .hero-heading {
    font-size: 3.0rem;
  }
  .phone {
    top: -16rem;
    max-height: 615px;
  }
  .phone + .phone {
    top: -14rem;
    max-height: 570px;
  }
}