/* --------- Global --------- */
html
{
    scroll-behavior: smooth;
}

body
{
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    background-color: #DAD7CD;
    color: #222
}

main
{
    flex: 1;
}

h1, h2
{
    color: #344E41
}

h3
{
    font-weight: 600;
    font-size: 1.8rem;
    color:#588157
}

hr 
{
    border: none;
    height: 2px;
    background-color: #A3B18A;
    margin: 1rem;
}

.page-title
{
    font-size: 4rem;
    font-weight: 700;
    margin-top: 2rem;
}

.flag
{
    width: 150px;
    height: auto;
}

.logo
{
    width: 250px;
    height: auto;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.btn
{
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    padding: 12px 24px;
    background-color: #588157;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: .5rem;
}

.btn:hover
{
    background-color: #3A5A40;
}
/* --------- END of Global --------- */

/* --------- Header/Bar and Navigation --------- */
.header 
{
    font-family: 'Inter', sans-serif;
    color:#344E41;
    font-weight: 500;
    font-size: 1.3rem;
    padding: 10px;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.header ul
{
    display: flex;
    list-style: none;
    gap: 3rem;
    padding: 0;
    margin: 0;
}

nav a
{
    color: #344E41;
    text-decoration: none;
}

nav a:hover
{
    color: #588157;
}
/* --------- END of Header/Bar and Navigation --------- */


/* --------- Hero --------- */
.hero
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-bottom: 7rem;
}

.hero-content
{
    /*FILL LATER IF NEEDED TO SEPERATE THE CONTENT FROM THE CONTAINER*/
}

.hero-motto
{
    font-size: 1.8rem;
    font-weight: 600;
}

.hero-paragraph
{
    font-weight: 400;
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
/* --------- END of Hero --------- */


/* --------- Clothing/Products --------- */
.clothing
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.clothing-content
{
    /*FILL LATER IF NEEDED TO SEPERATE THE CONTENT FROM THE CONTAINER*/
}

.product-paragraph
{
    font-size: 1.3rem;
    margin-bottom: 5rem;
}

.product-title
{
    font-size: 2.5rem;
    font-style: italic;
}

.product-grid
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

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

.product-card img
{
    width: 90%;
    height: auto;
    margin-bottom: 1rem;
}

.product-card p
{
    font-weight: 600;
}
/* --------- END of Clothing/Products --------- */

/* --------- About --------- */
.about
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.about-content
{
    max-width: 900px;
    margin: 0 auto;
}

.about-paragraph
{
    text-align: left;
    font-size: 1.3rem;
    line-height: 1.7;
}
/* --------- END of About --------- */
/* --------- Contact --------- */
.contact
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.contact-content
{
    /*FILL LATER IF NEEDED TO SEPERATE THE CONTENT FROM THE CONTAINER*/
}

.contact-paragraph
{
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
/* --------- END of Contact --------- */


/* --------- Footer --------- */
.footer
{
    background-color: #344e41;
    color: #DAD7CD;
    padding: 1rem;
    margin-top: 5rem;
}

.footer-content
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    gap: 4rem;
}

.footer-navigation a
{
    text-decoration: underline;
    color: #DAD7CD;
}

.footer-navigation a:hover
{
    color: #588157;
}

.footer-contact-info a
{
    text-decoration: underline;
    color: #DAD7CD;
}

.footer-contact-info a:hover
{
    color: #588157;
}
/* --------- END of Footer --------- */

/* --------- Responsiveness for Mobile --------- */
@media (max-width: 768px)
{
    .logo
    {
        width: 220px;
        margin-bottom: .5rem;
    }

    h1
    {
        font-size: 2.2rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    h2
    {
        font-size: 1.7rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    h3
    {
        font-size: 1.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .header ul
    {
        list-style: none;
        gap: 1.2rem;
        padding: 0;
        margin: 0;
    }

    .footer-navigation ul
    {
        list-style: none;
        gap: 1.2rem;
        padding: 0;
        margin: 0;
    }

    .page-title
    {
        font-size: 2.5rem;
    }

    .hero-motto
    {
        font-size: 1.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .hero-paragraph
    {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .contact-paragraph
    {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .product-paragraph
    {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .about-paragraph
    {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }

    .footer-content
    {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .product-grid
    {
        grid-template-columns: 1fr;
    }
}

