@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

@font-face {
    font-family: 'Action Comics Black';
    src: url('fonts/Action Comics Black.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


:root {
    --hero-bg: #C9E6A1;
    --video-bg: #E55249;
    --feature1-bg: #EDD46B;
    --feature2-bg: #9B8EDF;
    --footer-bg: #000000;
    --text-color: #333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.manguland-text {
    font-family: 'Action Comics Black', sans-serif;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero Section */
.hero-section {
    background: var(--hero-bg) url('imgs/banner1bg.png') no-repeat center center / cover;
    height: 900px;
    display: flex;
    position: relative;
    align-items: center;
}

.hero-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    width: 1200px;
}

.hero-leftside {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: start;
}

.hero-leftside .manguland-app-logo {
    width: 200px;
}

.hero-rightside {
    display: flex;
    flex: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100px;
    align-items: end;
}

.imgbanner1-image {
    height: 750px;
}

.hero-content .title1-image {
    width: 300px;
}

.main-logo {
    width: 300px;
    margin-bottom: 30px;
}

.hero-tagline {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    color: #4A4A4A;
    margin-bottom: 30px;
}

.hero-tagline .highlight {
    color: #E55249;
}

.app-badges {
    display: flex;
    gap: 15px;
}

.app-badges img {
    height: 50px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 450px;
}

/* Video Section */
.video-section {
    background-color: var(--video-bg);
    padding: 100px 0;
    display: flex;
    justify-content: center;
}

.video-box {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    background-color: #4A4A4A;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Feature Sections */
.privacy-policy-section {
    background: var(--hero-bg) url('imgs/banner1bg.png') no-repeat center center / cover;
    display: flex;
    position: relative;
    align-items: center;
}

.privacy-policy-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    h2 {
        text-align: center;
    }
}

.privacy-policy-page-container {
    .manguland-app-logo {
        width: 200px;
    }

    .main-logo {
        width: 300px;
    }
}

.match-flavors {
    background: var(--feature1-bg) url('imgs/banner2bg.png') no-repeat center center / cover;
}

.serve-feast {
    background: var(--feature2-bg) url('imgs/bannerbg3.png') no-repeat center center / cover;
}

.feature-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.feature-container.reversed {
    flex-direction: row;
}

.feature-content {
    flex: 1;
}

.feature-title {
    width: 400px;
    margin-bottom: 20px;
}

.feature-content p {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.feature-image {
    flex: 1;
    margin: 100px 0px 0px 0px;
}

.feature-image img {
    max-width: 100%;
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 60px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo img {
    width: 150px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-group a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
}

.link-group a:hover {
    opacity: 1;
}

.footer-studio {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

.studio-logo {
    width: 180px;
}

.feature-list li {
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;

    img {
        width: 150px;
        height: 150px;
    }

    p {
        display: flex;
        flex-direction: column;
        justify-content: start;
    }
}

/* Responsive Design */
@media screen and (max-width: 992px) {

    .hero-container,
    .feature-container {
        flex-direction: column;
        text-align: center;
    }

    .feature-container.reversed {
        flex-direction: column;
    }

    .hero-rightside {
        position: relative;
        right: 0px !important;
    }

    .hero-leftside {
        margin-left: 0 !important;
        margin-bottom: 32px !important;
        align-items: center !important;
    }

    .hero-section {
        height: auto !important;
        display: flex;
        flex-direction: column;
    }

    .manguland-app-logo {
        width: 200px !important;
    }

    .imgbanner1-image {
        height: 450px !important;
    }

    .hero-content,
    .hero-image,
    .feature-content,
    .feature-image {
        width: 100%;
    }

    .hero-tagline {
        font-size: 2.5rem;
    }

    .app-badges {
        justify-content: center;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .footer-studio {
        align-items: center;
    }

    .match-flavors {

        .feature-container {
            flex-direction: column-reverse !important;
        }

        .feature-title {
            margin-bottom: 0px !important;
        }

        .feature-content {
            width: 300px;
            margin-top: 42px;
        }

        .feature-image {
            width: 450px !important;
            margin-top: 32px !important;
        }
    }

    .serve-feast {
        .feature-content {
            width: 300px;
            margin-bottom: 0px !important;
            margin-top: 42px !important;
        }

        .feature-image {
            margin-top: 32px !important;
            width: 450px !important;
        }
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    .hero-tagline {
        font-size: 2rem;
    }

    .main-logo {
        width: 200px;
    }

    .feature-title {
        width: 100%;
    }

    .imgbanner1-image {
        height: 350px !important;
        width: 350px !important;
    }

    .app-badges {
        flex-direction: column;
    }

    .match-flavors {

        .feature-content {
            width: 200px;
            margin-top: 42px !important;

        }

        .feature-image {
            margin-top: 32px !important;
            width: 300px !important;
        }
    }

    .serve-feast {
        .feature-content {
            width: 200px;
            margin-top: 42px !important;
        }

        .feature-image {
            margin-top: 32px !important;
            width: 300px !important;
        }
    }

    .privacy-policy-page-container {
        .manguland-app-logo {
            width: 100px;
        }

        .main-logo {
            width: 150px;
        }
    }

    .feature-item {
        margin-top: 20px !important;
        margin-bottom: 40px !important;
        flex-direction: column !important;
        text-align: center;

        img {
            margin-bottom: 20px !important;
        }
    }

    .feature-item-content .manguland-text {
        text-align: center !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

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

    .imgbanner1-image {
        height: 650px;
    }

    .hero-section {
        height: 700px;
    }

    .main-logo {
        width: 250px;
    }

    .hero-content .title1-image {
        width: 200px;
    }

    .hero-leftside {
        margin-left: 32px;

        .manguland-app-logo {
            width: 100px;
        }
    }

    .hero-rightside {
        right: 50px;
    }

    .feature-container {
        gap: 0px;
    }

    .feature-content {
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
}