
:root {
    --teal: #3c8780;
    --subtle-teal: #def1ea;
    --super-subtle-teal: #e7f0ee;
    --sage: #6ca36c;
    --subtle-sage: #cdebd7;
    --cream: #f7f5f0;
    --text: #2f3a38;
    --muted: #5f6d69;
    --white: #ffffff;
    --border: #d9e2dd;
    --notice: #cfe5dbdd;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Zain", sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--cream);
}

a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: var(--teal);
}

a.email {
    color: var(--sage);
}
a.look-link {
    color: var(--sage);
}


img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1000px, 92%);
    margin: 0 auto;
}

header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem 0.6rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--teal);
}

.nav-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

#hamburger {
    display: none;
}

.top-nav {
    display: block;
}

@media screen and (max-width: 846px) {
    #hamburger {
        display:block;
        font-size: 2rem;
        color: var(--text);
        padding-right: 1rem;
    }
    #hamburger:hover {
        display:block;
        font-size: 2rem;
        color: var(--teal);
        cursor: pointer;
    }

    .top-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: none;
        gap: 1rem;
        flex-wrap: wrap;
    }

    nav {
        display: block;
        padding: 0.25rem 0rem;
        gap: 0;
    }
    .logo {
        padding-left: 1rem;
    }
    .nav-links {
        display: none;
    }
    .nav-links.show {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.2rem;
        padding: 0 5px;
    }
    
    /* .nav-links a {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--subtle-teal);
        padding: 8px;
        border-radius: 15px;
        box-shadow: inset 0 0 16px 4px var(--subtle-sage);
    } */
}

#home {
    height: 70vh;
    background:
    linear-gradient(
        to bottom,
        rgba(238,245,242,1) 0%,
        rgba(245, 244, 238, 0.82) 35%,
        rgba(247,245,240,0.82) 65%,
        rgba(247,245,240,1) 99%

    ),
    url("img/canva-paint-splat3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero {
    /* padding: 16rem 0 12rem; */
    /* background: linear-gradient(to bottom, #eef5f2, var(--cream)); */
    border: none;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    font-family: "Zain", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.hero p {
    max-width: 700px;
    margin-bottom: 1.2rem;
    color: var(--muted);
    font-size: 1.2rem;
}

.hero .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.hero .subtext {
    margin-top: 1rem;
}

#welcome {
    border: none;
}

.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0 1rem;
}

.button {
    display: inline-block;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    background: var(--teal);
    color: var(--white);
    font-weight: bold;
    box-shadow: -1px 3px 4px rgba(0,0,0,0.05);
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

.button:hover {
      /* transform: translateY(2px); */
      /* box-shadow: -2px 4px 4px rgba(0,0,0,0.15); */

      /* text-shadow: 0 1px 2px rgba(0,0,0,0.0);
      box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25); */
    color: var(--white);
    box-shadow: inset 0 4px 6px rgba(0,0,0,0.18);
    text-shadow: 0 1px 2px rgba(0,0,0,0.0);
}

.button:active {
    transform: scale(0.99);
    box-shadow: inset 0 2px 6px 4px rgba(0, 30, 19, 0.2);
    text-shadow: 0 1px 2px rgba(0,0,0,0.0);
}

.button.secondary {
    background: var(--sage);    
}

section {
    padding: 4rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    position: relative;
}

section img {
    border-radius: 15px;
    margin-bottom: 15px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--teal);
}

h3 {
    margin: 1.5rem 0 0.75rem;
    color: var(--text);
}

p {
    margin-bottom: 1rem;
}

ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

.card-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.card-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

.card {
    flex: 1 0 150px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem;
}

.card.primary {
    background: var(--notice);
}

.note-box {
    background: var(--notice);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem 1.25rem 0rem;
    margin-bottom: 1rem;
}

.faq-item {
    background: var(--super-subtle-teal);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
}

.faq-item h3 {
    font-family: "Gaegu", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 1.25rem;
    text-align: center;
}
.faq-item p {
    text-indent: 2rem;
    padding: 0;
    margin-bottom: 1rem;
}

footer {
    padding: 2rem 0 3rem;
    border-top: 1px solid var(--border);
    background: var(--white);
}

.muted {
    color: var(--muted);
}

.small-text {
    font-size: 0.75rem;
    color: var(--muted);
}
/* p.subtext {
    font-size: 1rem;
    margin-top: 3rem;
} */


.center-text {
    text-align: center;
}

.center-flex{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#contact {
    /* border: none; */
    background: linear-gradient(to bottom, var(--cream), #eef5f2);
}

#resources .card-grid {
  width: 100%;
}
#saying .quote-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}
.quote {
    background-color: var(--subtle-sage);
    box-shadow:inset 0 0 12px 6px var(--subtle-teal);
    padding: 20px 20px 1px 20px;
    border-radius: 20px;
    margin: 15px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
}

.quote .quote__author::before {
    content: "- ";
}

.split-text {
    display: flex;
    justify-content: space-between;
}

.split-text p:first-of-type{
    margin-right: 10px;
}
.split-text p:nth-of-type(2){
    margin-left: 10px;
}


.blob {
    font-size: 1rem !important;
    background-color: var(--subtle-sage);
    color: black !important;
    border-radius: 30px;
    max-width: 250px !important;
    box-shadow: inset 0 0 32px 4px var(--subtle-teal);

    padding: 20px;
    /* line-height: 1rem; */


    text-align: center;
}


#donate-btn {
    position: fixed;
    bottom: 2vh;
    right: 3vw;
}

#calendar-title {
    font-size: 1.5rem;
    text-align: center;
    padding: 1.5rem 1rem 1.5rem;
}

#calendar-container {
    width: 100%;
    height: 100%;
    padding: 0 10% 10%;
}

#calendar-container iframe {
    width: 100%;
    height: min(75vh, 100vw);
    border: 0;
    display: block;
    box-shadow: 0 0 32px 4px #def1ea1f;
}


@media screen and (max-width: 800px) {
    .blob {
        max-width: 80%!important;
        /* line-height: 1rem; */

        position: static;
        transform: none;
        margin: auto;
    }
    #calendar-container {
        padding: 0 5% 10%;
    }

    #calendar-container iframe {
        height: 100vw;
    }
}


@media screen and (max-width: 500px) {
    
}

/* .inset-shadow {
    box-shadow: inset -1px 4px 12px 1px rgba(0, 30, 19, 0.2);
    border: solid 3px #2f3a38;
    width: 100%;
} */


.phone-number {
    color: var(--teal);
}












/* Zain font */


.zain-extralight {
  font-family: "Zain", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.zain-light {
  font-family: "Zain", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.zain-regular {
  font-family: "Zain", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zain-bold {
  font-family: "Zain", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zain-extrabold {
  font-family: "Zain", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.zain-black {
  font-family: "Zain", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.zain-light-italic {
  font-family: "Zain", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.zain-regular-italic {
  font-family: "Zain", sans-serif;
  font-weight: 400;
  font-style: italic;
}


/* Gaegu font */

.gaegu-light {
  font-family: "Gaegu", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.gaegu-regular {
  font-family: "Gaegu", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.gaegu-bold {
  font-family: "Gaegu", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* NTR Font */

.ntr-regular {
  font-family: "NTR", sans-serif;
  font-weight: 400;
  font-style: normal;
}


/* Glory Font


.glory-<uniquifier> {
  font-family: "Glory", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

*/