* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Raleway, 'Arial', sans-serif;
}

body {
    overflow-x: hidden;
    color: #333;
}

.parallax-section {
    height: 140vh;
    max-height: 800px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}

.parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
}

.mountain-background {
    background-image: url('images/malcolm-lightbody-gPRvTP0sZ2M-unsplash.jpg');
}

.forest-background {
    background-image: url('images/jeff-caron-robert-0CCVIuAjORE-unsplash.jpg');
}

.foreground-content {
    /*background-color: rgba(255, 255, 255, 0.85);*/
    padding: 2rem;
    max-width: 80%;
    z-index: 1;
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
    margin-left: 2rem;
    margin-top: 10rem;
}

.content-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.content-container h2 {
    font-weight: 200;
}

.foreground-content h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.btn-front {
    display: inline-block;
    background-color: rgb(83, 145, 92);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 0.5rem;
}

.btn-front:hover {
    background-color: white;
    color: black;
}

.foreground-content h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.content-container h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: left;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: white;
    font-weight: 400;
}

.btn {
    display: inline-block;
    background-color: rgb(83, 145, 92);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: white;
    color: black;
    border: 1px solid black;
}

a {
    text-decoration: none;
}

.view-more-container {
    text-align: center;
    margin-top: 2rem;
}

.image-gallery {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
    overflow-x: auto; 
    padding-bottom: 10px; 
}

.gallery-item {
    flex: 0 0 auto;
    width: calc(25% - 12px);
}

.gallery-image {
    width: 100%;
    height: 300px; 
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.03);
}

.image-caption {
    text-align: center;
    margin-top: 8px;
    font-size: 0.9rem;
    color: #555;
}

.sticky-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    background-color: white;
    /*background-color: rgb(35, 31, 32);*/
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
    border-bottom: 1px rgb(230, 230, 230) solid;
    position: relative;
    top: 0;
    z-index: 100;
    height: 70px;
    /*box-shadow: 4px 8px 8px rgb(0, 0, 0.1);*/
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
}

.header-section {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-left {
    justify-content: flex-start;
    gap: 2rem;
}

.header-titles {
    justify-content: center;
}
.header-title {
    color: black;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
}

.header-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: black;
    transition: width 0.3s ease;
}

.header-title:hover::after {
    width: 100%;
}

.header-center {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 65px; 
    width: auto; 
    object-fit: contain;
}

.header-right {
    justify-content: flex-end;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.footer {
    background-color: black;
    padding: 2.5rem 2rem;
}

.footer-title-container {
    margin-left: auto;
    margin-right: auto;
    max-width: fit-content;
    margin-bottom: 2rem;
}

.h2-footer-text {
    color: white;
    font-weight: 200;
    text-align: center;
    margin-bottom: 0.5rem;
}

.footer-divider {
    width: 100%;
    color: white;
}

.p-footer-text {
    color: white;
    text-align: left;
    margin-left: 2rem;
}

.footer-centered-container {
    display: flex;
    justify-content: space-between;
    gap: 5rem;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
}

.footer-label {
    margin-bottom: 0;
}

.contacts-divider {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px white solid;
    width: 100%;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    
    .header-right {
        display: none;
    }

    .header-left {
        display: none;
    }

    .foreground-content {
        margin-left: 0;
        margin-top: 2rem;
        max-width: 80%;
    }

    .foreground-content h1 {
        font-size: 3rem;
    }

    .foreground-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .btn-front {
        margin-top: 0;
    }

    .gallery-item {
        width: calc(50% - 10px);
    }
    
    .gallery-image {
        height: 250px; 
    }
    
    .parallax-section:nth-of-type(3) .foreground-content {
        margin-right: 2rem;
    }
}