@font-face {
    font-family: "Figtree Regular";
    src: url("../fonts/Figtree-Regular-EqTL88j.ttf") format("truetype");
}

@font-face {
    font-family: "Figtree Bold";
    src: url("../fonts/Figtree-Bold-PWhGhTD.ttf") format("truetype");
}

:root {
    --color-accent: #EFE600;
}




/*------------------------------------*\
  ------------- #RESET -------------
\*------------------------------------*/
html {
    font-size: 17px;
}

* {
    box-sizing: border-box;
    margin:  0;
    padding: 0;
    font-family: "Figtree Regular", sans-serif;
    font-size: 1rem;
}

main {
    padding-top: 80px;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--color-accent);
}

a {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6, div, p, span, li {
    font-weight: normal;
}

h1 {
    text-align:  center;
    font-size: 3rem;
    font-family: "Figtree Bold", sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

footer {
    margin: auto auto 0;
    padding: 50px 0;
    width: 90%;
    max-width: 1200px;
}

.page-title {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: left;
}

p {
    margin-bottom: 10px;
}

h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-family: "Figtree Bold", sans-serif;
}

.footer-bar {
    display: flex;
    justify-content:  center;
    align-items:  center;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 20px;
}

.footer-bar--links {
    margin-bottom: 50px;
}

.footer-bar__link {
    text-decoration: underline;
}

/*------------------------------------*\
  --------- #HOME PAGE ---------------
\*------------------------------------*/

.home__logo {
    display: block;
    margin: 150px auto 30px;
    width: 250px;
}

.home__description {
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.home__stores {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.home__title {
    font-size: 2.5rem;
    margin-top: 50px;
}

@media all and (max-width: 500px) {
    .home__logo {
        margin-top: 50px;
    }

    .home__title {
        font-size: 1.5rem;
    }
}

/*------------------------------------*\
  --------- #GENERIC COMPONENTS ------
\*------------------------------------*/

/* Generic button component */
.btn {
    display: inline-block;
    background: var(--color-accent);
    color: #000;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: "Figtree Bold", sans-serif;
    margin: 10px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: normal;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn--secondary {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: #333;
}

.btn--secondary:hover {
    background: var(--color-accent);
    color: #000;
}

