@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
   --text: #111;
      --muted: #666;
      --border: #e6e6e6;
      --bg: #fff;
      --radius: 12px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}

body {
  font-family: "Montserrat", sans-serif;
}

.navbar-main {
  background-color: #ffffff;
  padding: 10px 0px 10px 0px;
  width: 100%;
  height: 8rem;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: auto;
  padding-bottom: auto;
}

.nav-logo {
  width: 6rem;
  height: 6rem;
}

.nav-container__links {
  width: 22%;
}
.nav_links {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  list-style-type: none;
  font-size: 1.5rem;
  flex-wrap: wrap;
}
.nav_links li {
  font-size: 1.7rem;
}

.nav_links a {
  text-decoration: none;
  color: #4c4c4c;
  font-weight: 600;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

.nav_links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #007567;
  transition: width 0.37s ease;
}

.nav_links a:hover::after {
  width: 100%;
}

.nav_links a:hover {
  color: #007567;
}

/*
Hamburger button
*/

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 2.5rem;
  height: 0.5rem;
  width: 3.3rem;
  background: #222;
  margin: 0.5rem 0;
  transition: 0.3s;
}

.nav__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
}

/*Hero Section*/
.hero_section {
  width: 100%;
  padding: 0.5rem 2rem 2rem 2rem;
}

.hero_section-header {
  min-height: 7rem;
  background-color: #32462f;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 3rem 3rem;
}
.hero_section-header p {
  font-size: 1.9rem;
  font-weight: 600 !important;
}
.action_button {
  border: 0.2rem solid #fff;
  border-radius: 50%;
  margin: 0.3rem 0;
  padding: 1rem 2.5rem 1rem 2.5rem;
  border-radius: 5rem;
  transition: background-color 0.7s ease;
}
.action_button a {
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600 !important;
}

.action_button:hover {
  background-color: #00754a;
  cursor: pointer;
}

/*helpers*/
.margin-top-2{
    margin-top:2rem;
}
/*grid sections*/
.grid-2 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;

 }

 .grid-2-reverse{
    width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
 }

 .grid-2-reverse div:nth-child(1){
   order:1;
 }

 .grid-2-reverse div:nth-child(2){
   order:2;
 }

 .image_div{
 max-height: 42rem;
 }

.image_div img {
  width:100%;
  height:100%;
}

.info_grids{
    height: 100%;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:3rem;
    font-size:1.6rem;
    color:#32462F;
    padding:4rem;
    text-align: left;
}

.info_cream{
    background-color: #F7F0E4;
}

.info_green{
  background-color: #006341;
  color:#fff;
}

.action_button-cream {
  border: 0.1rem solid #000;
  border-radius: 50%;
  margin: 0.3rem 0;
  padding: 1rem 2.5rem 1rem 2.5rem;
  border-radius: 5rem;
  transition: background-color 0.7s ease;
}
.action_button-cream a {
  color: #000;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600 !important;
}

.action_button-cream:hover{
    background-color:lightgray;
    cursor:pointer;
}

.action_button-green {
  border: 0.1rem solid #fff;
  border-radius: 50%;
  margin: 0.3rem 0;
  padding: 1rem 2.5rem 1rem 2.5rem;
  border-radius: 5rem;
  transition: background-color 0.7s ease;
}
.action_button-green a {
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600 !important;
}

.action_button-green:hover{
    background-color:#003925;
    cursor:pointer;
}

/*Terms section*/
.terms_section{
  width:100%;
    padding: 0.5rem 4rem 2rem 4rem;
    height:50rem;
    display: flex;
    justify-content: center;
}
.terms_section ul{
  height: 100%;
  width:60%;
  list-style-type: none;
  display:flex;
  justify-content:space-evenly;
  flex-direction: column;
  align-items: center;
 
}

.terms_section li{
  font-size: 1.5rem;
}

hr {
  border: none; /* Remove default border */
  height: 1px; /* Set the height of the line */
  background-color: #ccc; /* Optional: set a background color for the line itself */
  /* Apply the shadow */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/*Accordion desktop*/

.footer-wrap {
      max-width: 110rem;
      margin: 4rem auto;
      padding: 2.4rem;
      background: var(--bg);
  
    }

    /* Desktop grid */
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 2.8rem;
    }

    .col-title {
      font-weight: 650;
      margin: 0 0 1.4rem;
      font-size: 1.8rem;
    }

    .col-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 1rem;
    }

    .col-links a {
      color: var(--muted);
      text-decoration: none;
      line-height: 1.4;
    }
    .col-links a:hover { color: var(--text); }

    /* Accordion (mobile) */
    .footer-accordion {
      display: none;
      border-top: 0.1rem solid var(--border);
    }

    .acc-item {
      border-bottom: 0.1rem solid var(--border);
    }

    .acc-btn {
      width: 100%;
      background: transparent;
      border: 0;
      padding: 1.6rem 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.8rem;
      font-weight: 650;
      cursor: pointer;
      color: var(--text);
    }

    .chev {
      width: 18px;
      height: 18px;
      display: inline-block;
      transform: rotate(0deg);
      transition: transform 180ms ease;
      opacity: 0.7;
    }

    .acc-panel {
      max-height: 0;
      overflow: hidden;
      transition: max-height 220ms ease;
    }

    .acc-panel-inner {
      padding: 0 0 16px;
    }

    .acc-panel a {
      display: block;
      padding: 8px 0;
      color: var(--muted);
      text-decoration: none;
    }
    .acc-panel a:hover { color: var(--text); }

    .acc-item[aria-expanded="true"] .chev {
      transform: rotate(180deg);
    }


    /*Starbucks foooter*/
    .starbucks_footer{
      width:80%;
      margin: 4rem auto;
    }
.footer_link{
    width: 80%;
}
.footer_link ul{
   
     display: flex;
     justify-content: space-between;
     list-style-type: none;
   
    }
.footer_link li{
    /* border-right: 0.1rem solid #000; */
    padding-right:0.4rem;
   display:flex;
   align-items: center;
   justify-content: center;
}


.footer_link a{
  text-decoration: none;
  display: block;
  width:100%;
  font-size:1.3rem;
  font-weight:640;
  transition: color 220ms ease;
  color:rgba(0, 0, 0, 0.6);

}
.footer_link a:hover{
  color: var(--muted);
}
.footer_a{
  display: block;
  margin-top: 4rem;
  color:#006341;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 800;
}
