/* General reset */
/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #1c1c1b;
    --white: #fff;
    --offwhite: #FFF0D3;
    --primary: #E4665E;
    --Dark-Red:#5D2D2F;
    --pale-yellow: #FFF0D3;
    --orange: #FFCEAB;
    --light-blue:#D9E4F8;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --font-size-sm: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
}

body {
    color: #1c1c1b;
    font-family: 'Inter', sans-serif;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    margin: 24px 0;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#orange {
    background-color: var(--orange);
    color: var(--Dark-Red)
}

#yellow {
    background-color: var(--offwhite);
    color: var(--Dark-Red)
}

#dark-red {
    background-color: var(--Dark-Red);
    color: var(--white)
}

#light-blue {
    background-color: var(--light-blue);
    color: var(--Dark-Red)
}

#primary {
    background-color: var(--primary);
    color: var(--white)
}

#spaced {
    padding: 24px 0;
    line-height: 2;
}

#centered {
    align-self: center;
    text-align: center;
    justify-items: center;
    align-items: center;
    justify-content: center;
}

.landing-page {
    padding-bottom: 64px;
    margin: 9% 0;
}

.section {
    margin: 4% 2%;
}

.full-section {
    padding: 5% 0;
    margin: 0 0;
}

.navbar, .dropdown-menu {
    background-color: #fff;
    border-color: transparent;
    padding: 0;
}

.container-fluid {
    width: 88%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
}

.content-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
}

.text-container {
    flex: 1;
    text-align: left;
}

.text-block {
    margin-bottom: 20px;
}

.paragraph-header {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.paragraph {
    font-size: 1rem;
    line-height: 1.6;
}

.image-container {
    flex: 1;
    text-align: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Navbar Base Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.navbar-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

/* 🔹 Logo Styling */
.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--black);
}

.navbar-brand img {
    margin-right: 10px;
}

/* Nav Links - Default (Desktop) */
.navbar-collapse {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-item {
    margin: 16px;
}


.nav-link {
    text-decoration: none;
    color: var(--black);
    font-size: 1rem;
    font-weight: 600;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: var(--white);
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 150px;
}

.dropdown-item {
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    color: var(--black);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* 🔹 Mobile Menu Hidden by Default */
.navbar-toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.navbar-toggler-icon {
    width: 30px;
    height: 3px;
    background-color: var(--black);
    display: block;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    width: 30px;
    height: 3px;
    background-color: var(--black);
    position: absolute;
    left: 0;
    transition: 0.3s ease-in-out;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}


/* Get Started Button */
.btn-get-started {
    display: inline-block;
    grid-column-gap: 15px;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: #fff;
    text-align: center;
    letter-spacing: -.36px;
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    transition: transform .5s;
    white-space: nowrap;
}

.btn-get-started:hover {
    background-color: darken(var(--primary), 10%);
}

ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}

.w-layout-grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.c-button {
    display: inline-block;
    grid-column-gap: 15px;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: #fff;
    text-align: center;
    letter-spacing: -.36px;
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    transition: transform .5s;
    white-space: nowrap;
}

#orange {
    background-color: var(--orange);
    color: var(--Dark-Red)
}

#dark-red {
    background-color: var(--Dark-Red);
    color: var(--white)
}

#light-blue {
    background-color: var(--light-blue);
    color: var(--Dark-Red)
}

#primary {
    background-color: var(--primary);
    color: var(--white)
}

#spaced {
    padding: 24px 0;
    line-height: 2;
}

.image {
    float: right;
    margin-left: 5%;
    max-width: 400px; /* Limits the width of the image */
    padding-bottom: 10%;
}

.image img {
    max-width: 100%; /* Ensure the image scales down */
    height: auto;
    border-radius: 16px;
}

.section {
    margin: 4% 0;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1% 0;
    padding: 5% 10%;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3% 5%;
}

.grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
    padding: 0 5%;
    overflow-x: scroll;
}

.card-container {
    border-radius: 16px;
    padding: 50px;
    margin-bottom: 24px;
    min-width: 250px;
}

.paragraph-header {
    padding-top: 32px;
    font-size: 40px;
}

/*footer section*/

.footer {
    background-color: var(--offwhite);
    width: 100%;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-wrapper {
    background-color: var(--white);
    width: 100%;
}

.footer-inner {
    color: var(--grey);
    width: 77.5%;
    max-width: 1130px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 30px;
    position: relative;
}

.footer-header {
    margin-bottom: -12px;
    width: 100%;
}

.footer-head_top {
    background-color: var(--orange);
    color: var(--Dark-Red);
    border-bottom-left-radius: 16px;
    justify-content: space-between;
    align-items: center;
    margin-right: 78px;
    margin-bottom: 78px;
    padding-top: 24px;
    padding-bottom: 27px;
    padding-left: 40px;
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    line-height: 1;
    display: flex;
    position: relative;
    width: 100%;
}

.footer-flex {
    grid-column-gap: 18%;
    grid-row-gap: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    display: flex;
}

.footer-link_header {
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.375;
}

.footer-links_wrapper {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    align-items: flex-start;
    gap: 20px;
}

.footer-flex_inner {
    flex: none;
    max-width: 431px;
}

.location-details {
    font-weight: 600;
    font-size: 18;
    text-align: right;
}

.contact-details {
    display: flex;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-inner_bottom {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    justify-content: space-between;
    align-items: center;
    margin-top: 43px;
    margin-bottom: 25px;
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 18px;
    line-height: 1.5;
    display: flex;
}

.footer-social-links {
    align-items: center;
    font-size: 16px;
    display: flex;
}

.social-links_flex {
    margin-right: 32px; /* Adjust margin as needed */
}

.social-link {
    margin-right: 32px; /* Adjust margin as needed */
    cursor: pointer;
    flex: none;
    width: 24px;
    height: 24px;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit; /* Keeps the text color the same as the normal state */
    text-decoration: none; /* Ensures no underline or other decoration on hover */
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

@media screen and (min-width: 1920px) {
    .navbar {
        max-width: 1690px;
    }
}

@media (min-width: 992px) {
    .navbar-nav {
        flex-direction: row;
    }
}

@media (max-width: 991px) {

    .navbar {
        background-color: var(--offwhite);
    }

    .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: var(--white);
        width: 200px;
        padding: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
    }

    .navbar-collapse.active {
        display: flex;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 10px;
    }

    .dropdown-menu {
        position: static;
        display: none;
        background: none;
        box-shadow: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-item {
        margin: var(--spacing-sm) 0;
    }

    .btn-get-started {
        margin-left: 0; /* Reset margin for mobile */
    }

    .content-container {
        flex-direction: column;
        text-align: center;
    }

    .text-container {
        text-align: center;
    }

    .image-container img {
        max-width: 80%;
    }
}



@media screen and (max-width: 640px) {

    .footer-inner_bottom {
        flex-direction: column; /* Forces email onto a new line */
    }

    .footer-social-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding-left: 15px;
        width: 100%;
    }

    .footer-email {
        display: block; /* Forces email below icons */
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .footer-note {
        text-align: center;
    }

    .hello-text span {
        text-align: center;
        font-size: 7rem;
    }

    h1 {
        font-size: 56px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 48px;
    }

    p {
        font-size: 18px;
        line-height: 1.2;
    }

}

@media screen and (max-width: 481px) {

    .section {
        margin: 2% 5%;
    }

    .text-container {
        text-align: center;
    }

    .hello-text span {
        font-size: 5rem;
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 42px;
    }

    p {
        font-size: 16px;
        line-height: 1.2;
    }
}
