/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  color: #111;
  background-color: var(--white);
  line-height: 1.6;
  letter-spacing: .02rem;
}

h1, h2, h3 {
  color: var (--black);
  margin-bottom: 0.5rem;
}

p {
    font-size: 1.25rem;
  margin-bottom: 1rem;
}

.cta-button {
  margin-top: 1rem;
  background: var(--red);
  color: var(--white);
  padding: 1rem 2rem;
  border: solid 1px var (--black);
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
}

/* Brand Colors */
:root {
  --red: #f03c32;
  --yellow: #fedb31;
  --gray: #eae8e8;
  --white: #fdfefe;
  --black: #231f20;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--red);
  padding: 0rem 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-left {
  font-size: 1.5rem;
    letter-spacing: 0.08rem;
  font-weight: bold;
  color: var(--yellow);
}

.nav-right a{
  margin: 0.75rem 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  margin: 1rem;
  color: var(--yellow);
}

/* Hero */
.hero {
  text-align: center;
  padding: 5rem 1rem;
  background: var(--yellow);
}

.hero-logo {
  width: 15rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-weight: 700;
  line-height: 2.9rem;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 700px;
    font-weight: 300;
  margin: 0 auto;
}

/* Scrolling Banner */
.scrolling-banner {
  overflow: hidden;
  white-space: nowrap;
  background: var(--gray);
  color: var(--black);
  padding: 2rem;
  font-weight: 200;
}

.scrolling-banner h2 {
  white-space: wrap;
    text-align: center;
}
.scrolling-banner p {
    font-size: 1rem;
  white-space: wrap;
    text-align: center;
}

.scrolling-track {
  display: inline-block;
        font-size: 2rem;
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Services Section */
.services {
  padding: 2rem 1rem;
  background: var(--white);
  text-align: center;
}

.services p {
    font-size: 1rem;
    font-weight: 200;
  white-space: wrap;
    text-align: center;
}

.service-cards p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-weight: 500;
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: auto;
}

.card {
  background: var(--gray);
  padding: 2.25rem;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.card h3 {
  color: var(--red);
  margin-bottom: 0.5rem;
    text-align: center;
    
}

.card .price {
  font-weight: bold;
  color: var(--black);
  margin-top: 1rem;
    border: solid 1px var(--red);
    border-radius: 30px;
    padding: .75rem;
    text-align: center;
}

.card .for {
    margin-top: 1rem;
    line-height: 1.25rem;
    font-style: italic;
    font-size: 1rem;
    font-weight: 300;
}

/* Accordion */
.accordion-section {
  padding: 2rem 1rem;
  background: var(--yellow);
  text-align: center;
}

.accordion-section p {
    font-size: 1rem;
    max-width: 700px;
    font-weight: 200;
  white-space: wrap;
    text-align: center;
    margin: auto;
    padding: .75rem 1rem 1rem;
}

.accordion-button {
  background-color: var(--white);
  border: solid 1px var(--red);
  color: var(--red);
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
    max-width: 1000px;
  margin-bottom: .25rem;
  cursor: pointer;
  border-top-right-radius: 9px;
  border-top-left-radius: 9px;
  border-bottom-right-radius: 9px;
  border-bottom-left-radius: 9px;
  padding: 1rem;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 1rem;

}

.accordion-content {
  display: none;
    max-width: 1000px;
  padding: .75rem 1rem 1rem;
    margin: auto;
  text-align: left;
}

.accordion-button.active + .accordion-content {
  display: block;

}

/* deliverables */

.deliverables-section {
  padding: 2rem 1.5rem;
  background: var(--white);
  text-align: center;
}

.deliverables-section .card {
  background: var(--white);
  padding: 1rem;
  text-align: left;
    box-shadow: none;
}

ul{
    padding-top: .75rem;
}

.deliverables-section p {
    font-size: 1rem;
    font-weight: 200;
  white-space: wrap;
    text-align: center;
}
/* Footer */
.footer {
  background: var(--black);
  color: var(--white);

      align-items: center;
  text-align: center;
  padding: 2rem 1rem;
}

.footer-logo {
  width: 60px;
  margin-bottom: 1rem;
}

.footer a{
    text-decoration: none;
    color: var(--white);
}
.footer h2 {color: var(--yellow)}

@media (min-width: 768px) {
  .service-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .navbar {
    flex-direction: row;
  }
  .nav-right {
    display: flex !important;
  }
  .mobile-nav-toggle {
    display: none;
  }
  .footer {
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .nav-right {
    display: none;
    flex-direction: column;
    width: 35%;   
    background: var(--red);
    position: absolute;
    text-align: right;
    top: 68px;
    right: 0px;
    padding-right: 0.5rem;
  }
  .nav-right.open {
    display: flex;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .footer {
    text-align: center;
  }
  .footer .cta-button {
      border: solid 1px var(--white);
      text-decoration: none;
  }
}
