/* 

---------- TYPOGRAPHY ----------

FONT SIZES
12px / 16px / 20px / 24px / 32px / 40px / 48px / 62px

FONT WEIGHTS
400 / 700

LINE HEIGHTS
1.2 / 1.5

LETTER SPACING
0 / -2px

FONT FAMILY
Inter

--------------COLORS--------------------

BODY COLORS

PRIMARY
Base: #ca685d
Tint: #e5b4ae
Shade: #65342f

SECONDARY
Base: #d9ccc0
Tint: #ece6e0
Shade: #988f86

TERTIARY
Base: #2f9e44
Tint: #97cfa2
Shade: #184f22

GREY
Base: #495057 (Slate)
Tint: #f1f3f5 (Pebble)
Shade: #212529 (Graphite)
White: #ffffff (White)
Black: #000000 (Black)

---------- BORDER RADIUS ----------

4px / 8px / 20px

---------- SPACING SYSTEM ----------

5px / 10px / 15px / 20px / 25px / 30px / 40px / 50px / 60px / 70px / 80px / 90px / 100px / 125px / 150px / 200px / 250px / 300px / 400px / 500px

*/

/* ----------------------- GLOBAL STYLES ----------------------- */

:root{

    /* FONT SIZE */
    --text-sm: 1.2rem;
    --text-base: 1.6rem;
    --text-paragraph: 2rem;
    --text-h5: 2.4rem;
    --text-h4: 3.2rem;
    --text-h3: 4rem;
    --text-h2: 4.8rem;
    --text-h1: 6.2rem;

    /* FONT WEIGHT */
    --font-weight-normal: 400;
    --font-weight-bold: 700;

    /* LINE HEIGHTS */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;

    /* LETTER SPACING */
    --letter-spacing-tight: -2px;

    /* FONT FAMILY */
    --font-family: 'Inter', sans-serif;

    /* COLORS */
    --primary-base: #ca685d;
    --primary-tint: #ffa8a8;
    --primary-shade: #65342f;
    --primary-grade: #ca685d;
    --secondary-base: #d9ccc0;
    --secondary-tint: #ece6e0;
    --secondary-shade: #988f86;
    --tertiary-base: #2f9e44;
    --tertiary-tint: #97cfa2;
    --tertiary-shade: #184f22;
    --grey-base: #495057;
    --grey-tint: #f1f3f5;
    --grey-shade: #212529;
    --white: #ffffff;
    --black: #000000; 

    /* MISCELLANEOUS */
    --nav-height: 7rem; /* Update the value in the flexbox topic */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }

html {
   font-size: 62.5%; 
   /* 10px / 16px = 62.5% */
   scroll-padding-top: 7rem;
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: var(--black);
    background-color: var(--white);
}

.container {
    max-width: 128rem;
    width: 90%;
    margin: 0 auto;
}

h1, h2, h3, h4, h5 {
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    /*letter-spacing: var(--letter-spacing-tight);*/
    color: var(--black);
}

h1 {
    font-size: var(--text-h1);
}

h2 {
    font-size: var(--text-h2);
}

h3 {
    font-size: var(--text-h3);
}

h4 {
    font-size: var(--text-h4);
}

h5 {
    font-size: var(--text-h5);
}

p {
    font-size: var(--text-paragraph);
    margin-bottom: 2rem;
}


a {
    text-decoration: none;
    font-size: var(--text-paragraph);
    display: inline-block;
}

a:link, a:visited, a:hover, a:active {
    color: var(--primary-shade);
}

ul {
    list-style: none;
   
}




span {
    display: inline-block;
}
/*
hr {
  width: 90%;
  height: 2px;
  background: var(--primary-shade);
  border: none;
  margin: 2rem auto;
}   
*/

hr {
  border: none;
  height: 10rem;
  background-image: url(../images/hr_flowers.svg);
  background-size: 10rem 5rem;
  background-repeat: repeat-x;
  background-position: 0 0;
  width: 90%; /* Optional: adjust width as needed */
  margin: 1rem auto;
}
.small-text {
    font-size: var(--text-sm);
}

/* ----------------------- SECTIONS ----------------------- */

/* ------ COMPONENTS ------ */

.highlight {
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.highlight-black {
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}


.highlight-primary {
    background-color: var(--primary-base);
}

.highlight-secondary {
    background-color: var(--secondary-shade);
}

.highlight-secondary-base {
    background-color: var(--secondary-base);
}

.highlight-tertiary {
    background-color: var(--tertiary-base);
}

.bold {
    font-weight: var(--font-weight-bold);

}

/*--------Buttons---------*/


.btn {
    font-size: var(--text-h4);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    padding: 1.5rem 3rem;
    border-radius: 8px;
}

.btn-l {
    font-size: var(--text-h5);
    font-weight: var(--font-weight-bold);
    color: var(--white);
    background-color: var(--primary-shade);
    text-decoration: none;
    padding: 1.5rem 3rem;
    border-radius: 8px;
}

.btn-primary:link, .btn-primary:visited {
    color: var(--white);
    background-color: var(--primary-shade);
    border: 2px solid var(--black);
    transition: 0.5s;
}

.btn-primary:hover, .btn-primary:active {
    color: var(--white);
    background-color: var(--tertiary-shade);
    border: 2px solid var(--secondary-shade);
    transform: scale(1.05, 1.05);
    box-shadow: 0px 3px 6px var(--tertiary-base);
}

.btn-primary-outline:link, .btn-primary-outline:visited {
    color: var(--primary-base);
    background-color: var(--white);
    border: 2px solid var(--primary-base);
    transition: 0.5s;
}

.btn-primary-outline:hover, .btn-primary-outline:active {
    color: var(--primary-shade);
    background-color: var(--white);
    border: 2px solid var(--primary-shade);
    transform: scale(1.05, 1.05);
    box-shadow: 0px 3px 6px var(--grey-base);
}

.btn-secondary:link, .btn-secondary:visited {
    color: var(--white);
    background-color: var(--secondary-base);
    border: 2px solid var(--secondary-base);
    transition: 0.5s;
}

.btn-secondary:hover, .btn-secondary:active {
    color: var(--white);
    background-color: var(--secondary-shade);
    border: 2px solid var(--secondary-shade);
    transform: scale(1.05, 1.05);
    box-shadow: 0px 3px 6px var(--grey-base);
}

.btn-center {
    display: grid;
    place-items: center;
}

/* ------ NAVBAR ------ */





.navbar-full-length {
    width: 100vw;
    height: var(--nav-height);
    background-color: var(--primary-tint);
    position: fixed;
    top: 0;
    z-index: 1000;
}
.navbar {
    max-width: 1280px;
    width: 90%;
    margin: 0 auto;
    height: var(--nav-height);
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navlinks:link {
    font-weight: var(--font-weight-bold);
    font-size: var(--text-h5);
    color: var(--primary-shade);
    padding-right: 2rem;
}

.navlinks:hover {
    color: var(--tertiary-tint);
}

.home-img {
    height: 7rem;
    padding-top: 2px;
}
/*---Hamburger Menu -----*/

.navbar-mobile-length {
    /*----NAVBAR SWITCH-----*/
    display: none;
    width: 100vw;
    height: var(--nav-height);
    background-color: var(--primary-tint);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.navbar-mobile {
    max-width: 1280px;
    width: 90%;
    margin: 0 auto;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.Logo-mobile {
  display: flex;
  align-items: center;
}

.btn-menu{
    font-size: var(--text-h5);
    font-weight: var(--font-weight-bold);
    background-color: var(--secondary-tint);
    text-decoration: none;
    color: var(--primary-shade);
    padding: 1.5rem 3rem;
    border-radius: 8px;
    margin: 1rem;
}

.menu-container {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--primary-tint);
  padding: 10px;
  border: 2px solid var(--grey-base);
}

.dropdown-menu li {
  margin-bottom: 10px;
}

.dropdown-menu li a {
  text-decoration: none;
  color: #333;
}

.menu-container:hover .dropdown-menu,
.menu-container:focus-within .dropdown-menu {
  display: block;
}

/* Shared background and border for active menu items */
.menu-items.active li a.navlinks {
    background-color: var(--primary-tint); /* Replace with your desired shade */
    border: 1px solid var(--grey-shade); /* Replace with your desired color */
    padding: 1rem 1rem; /* Adjust padding as needed */
    width: 100%; /* Adjust width as needed */
    text-align: center;
    margin: 0.25rem 0;
    border-radius: 4px; /* Optional: Add rounded corners */
}



/*--Body Sections--*/

.top-headline{
    margin-top: 8rem;
}

.floatit{
    float: left;
    margin: 2rem;
}

#Ashley-pic {
    float: left;
    margin: 2rem;
}

.left-side-text{
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    row-gap: 15rem;
    column-gap: 5rem;
    justify-items: center;
    align-items: start;
    margin: 3rem;
    padding: 1rem;
}

.right-side-text{
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    row-gap: 15rem;
    column-gap: 5rem;
    justify-items: center;
    align-items: center;
    margin: 3rem;
    padding: 1rem;
}

.questions{
    margin-left: 8rem;
    margin-right: 8rem;
    padding: 1rem;
}

.tab-list {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    margin-left: 2rem;
    list-style-type: none;
}

.center {
    text-align: center;
}

.bottom-space {
    margin-bottom: 2rem;
}

.bullets {
    list-style-type: disc;
    list-style-position: inside;
}

.bullets-list {
    font-size: var(--text-paragraph);
    margin-bottom: 2rem;
}
/*--------Footer--------*/

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    /*justify-items: space-between;*/
    margin: 3rem;
}

.mail-flex-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.social-icons-flex-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}


.footer-paragraph {
    text-align: left;
    font-size: 1.2rem;
    padding: 1rem;
}

.footer-social-icons-img {
    max-width: 5rem;
}

.footer-link:link {
    font-size: 1.2rem;
    color: var(--primary-shade);
}

.footer-link:hover {
    color: var(--tertiary-tint);
}



/* ------ HERO SECTION ------ */
/*
.hero-section {
  height: 65vh; /* 60% of viewport height 
  background-image: url('../pictures/Washed_Hay_Bales.png'); 
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  
}

.hero-section::before {
  content: '';
  height: 70vh;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000; 
  opacity: 0.3; 
  z-index: 1;
}


.hero-title {
    background-color: var(--primary-base);
    color: var(--white);
    padding: 2rem 2rem;
    border-radius: 1rem;
    z-index: 3;
}

.hero-tag {
    color: var(--black);
    margin-bottom: 3rem;
    z-index: 4;
}

.highlight-hero-call{
    background-color: var(--tertiary-tint);
    color: var(--white);
    padding: 2rem 2rem;
    border-radius: 1rem;
    z-index: 4;
}
*/