/* =====================
   Mo's Heat - styles.css
===================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
}

/* HEADER */
header {
    text-align: center;
    padding-top: 20px;
    background-color: #000;
}

.logo-container {
    padding: 10px 0;
}

.logo {
    max-width: 200px;
    height: auto;
}

.stitch-line {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.stitch-img {
    width: 100%;
    height: auto;
    display: block;
}

/* VIDEO SECTION */
.video-section {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.video-wrapper {
    width: 100%;
    max-width: 1092px;
    border: 2px solid #d4a017;
    background: #000;
}

.video-wrapper video {
    width: 100%;
    display: block;
}

/* STORY SECTION */
.story-section {
    padding: 20px 40px 40px;
}

.story-container {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.story-image {
    flex-shrink: 0;
    width: 280px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-text {
    flex: 1;
    color: #d4a017;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
}

.story-text p {
    margin-bottom: 16px;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.signature {
    margin-top: 20px;
}

.signature img {
    max-width: 160px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
    margin-top: 40px;
    font-size: 13px;
    color: #ccc;
    font-family: 'Poppins', sans-serif;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .story-container {
        flex-direction: column;
        align-items: center;
    }

    .story-image {
        width: 100%;
        max-width: 300px;
    }

    .signature {
        text-align: center;
    }
}
