@font-face {
    font-family: 'MilkMango';
    src: url('Fonts/milk_mango-webfont.woff') format('woff'),
        url('Fonts/milk_mango-webfont.woff2') format('woff2'),
        url('Fonts/Milk Mango.ttf') format('truetype');
    /* Add any additional properties */
}

@font-face {
    font-family: 'ComfortaReg';
    src: url('Fonts/Comfortaa-Regular.woff') format('woff'),
        url('Fonts/Comfortaa-Regular.woff2') format('woff2');
    /* Add any additional properties */
}

@font-face {
    font-family: 'Farmshow';
    src: url('Fonts/Farmshow.woff') format('woff'),
        url('Fonts/Farmshow.woff2') format('woff2');
    /* Add any additional properties */
}

/* diff colors sections */
body {
    background-color: #3C7042;
    margin: 0;
   text-align: center;
}

.body2 {
    background-color: #BAB2A3;
    position: relative;
    z-index: 9;
    /* Set a lower z-index for the image container */
}

.body3 {
    background-color: #EADEC7;
    /* Set the background color for this section */
    color: #BAB2A3;
}

.left-align {
    text-align: left;
}

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

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

* {
    padding: 0;
}

html {
    font-size: 62.5%;
    font-family: 'ComfortaReg';
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}


/* NAV BAR */
.header {
    border-bottom: 1px solid #EADEC7;
    font-family: 'Farmshow';
}

nav {
    font-family: 'Farmshow', sans-serif;
}

.navbar {
    position: static;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0rem;
    /* Adjust the padding values as needed */
    background-color: #3C7042;
    font-family: 'Farmshow';

}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #EADEC7;
}

.nav-menu {
    position: static;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: auto;
    z-index: 3;
}

.nav-item {
    opacity: 0;
    /* Set initial opacity to 0 */
    margin-right: 1rem;
}

.nav-link {
    font-size: 25px;
    font-weight: 400;
    color: #EADEC7;
    font-family: 'Farmshow';

    white-space: nowrap;
    /* Prevent the text from wrapping */
}

.nav-link:hover {
    color: #BAB2A3;
}

.nav-link:visited {
    color: #EADEC7;
}

.nav-logo {
    text-align: left;
    margin: .5px 0;
    /* Adjust the margin values as needed */

}

.phone-image {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-image {
    width: 70%;
    height: auto;
    text-align: left;
    animation: fadeIn 1s ease-out;
}

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

    /* Adjustments for smaller screens */
    /* Adjustments for smaller screens */
    .nav-menu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.3s ease-in-out;
        /* Add transition for smoother effect */
    }

    .nav-menu.active {
        transform: translateX(0);
        /* Show the menu when active */
    }

    .nav-item {
        margin: 10px 0;
        opacity: 0;
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        /* Make the items visible when menu is active */
        transform: translateY(0);
    }

    .phone-image {
        max-width: 50%;
        height: auto;
        display: block;
        margin: 0 auto;
        padding-bottom: 100%;
    }

    body.menu-active {
        background-color: #3C7042;
        /* Set your desired green background color */
    }

    .navbar {
        position: relative;
        /* Make sure it's a positioned element */
        z-index: 4;
        /* Set a higher z-index than the green background */
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        z-index: 4;
        /* Set a higher z-index than the green background */

    }

    .nav-logo,
    .nav-menu,
    .hamburger {
        background-color: transparent;
        /* Set a transparent background for these elements */
        position: relative;
        /* Make sure they are positioned elements */
        z-index: 5;
        /* Set a higher z-index than the green background */
    }


    .nav-logo {
        text-align: center;
        /* Center the logo */
        margin: 10px 0;
        /* Adjust the margin values as needed */
        position: relative;
        top: 15px;
        right: 50px;
        z-index: 5;
    }

    /* Make the header logo and navigation menu responsive */
    .nav-logo img {
        max-width: 80%;
        /* Adjust the maximum width as needed */
        height: auto;
    }


    .nav-menu {
        display: none;
        /* Hide the navigation menu by default on small screens */
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: #BAB2A3;
        /* Change background color as needed */
        position: absolute;
        top: 70px;
        /* Adjust as needed */
        left: 0;
        z-index: 1;
    }

    .nav-menu.active {
        display: flex;
        /* Show the navigation menu when the hamburger menu is clicked */
    }


    .nav-item {
        padding: 15px;
        border-bottom: 1px solid #ddd;
        /* Add a border between menu items */
    }

    /* Make the hamburger menu visible on small screens */
    .hamburger {
        display: block;
        cursor: pointer;
        right: 25px;
        position: relative;
        /* Make sure it's a positioned element */
        z-index: 5;
        /* Set a higher z-index than the green background */
        left: 45%;
        top: -35px;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    @media (max-width: 768px) {
        .hamburger {
            display: block;
        }
    }

    /* Style adjustments for the banner image */
    img.banner-image {
        max-width: 100%;
        height: auto;
    }

    /* Style adjustments for the profile picture */
    img.square-img {
        max-width: 100%;
        height: auto;
    }

    /* Style adjustments for the content text */
    .tan {

        line-height: 1.5;
    }

    /* Style adjustments for the gallery items */
    .gallery-item img {
        max-width: 100%;
        height: auto;
    }


    /* Adjust the z-index of the navigation menu */
    .nav-menu {
        z-index: 3;
        /* Above the green background */
    }

    .navbar {
        position: relative;
        /* Make sure it's a positioned element */
        z-index: 4;
        /* Set a higher z-index than the green background */
    }

}

/* Thumbnails for each page */
.banner {
    background: url('logo/home.png') center/cover no-repeat;
    /* Set your banner image */
    height: 300px;
    /* Set the desired height of your banner */
}

/* wrapper */
#wrapper {
    background-color: #3C7042;
    align-items: center;
}

.sand-container {
    background-color: #EADEC7;
}

/*Text configuration */
h1 {
    text-align: center;
    padding-top: 2%;
    font-size: 90px;
    margin: 0%;
    font-family: 'Farmshow', sans-serif;
}

h2 {
    text-align: center;
    padding-top: 2%;
    font-size: 50px;
    margin: 0%;
    font-family: 'Farmshow', sans-serif;
}

/* colors */
.tan {
    color: #EADEC7;
}

.brown {
    color: #BAB2A3;
}

.green {
    color: #3C7042;
}

p {

   
    padding: 20px;
    font-size: 22px;

}

/* Basic styling for the button */

.button-container {
    position: relative;
    z-index: 2;
}

.cool-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 auto;
    /* Center the button horizontally */
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    font-family: 'MilkMango';
    background-color: #EADEC7;
    color: #3C7042;
    border: 2px solid #BAB2A3;
    transition: background-color 0.3s, transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

/* Animation on hover */
.cool-button:hover {
    background-color: #3C7042;
    color: #EADEC7;
    transform: scale(1.1);
    border-color: #EADEC7;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/*Image in home*/
.square-img {
    width: 10%;
    /* Adjust the width as needed */
    height: auto;
    border: 5px solid #EADEC7;
    border-radius: 10%;
    /* Make the image circular (optional) */
    animation: fadeInUp 1s ease-in-out;
    /* Add a fade-in animation */
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media only screen and (max-width: 768px) {
    .square-img {
        width: 20%;
        /* Adjust the width as needed */
        height: auto;
        border: 5px solid #EADEC7;
        border-radius: 10%;
        /* Make the image circular (optional) */
        animation: fadeInUp 1s ease-in-out;
        /* Add a fade-in animation */
        margin-top: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}


/* emotes */

.emote-container {
    position: relative;
    display: inline-block;
    text-align: left;
    /* Align the content to the left */
}

.emote {
    max-width: 50%;
    /* Adjust as needed */
    height: auto;
    margin-right: 20px;
    /* Adjust spacing between Enthusiastic Natalie and boxes */
    position: relative;
    /* Add position: relative to allow z-index to work */
}

.emote::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #3C7042;
    z-index: -1;
    top: 0;
    left: 0;
}

.emote-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #3C7042;
    z-index: -2;
    top: 0;
    left: 0;
}





/* SVG CURVES GREEN Bottom */
/*/* Default styles for larger screens */
.custom-shape-divider-top-1704873624 {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1704873624 svg {
    position: relative;
    display: block;
    width: calc(131% + 1.3px);
    height: 201px;
    transform: rotateY(180deg);
}

.custom-shape-divider-top-1704873624 .shape-fill {
    fill: #3C7042;
}

/* Phone styles */
@media only screen and (max-width: 767px) {
    .custom-shape-divider-top-1704775282 {
        top: 84%;
        /* Adjusted position for smaller screens */
    }

    .custom-shape-divider-top-1704775282 svg {
        height: auto;
        /* Adjusted height for smaller screens */
    }
}





/* boxes in home page GREEN BOXES */
.step-box {
    display: flex;
    justify-content: space-around;
    margin: 20px;
}

.step {
    width: 300px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
    transition: background-color 0.3s;
    background-color: #EADEC7;
    border: 5px solid #3C7042;
    color: #3C7042;
}

.step:hover {
    background-color: #3C7042;
    color: #EADEC7;
    border: 5px solid #EADEC7;
}

.stepimg {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.step-number {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: 'MilkMango';

}

.step-description {
    font-size: 16px;
    font-family: 'ComfortaReg';
}

@media only screen and (max-width: 768px) {
    /* Adjustments for smaller screens */

    .step-box {
        flex-direction: column;
        /* Stack steps vertically on small screens */
        align-items: center;
    }

    .step {
        width: 80%;
        /* Make the steps take full width on small screens */
        margin: 10px 0;
        transform: translateY(0);
        /* Remove translateY transform for small screens */
        opacity: 1;
        /* Show steps without animation on small screens */
    }

    .step img {
        max-height: 100px;
        /* Adjust max-height for smaller screens */
        margin-bottom: 5px;
    }

    .step-number {
        font-size: 18px;
        /* Adjust font size for step number on small screens */
        margin-bottom: 3px;
    }

    .step-description {
        font-size: 14px;
        /* Adjust font size for step description on small screens */
    }
}


@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery in home */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.gallery-item {
    position: relative;
    width: 300px;
    margin: 15px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Add this CSS in your stylesheet */
.gallery-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 3s ease-out, transform 0.5s ease-out;
}

.gallery-item.in-view {
    opacity: 1;
    transform: translateY(0);
}


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay-text {
    font-size: 18px;
    font-weight: bold;
    margin: 10px;
}

/* Media Query for smaller screens (e.g., phones) */
@media screen and (max-width: 767px) {
    .gallery-item {
        width: calc(33.33% - 30px);
        /* Show 3 items per row with some spacing */
    }
}

/* SVG CURVES brown Bottom*/


.custom-shape-divider-bottom-1702449131 .shape-fill {
    fill: #BAB2A3;
    z-index: 110;
}

/* Media Query for smaller screens (e.g., phones) */
@media screen and (max-width: 767px) {
    .custom-shape-divider-bottom-1702449131 {
        top: 378%;
    }

}

footer {
    padding: 25px;
    font: 15px;
    font-style: italic;
    color: #EADEC7;
    font-family: 'ComfortaReg';
}

/* Toast styles */
/* Add your website styles here */

/* Toast styles */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 998;
}

.toast {
    position: relative;
    background-color: #EADEC7;
    color: #3C7042;
    padding: 25px;
    font-size: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: none;
    opacity: 0;

}



@keyframes jumpUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
        /* Adjust the jump height as needed */
    }
}

.toast-image:hover {
    content: url('assets/pictures/natent.png');
    animation: jumpUpDown 0.5s ease-in-out;
    /* Add jump animation */
    transition: opacity 0.3s ease-in-out;
    /* Add a fade transition */
}

.toast:hover {
    animation: jumpUpDown 0.2s ease-in-out;
    /* Add jump animation */
    transition: opacity 0.2s ease-in-out;
    /* Add a fade transition */
}

@keyframes bobUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
        /* Adjust the bobbing height as needed */
    }
}

.toast-image.clicked {
    pointer-events: none;
    /* Disable pointer events when the image is clicked */
    animation: jumpUpDown 0.3s ease-in-out;
    /* Add jump animation */
    animation: bobUpDown 0.5s ease-in-out infinite;
    /* Add bobbing animation */
}





.toast-image {
    max-width: 250px;
    margin-bottom: -10px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    /* Same fade transition as the toast */
}

.toast-message {
    margin-top: 15px;
}

.close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: pointer;
    font-size: 25px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.close-btn:hover {
    color: #7b7467;
    /* Change the color on hover */
}




/* THIS IS FOR BLOG CONTAINER IN HOME PAGE*/
#containerBlog {
    display: flex;
    flex-wrap: wrap;
}


.card {
    background-color: #3C7042;
    border: 3px solid #BAB2A3;
    padding: 8px;
    border-radius: 12px;
    z-index: 5;
}


/* Style div elements that have class equal to tag */
.tag {
    padding: 4px 8px;
    border: 1px solid #EADEC7;
    font-family: 'MilkMango';
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #EADEC7;
}

/* Style div elements that have class equal to name */
.name {
    font-size: 34px;
    font-weight: 600;
    color: #EADEC7;
    font-family: 'Farmshow';
    margin-top: 16px;
}



.card__details {
    /* Add space around the details */
    padding: 16px 8px 8px 8px;
}


.pblog {
    font-family: 'ComfortaReg';
    color: #EADEC7;
}


#containerBlog {
    display: flex;
    flex-wrap: wrap;
}

.row {
    display: flex;
    justify-content: space-around;
}

.image-container,
.card {
    flex: 1;
    margin: -2px;
    /* Add margin for spacing */
}

.image-container {
    z-index: 1;
    position: relative;
}


.card img,
.card video {
    border: 5px solid #BAB2A3;
    /* You can adjust the border width and color */
    border-radius: 10px;
    /* Optional: Adds rounded corners */
}


.image-container img,
.image-container video {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Alternate placement of image and card in odd/even rows */
.row:nth-child(odd) .image-container {
    order: 1;
    /* Default order */
}

.row:nth-child(odd) .card {
    order: 2;
    /* Default order */
}

.row:nth-child(even) .image-container {
    order: 2;
    /* Swap order for even rows */
}

.row:nth-child(even) .card {
    order: 1;
    /* Swap order for even rows */
}

/* Add this CSS for scroll-down animation */
@keyframes scrollDown {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Only apply animation when in view */
.image-container.in-view img {
    animation: scrollDown 1s ease-out;
    /* Adjust the animation duration and easing as needed */
}


/* Media query for smaller screens (adjust max-width as needed) */
@media screen and (max-width: 768px) {
    .row {
        flex-direction: column;
        /* Change to a column layout for smaller screens */
        padding: 10px;
    }

    .row .image-container,
    .row .card {
        order: unset;
        /* Reset the order */
    }

    .row:nth-child(even) .image-container {
        order: 0;
    }
}


/* links */
/* Style for normal links */
a {
    color: #3C7042;
    /* Set your desired color using a color code or name */
    text-decoration: underline;
    /* Remove underline */
}

/* Style for visited links */
a:visited {
    color: #BAB2A3; /* Set a different color for visited links */

}

/* Style for hover (when mouse is over) links */
a:hover {
    color: #EADEC7;
    /* Set a different color for hover state */
}

/* Style for active links (when being clicked) */
a:active {
    color: #3C7042;
    /* Set a different color for active state */
}

/*For email in footer link style*/
a.email-link {
    color: #EADEC7;
    /* Set your desired color for the email link */
    text-decoration: none;
    /* Remove underline */
}

/* Style for the email link when hovered */
a.email-link:hover {
    color: #ccffc7;
    /* Set a different color for hover state */
}

/* THIS CSS IS FOR THE ABOUTME.HTML FOR BLOGGGGGGGGGGGGGGGGG */
.leftcontainer {
    display: flex;
}

.leftvideo-container {
    flex: 0 0 30%;
    margin-right: 20px;
}

.righttext-container {
    flex: 1;
    overflow: hidden;
    padding: 10px;
}

.animatedaboutmepic {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
    /* Add margin to separate image and text */
    float: left;
    /* Float the image to the left */
}

/* Clear the float to allow the text to wrap around */
.righttext-container::after {
    content: "";
    display: table;
    clear: both;
}

/* Media query for smaller screens */
@media only screen and (max-width: 767px) {
    .animatedaboutmepic {
        margin-bottom: 0;
        /* Reset margin for smaller screens */
        float: none;
        /* Reset float for smaller screens */
        width: 100%;
        /* Full width on smaller screens */
    }
}



.NATHALFANDHALF-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 500px;
    background: linear-gradient(to left, #EADEC7 50%, #3C7042 50%);
}

.NATHALFANDHALF {
    position: absolute;
    max-width: 80%;
    height: auto;
    margin-left: -38px;
    opacity: 1;
    transition: opacity 1s;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
        /* Initial opacity, fully transparent */
    }

    to {
        opacity: 1;
        /* Final opacity, fully opaque */
    }
}

.top-image {
    position: absolute;
    max-width: 80%;
    /* Ensure the image doesn't exceed its container */
    height: auto;
    margin-left: -38px;
    /* Adjust the margin to align with the bottom image */
    margin-top: 10%;
    z-index: 2;
    /* Higher z-index to place it above the bottom image */
}


/* Media query for smaller screens */
@media only screen and (max-width: 767px) {
    .NATHALFANDHALF {
        display: none;
    }
    

    .top-image {
        display: none;
    }
}

.body4 {
    background: linear-gradient(to left, #EADEC7 50%, #3C7042 50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Three columns with equal width */
    gap: 10px;
    margin-top: 76px
}


.body4 p {
    text-align: center;
}

.stars {
    width: 25%;
    height: auto;
}


/*/* Default styles for larger screens */
.custom-shape-divider-top-1705823195 {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 1;
}

.custom-shape-divider-top-1705823195 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 220px;
    transform: rotateY(360deg);
    z-index: 1;
}

.custom-shape-divider-top-1705823195 .shape-fill {
    fill: #BAB2A3;
    z-index: 1;
}

/* Phone styles */
@media only screen and (max-width: 767px) {

    .custom-shape-divider-top-1705823195 svg {
        height: 180px;
        /* Adjusted height for smaller screens */
    }

}



/* Media Query for Smaller Screens */
@media only screen and (max-width: 767px) {

    .left-column,
    .right-column {
        flex: none;
        /* Reset the flex property */
        width: 100%;
        /* Full width on smaller screens */
    }
}

.left-column {
    display: flex;
    align-items: center;
    /* Adjust as needed */
}

.leftcontainer {
    display: flex;

    align-items: center;
    /* Adjust as needed */
}

.column {
    float: left;
    padding: 3px;
}

.column1 {
    float: left;
    padding: 3px;
    background-color: #BAB2A3;
}

.column2 {
    float: left;
    padding: 3px;
    background-color: #2f5733;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.mecard {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 900px;
    min-width: 300px;
    margin: auto;
    border-radius: 10px;
    border-style: solid;
    border-color: #BAB2A3;
    text-align: center;
    color: #3C7042;
    background: #EADEC7;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: #EADEC7;
    z-index: 9;
}
.linkcolorgreen a:hover {
    color:#2f5733
}



.title {
    color: #3C7042;
    font-size: 18px;
}



a {
    text-decoration: none;
 
    color: #3C7042;
}

.collapsible {
    margin-top: 10px;
    background-color: #EADEC7;
    color: #3C7042;
    border-style: solid;
    border-color: #BAB2A3;
    border-radius: 10px;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    font-family: 'MilkMango';
    transition: background-color 0.3s, color 0.3s;
}

.activec,
.collapsible:hover {
    background-color: #BAB2A3;
    color: #EADEC7;
}

.content {
    padding: 0 15px;
    overflow: hidden;
    background-color: #EADEC7;
    color: #3C7042;
    font-family: 'ComfortaReg';
    border-radius: 15px;
    text-align: left;
    max-height: 0;
    font-size: 18px;
    transition: max-height 0.5s ease-out;
}

.active+.content {
    max-height: 1000px;
}




/*-----------------------------------------------------------------------------------------------------------------*/


/* Blog.html */
/* Header/Blog Title */
.headerblog {
    padding: 30px;
    font-size: 40px;
    text-align: center;
    color:#EADEC7;
  }
  
  /* Create two unequal columns that floats next to each other */
  /* Left column */
  .blogleftcolumn {   
    float: left;
    width: 75%;
  }
  
  /* Right column */
  .blogrightcolumn {
    float: left;
    width: 25%;
    padding-left: 20px;
  }
  
  /* Fake image */
  .blogimg {
    background-color: #2f5733;
    overflow: hidden;
    width: auto;
    padding-top: 10px;
    text-align: center;
  }
  


  /* Add a card effect for articles */
  .blogcard {
    padding: 20px;
    margin-top: 20px;
    background-color: #EADEC7;
    color:#2f5733;
    text-align: left;
    border: 3px solid #BAB2A3;
    z-index: 5;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }

  .blogbutton {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 auto;
    /* Center the button horizontally */
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    font-family: 'MilkMango';
    background-color: #EADEC7;
    color: #3C7042;
    border: 2px solid #BAB2A3;
    transition: background-color 0.3s, transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.blogbutton:hover {
    background-color: #3C7042;
    color: #EADEC7;
    transform: scale(1.1);
    border-color: #EADEC7;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.blogoverlay {
    position: absolute; 
    bottom: 0; 
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5); /* Black see-through */
    color: #f1f1f1; 
    width: 100%;
    transition: .5s ease;
    opacity:0;
    color: white;
    font-size: 20px;
    padding: 20px;
    text-align: center;
  }
  
  .blogcontainer:hover .blogoverlay {
    opacity: 1;
  }


.blogcontainer {
    position: relative;
  }
  

