

/* =========================================================
   Project footer - contact/social only, centered
   ========================================================= */
.project-footer {
    width: 100%;
    overflow: hidden;
}

.project-footer-inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.project-footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin: 0 auto 42px;
}

.project-footer-social a {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}

.project-footer-social a:hover {
    transform: translateY(-2px);
}

.project-footer-social svg {
    width: 19px;
    height: 19px;
    display: block;
    fill: #fff;
}

.project-footer-contact {
    width: 100%;
    text-align: center;
}

.project-footer-contact h2 {
    margin: 0 0 28px;
    text-align: center;
}

.project-footer-contact-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.project-footer-contact-item {
    width: min(100%, 520px);
    padding: 0 0 26px;
    margin: 0 0 26px;
    /*border-bottom: 1px solid rgba(255,255,255,.12);*/
    text-align: center;
}

.project-footer-contact-item:last-child {
    margin-bottom: 0;
}

.project-footer-contact-label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.project-footer-contact-label img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.project-footer-contact-item > a {
    display: block;
    text-align: center;
    font-weight: 600;
    word-break: break-word;
	color:#fff;
}

.project-footer-copyright {
    width: 100%;
    margin-top: 24px;
    padding-top: 13px;
	font-size:13px;
    border-top: 1px solid rgba(255,255,255,.12);
    text-align: center;
}

.project-footer-copyright p {
    margin: 0;
    text-align: center;
}

@media (max-width: 767px) {
    .project-footer-social {
        gap: 12px;
        margin-bottom: 32px;
    }

    .project-footer-social a {
        width: 46px;
        height: 46px;
    }

    .project-footer-contact-item {
        width: 100%;
    }

    .project-footer-copyright {
        margin-top: 40px;
        padding-top: 24px;
    }
}


/* =========================================
   ABOUT STORY
========================================= */

.about-story {
    position: relative;
    width: 100%;
    min-height: 100vh;

    background-image: url("../images/whoweare.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    align-items: flex-start;

    overflow: hidden;
}
.about-story-content p {
    font-family: "Caveat", sans-serif;
}
.about-story-content p {
    font-family: "Caveat", cursive;
    font-size: 25px;
    line-height: 1.35;
    font-weight: 500;
}
/* Dark overlay */
.about-story-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.60) 0%,
            rgba(0, 0, 0, 0.42) 42%,
            rgba(0, 0, 0, 0.12) 75%,
            rgba(0, 0, 0, 0.08) 100%
        );

    z-index: 1;
}

/* Text container */
.about-story-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 650px;

    margin-left: 3.5%;
    padding: 70px 30px 80px;

    color: #ffffff;
}

/* Paragraph */
.about-story-content p {
    margin: 0 0 32px;

    <!--font-family: "Sora", sans-serif;-->
    font-size: 24px;
    font-weight: 400;

    line-height: 1.65;
    letter-spacing: 0.2px;

    color: #ffffff;

    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.65);
}

/* Last paragraph */
.about-story-content p:last-child {
    margin-bottom: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .about-story {
        min-height: auto;

        background-position: center center;
    }

    .about-story-content {
        max-width: 620px;

        margin-left: 0;

        padding: 60px 35px 70px;
    }

    .about-story-content p {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 28px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .about-story {

        background-position: center top;

        min-height: auto;
    }

    .about-story-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.68) 0%,
                rgba(0, 0, 0, 0.62) 50%,
                rgba(0, 0, 0, 0.72) 100%
            );
    }

    .about-story-content {
        width: 100%;
        max-width: 100%;

        padding: 45px 22px 55px;
    }

    .about-story-content p {
        font-size: 16px;
        line-height: 1.65;

        margin-bottom: 26px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .about-story-content {
        padding: 35px 18px 45px;
    }

    .about-story-content p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 23px;
    }

}

/* =========================================
   MOBILE HERO - FIX
   Desktop remains unchanged
========================================= */

@media (max-width: 767px) {

    /* Space between header and hero image */
    .hero-slider-layout {
        padding-top: 65px !important;
        height: auto !important;
        min-height: 0 !important;
    }

    /* Swiper container */
    .hero-image-slider,
    .hero-image-slider .swiper,
    .hero-image-slider .swiper-wrapper,
    .hero-image-slider .swiper-slide {
        position: relative !important;
        height: auto !important;
        min-height: 0 !important;
    }

    /* Hero image wrapper */
    .hero-slider-image {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
    }

    .hero-slider-image figure {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
    }

    /* Actual image */
    .hero-slider-image img,
    .hero-image-slider .swiper-slide img {
        position: relative !important;
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;
        min-height: 0 !important;

        object-fit: contain !important;
    }

    /* Don't let empty hero content create unwanted height */
    .hero-slider-layout > .container {
        display: none !important;
    }
}