/* =========================================================
   ABOUT HERO SECTION
   ========================================================= */

.about-hero {
    position: relative;
    width: 100%;
    min-height: 200vh;
    background-image: url('../images/bg-about.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


/* ---------- GRADIENT OVERLAY ---------- */

.about-hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(66, 44, 48, 0) 0%,
        rgba(66, 44, 48, 0.4) 25%,
        rgba(66, 44, 48, 0.7) 50%,
        #422C30 100%
    );
    z-index: 1;
}


/* ---------- CONTENT WRAPPER ---------- */

.about-hero__wrapper {
    position: relative;
    z-index: 2;
    padding: 140px 0 180px;
}


/* =========================================================
   TOP TEXT SECTION (Promo style)
   ========================================================= */

.about-hero__top {
    padding: 100px 0 140px;
    text-align: center;
    color: #ffffff;
}

.about-hero__top-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-hero__kicker {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 32px;
}

.about-hero__title {
    font-family: "Roslindale", serif;
    font-size: 96px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin: 0 0 48px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.about-hero__desc {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}


/* =========================================================
   MIDDLE SECTION (Image left, Text right)
   ========================================================= */

.about-hero__middle {
    padding: 100px 0;
}

.about-hero__middle-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-hero__middle-image {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: visible;
    border-radius: 8px;
}

.about-hero__middle-image::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -40px;
    width: 200px;
    height: 80vh;
    border: 2px solid var(--color-accent, #b85b3e);
    z-index: -1;
    pointer-events: none;
}

.about-hero__middle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero__middle-content {
    color: #ffffff;
}

.about-hero__middle-title {
    font-family: "Roslindale", serif;
    font-size: 54px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin: 0 0 40px;
}

.about-hero__middle-text {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.about-hero__middle-text p {
    margin: 0 0 24px;
}

.about-hero__middle-text p:last-child {
    margin-bottom: 0;
}

/* Reversed layout (Text left, Link right) */
.about-hero__middle--reversed .about-hero__middle-link {
    order: 2;
}

.about-hero__middle--reversed .about-hero__middle-content {
    order: 1;
}

/* Link block */
.about-hero__middle-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero__link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.about-hero__link:hover {
    opacity: 0.8;
}

.about-hero__link-text {
    font-family: "Roslindale", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
}

.about-hero__link-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.about-hero__link:hover .about-hero__link-arrow {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Keep accent rectangle for link */
.about-hero__middle-link::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 80vh;
    border: 2px solid var(--color-accent, #b85b3e);
    z-index: -1;
    pointer-events: none;
}


/* =========================================================
   BOTTOM SECTION (Centered text only)
   ========================================================= */

.about-hero__bottom {
    position: relative;
    padding: 100px 0 0;
}

.about-hero__bottom-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 80px;
    text-align: center;
}

.about-hero__bottom-text {
    font-family: "Roslindale", serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
}


/* ---------- SCROLL DOWN ---------- */

.about-hero__scroll {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.about-hero__scroll-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    animation: bounceScroll 2s ease-in-out infinite;
    cursor: pointer;
}

@keyframes bounceScroll {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 1200px) {
    .about-hero__middle-inner {
        padding: 0 60px;
        gap: 80px;
    }

    .about-hero__middle-title {
        font-size: 48px;
    }

    .about-hero__bottom-inner {
        padding: 0 60px;
    }

    .about-hero__bottom-text {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    .about-hero__title {
        font-size: 72px;
    }

    .about-hero__middle-inner {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 40px;
    }

    .about-hero__middle-image {
        height: 500px;
    }

    .about-hero__middle-title {
        font-size: 42px;
    }

    .about-hero__bottom-inner {
        padding: 0 40px;
    }

    .about-hero__bottom-text {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        background-attachment: scroll;
    }

    .about-hero__wrapper {
        padding: 100px 0 120px;
    }

    .about-hero__top {
        padding: 60px 0 80px;
    }

    .about-hero__top-inner {
        padding: 0 32px;
    }

    .about-hero__title {
        font-size: 56px;
        margin-bottom: 32px;
    }

    .about-hero__desc {
        font-size: 15px;
    }

    .about-hero__middle {
        padding: 60px 0;
    }

    .about-hero__middle-inner {
        padding: 0 32px;
        gap: 48px;
    }

    .about-hero__middle-image {
        height: 400px;
    }

    .about-hero__middle-title {
        font-size: 36px;
        margin-bottom: 32px;
    }

    .about-hero__middle-text {
        font-size: 15px;
    }

    .about-hero__bottom {
        padding: 60px 0 100px;
    }

    .about-hero__bottom-inner {
        padding: 0 32px;
    }

    .about-hero__bottom-text {
        font-size: 22px;
    }

    .about-hero__scroll {
        bottom: 40px;
    }

    .about-hero__scroll-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .about-hero__title {
        font-size: 42px;
    }

    .about-hero__middle-title {
        font-size: 32px;
    }

    .about-hero__middle-image {
        height: 320px;
    }

    .about-hero__bottom-text {
        font-size: 20px;
    }
}


/* =========================================================
   VIDEO SECTION
   ========================================================= */

.video-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


/* ---------- BACKGROUND IMAGE ---------- */

.video-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-section__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* ---------- VIDEO CONTAINER ---------- */

.video-section__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 80px;
}


/* ---------- WHITE FRAME ---------- */

.video-section__frame {
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.15);
}


/* ---------- VIDEO PLAYER ---------- */

.video-section__player {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    background: #000000;
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 1200px) {
    .video-section__container {
        padding: 60px;
    }

    .video-section__frame {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .video-section {
        min-height: 80vh;
    }

    .video-section__container {
        padding: 40px 32px;
    }

    .video-section__frame {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .video-section__container {
        padding: 24px;
    }

    .video-section__frame {
        padding: 16px;
    }
}
