/* 

---------- 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);
    /*new stuff to push footer down*/
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}
/*new stuff to push footer down*/
main {
  flex: 1;
}

.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;
}

th {
    font-size: var(--text-h4);
    padding-left: 3rem;
    padding-right: 3rem;
}

td {
    font-size: var(--text-paragraph);
}

a {
    text-decoration: none;
    font-size: var(--text-paragraph);
    display: inline-block;
}

a:link, a:visited, a:hover, a:active {
    color: var(--black);
}

ul {
    list-style: none;
   
}

.link-highlight {
    color: var(--tertiary-base) !important;
}



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(--tertiary-shade);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.highlight-black {
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}


.highlight-primary {
    background-color: yellow;
}

.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(--tertiary-base);
    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-tint);
}

.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(--grey-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(--black);
    padding-right: 2rem;
}

.navlinks:hover {
    color: var(--tertiary-base);
}

.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(--grey-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(--black);
    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(--secondary-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(--secondary-base); /* 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: 7rem;
}

.pic-box {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.pic-box-cover {
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.50);
    border-radius: 4px;
}



.Ashley-pic-grid {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin: 2rem auto;
    justify-content: center;
}


.center {
    text-align: center;
}



.bottom-space {
    margin-bottom: 2rem;
}





/*-----------Table-------------*/

table {
  width: 80%;
  margin: 40px auto;
  border-collapse: collapse;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: var(--tertiary-shade);
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

tr:hover {
  background-color: #f1f1f1;
  transition: background-color 0.3s ease;
}
/*--------Footer--------*/

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    /*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: center;
    font-size: 1.2rem;
    padding-top: 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: 55vh; /* 60% of viewport height */
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  
}



/*------------Process --------------*/

/* Section Layout */
.process-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  font-family: 'Arial', sans-serif;
  text-align: center;
}



/* Typography */
.section-title {
  margin-bottom: 10px;
  line-height: 1.2;
}

.section-title .highlight {
  color: var(--tertiary-shade); 
  display: block;
  font-size: 1.8rem;
  margin-top: 5px;
}

.section-intro {
  
  
  max-width: 700px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

/* Grid System */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Card Styling */
.process-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid transparent;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-top: 5px solid var(--tertiary-base);
}

/* Step Numbers */
.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--grey-shade);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
  z-index: 0;
}

.process-card h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.process-card p {
  color: #666;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Image Styling */
.hero-image-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hero-image-container:hover img {
  transform: scale(1.03);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(44, 62, 80, 0.6), transparent);
}

/*-----------Blog posts-------------*/

.blog-link {
    display: block;
    text-decoration: none;
    color: inherit; /* Inherits text color from parent */
}

.blog-link:hover {
    text-decoration: none; /* Remove underline on hover */
}

.blog-list {
    margin-left: 2em;
    padding-left: 0;
    list-style-type: square; /* Ensures bullet points show */
}


.service-areas-container {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Adjust spacing as needed */
}


/*-------Color Chips------*/

.color-chips-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    padding: 20px;
}

.color-chip-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
}

.color-chip {
    width: 200px;
    height: 200px;
    position: relative;
    box-shadow: 10px 8px 8px rgba(0, 0, 0, 0.50),
    0 1px 2px rgba(0,0,0,0.3),   /* Sharp, close shadow (contact point) */
    0 8px 20px rgba(0,0,0,0.2);  /* Soft, far shadow (ambient light) */
    border-radius: 4px;
    overflow: hidden;

    transition: transform 0.3s ease;
}


.color-chip:hover {
    /* Optional: Lift the whole chip slightly on hover */
    transform: translateY(-10px);
    box-shadow: 4px 8px 12px rgba(0, 0, 0, 0.2);
}



.chip-info {
    margin-top: 1rem;
    text-align: center;
}

.chip-code {
    font-weight: bold;
    font-size: var(--text-base);
    color: #333;
    margin-bottom: 5px;
}

.chip-name {
    font-size: var(--text-base);
    color: #555;
    font-weight: bold;
}


/*---Map---*/

.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px 0;
}

.map-container iframe {
    width: 80%;
    max-width: 800px;
    height: 450px;
}
