/* SITE COLORS */

/* DNA Grey 1 181C1C */
/* DNA Grey 2 313535  */
/* DNA Grey 3 5E6767  */
/* DNA Grey 4 859393  */
/* DNA Grey 5 ADB8B8  */
/* DNA Grey 6 D6DCDC */
/* DNA Primary Dk Teal 0B2721 */
/* DNA Primary Lt Teal 25C6AE */
/* DNA Primary Mid Teal 11847A */
/* DNA Primary White DDEEEC  */
/* DNA Secondary Green 619152  */
/* DNA Secondary Mustard A48F34  */
/* DNA Secondary Orange E76A1E  */
/* DNA Secondary Persimon BE4419  */
/* DNA Secondary Salmon E26C52  */
/* DNA Tint 1 408A84  */
/* DNA Tint 2 52ABA4  */
/* DNA Tint 3 76BAB5  */
/* DNA Tint 4 99CBC7  */
/* DNA Tint 5 BBDDDA */

   :root {
        --DNA_Grey_1: #181C1C;
        --DNA_Grey_2: #313535;
        --DNA_Grey_3: #5E6767;
        --DNA_Grey_4: #859393;
        --DNA_Grey_5: #ADB8B8;
        --DNA_Grey_6: #D6DCDC;
        --DNA_Primary_Dk_Teal: #0B2721;
        --DNA_Primary_Lt_Teal: #25C6AE;
        --DNA_Primary_Mid_Teal: #11847A;
        --DNA_Primary_White: #DDEEEC;
        --DNA_Secondary_Green: #619152;
        --DNA_Secondary_Mustard: #A48F34;
        --DNA_Secondary_Orange: #E76A1E;
        --DNA_Secondary_Persimon: #BE4419;
        --DNA_Secondary_Salmon: #E26C52;
        --DNA_Tint_1: #408A84;
        --DNA_Tint_2: #52ABA4;
        --DNA_Tint_3:#76BAB5;
        --DNA_Tint_4: #99CBC7;
        --DNA_Tint_5: #BBDDDA;

        --DNA_Font_Body: 'Montserrat';
        --DNA_Font_Headline: 'Michroma';
       --max-width: 1200px;
   }

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

html {
    /* font-size: 10px; */

    /* 10px / 16px = 0.625 = 62.5% */
    /* Percentage of user's browser font-size setting */
    font-size: 62.5%;
    overflow-x: hidden;

    /* Does NOT work on Safari */
    /* scroll-behavior: smooth; */
}

html,
body {
    /* height: 100%; */
}

/* Base Styles */
body {
    height: 100vh;
    /* display: flex; */
    /* flex-direction: column; */
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    background-color: var(--DNA_Primary_White);
    color: var(--DNA_Grey_1);
    line-height: 1.8;
    font-weight: 300;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
}

h2,
h3 {
    font-family: 'Michroma', sans-serif;
    letter-spacing: 1px;
    text-transform: lowercase;
}

h2 {
    color: var(--DNA_Primary_Dk_Teal);
    font-size: 2.6rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
}

h3 {
    font-weight: 200;
    font-size: 1.5rem;
}

p {
    line-height: 2;
}


/* -------------------------- HEADER -------------  */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--DNA_Grey_1);
    color: var(--DNA_Primary_Mid_Teal);
    z-index: 1000;
    padding: 1.2rem 2rem;
    border-bottom: 12px solid white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.site-header .header_block {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 75vw;
    margin: auto;
    padding-top: 2rem;
    padding-bottom: 1.6rem;
}

.site-header .logo {
    /* display: flex; */
    /* align-items: center; */
    /* text-decoration: none; */
    /* color: #BE4419; */
    /* font-family: 'Michroma', sans-serif; */
    /* font-size: 1.2rem; */
    /* letter-spacing: 1px; */
}
 .site-header .nav {
    margin-bottom: 0;
    padding-bottom: 0;
 }
.site-header .logo img {
    height: 80px;
    /* margin-right: 0.8rem; */
}

.site-header .nav a {
    font-family: 'Montserrat';
    font-size: 1.6rem;
    margin-left: 1.8rem;
    margin-bottom: 0;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--DNA_Tint_3);
    font-weight: 600;
    transition: color 0.3s;
}

.site-header .nav a:hover {
    color: var(--DNA_Secondary_Orange);
}

/* ---------------------- HERO -------------- */
.hero {
    position: relative;
    max-width: 75vw;
    background-image: url('images/hero_ornaments.JPG');
    background-position: center;
    background-repeat: no-repeat;
    background-size: fill;
    height: 60vh;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 6rem;
    background-color: #11847A;
}

.hero_text_block_container {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    margin-top: 0;
    width: 40%;
    z-index: 2;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.5);
}

.hero_text_block {
    background-color: var(--DNA_Grey_6);
    color: var(--DNA_Grey_2);
    padding: 25px 35px;
}

.hero_text_title_bar{
    display: block;
}

.hero_text_title_bar h3 {
    letter-spacing: 2px;
    font-family: var(--DNA_Font_Body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--DNA_Grey_2);
    text-transform: uppercase;
    margin-bottom: 1rem;

}

.hero_text_title_bar h2 {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.4;
    color: var(--DNA_Primary_Mid_Teal);
    margin-bottom: 1.8rem;
}

.hero_text {
    margin-bottom: 4rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero_btn {
    border: 0 none;
    padding: 12px 30px;
    border-radius: 3px;
    background-color: var(--DNA_Secondary_Orange);
    color: var(--DNA_Primary_White);
    font-family: var(--DNA_Font_Body);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    margin: 12px;
}

/* ---------------------- SECTIONS ------------------- */
section {
    padding: 6rem 0rem;
    /* max-width: 1100px; */
    max-width: 75vw;
    margin: auto;
}

.grid {
    display: grid;
    column-gap: 6.4rem;
    row-gap: 9.6rem;

}

/* -------------------- PRODUCTS ------------------------ */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    gap: 2.4rem;
}

.product {
    display: flex;
    justify-content:space-between;
    flex-direction: column;
    border-radius: 10px;
    padding: 1.8rem;
    text-align: center;
    background: #fff;
box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);}

.product img {
    max-width: 100%;
    /* border-radius: 10px; */
    margin-bottom: 1.4rem;
}

.product h3 {
    color: #11847A;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    text-transform: capitalize;
}

.product .price {
    font-family: var(--DNA_Font_Headline);
    font-weight: 600;
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--DNA_Secondary_Persimon);
}

.product p {
    font-size: 1.5rem;
    line-height: 1.6;
    /* margin: 1.2rem */
}

.product form {
    margin-top: auto;
}

.product button {
    width: 100%;
    font-size: 1.8rem;
    letter-spacing: 1.05px;
    margin-top: 1.8rem;
}

/* ------------------------- CUSTOM -------------------------*/
#custom {
    background: var(--DNA_Tint_2);
    padding: 2.4rem;
    border-radius: 18px;
}

#custom h2 {
    color: var(--DNA_Tint_5);
}

#custom p {
    font-size: 1.8rem;
    line-height: 1.4;
}

#custom form {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

#custom .personal {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 0;
    width: 30%;

}
#custom textarea {
    width: 50%;
}

input,
textarea,
button {
    padding: 1.2rem;
    border-radius: 6px;
    font-size: 1.5rem;
    font-family: 'Montserrat', Arial, sans-serif;
    text-transform: uppercase;
}

input,
textarea {
    font-weight: 300;
}

button {
    background: #11847A;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 700;
}

button:hover {
    background: #0B2721;
}

/* ----------------------------ABOUT US ---------------------- */
.about_block {
    display: flex;
}

.about_block_text {
    width: 50%;
}
.about_block p {
    padding-right: 2.8rem;
    margin-top: -0.6rem;
    margin-bottom: 1.6rem;
}
.about_block_photo {
    width: 50%;
    height: 100%;
    min-height: 300px;
    background-image: url('images/about_us.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    background-color: #25C6AE;
    overflow: hidden;

}


/* ----------------------------- FOOTER ------------- */
footer {
    background: #1B1C1C;
    color: #DDEEEC;
    padding: 6.6rem 0 4rem 0;
    /* text-align: center; */
    /* font-size: 0.9rem; */
    /* font-weight: 400; */
}

.footer_block {
    max-width: 75vw;
    padding-bottom: 4.2rem;
    margin: 0 auto;
    grid-template-columns: 1.5fr 3fr 1.5fr;
        justify-content: space-between;
}

.footer_c1 {
    display: flex;
    flex-direction: column;
    height: 26rem;
}

.footer_c2 {
    justify-self: center;
    align-self: end;
}

.footer_logo {
    display: block;
    margin-bottom: 3.2rem;
}

.footer p {
    line-height: 1.2;
    color: var(--DNA_Grey_3);
    margin-bottom: 2rem;

}

.socials {
    list-style: none;
    display: flex;
    gap: 1.6rem;
}

.social_icon {
    height: 3rem;
    width: 3rem;
    outline: 1px solid var(--DNA_Grey_4);
    padding: 8px;
    border-radius: 50%;
}

.copyright {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 300;
    margin: 10px 0;
}

.footer_link:link,
.footer_link:visited {
    text-decoration: none;
    font-size: 1.6rem;
    color: var(--DNA_Grey_3);
    transition: all 0.3s;
}

.footer_link:hover,
.footer_link:active {
    color: var(--DNA_Primary_Lt_Teal);
}
