/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GENERAL */

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */

header {
    padding: 10px 0;
    background: #1200d8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
}

.logo img {
    display: block;
    width: 220px;
    height: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.75;
}
/* HERO */

.hero {
    min-height: 720px;
    padding: 90px 0;
    background: linear-gradient(135deg, #7b4dff 0%, #6346f5 100%);
    overflow: hidden;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    position: relative;
}

.hero-text {
    color: white;
    text-align: center;
    max-width: 620px;
    z-index: 2;
}

.hero-text h2 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.15;
    margin-bottom: 22px;
    color: white;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 35px;
    color: white;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


.btn {
    display: inline-block;
    padding: 17px 34px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.25s ease;
}

.primary-btn {
    background: #ff7eb6;
    color: white;
    box-shadow: 0 12px 28px rgba(255, 126, 182, 0.3);
}

.primary-btn:hover {
    background: #ff67a9;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 430px;
    transform: rotate(-14deg);
    border-radius: 35px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

/* DOWNLOAD SECTION */

.download-section {
    padding: 100px 20px 80px;
    background: linear-gradient(
        135deg,
        #ff5f95 0%,
        #ff4d88 100%
    );
    position: relative;
    overflow: hidden;
}

.download-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.download-text h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
}

.download-text p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 45px auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* STORE BADGES */

.download-buttons img {
    height: 70px;
    width: auto;
    transition: transform 0.25s ease;
}

.download-buttons img:hover {
    transform: translateY(-3px);
}

.store-btn {
    display: inline-block;
    background: black;
    color: white;
    text-decoration: none;
    padding: 18px 34px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.25s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.store-btn:hover {
    transform: translateY(-3px);
    background: #111;
}
/* FOOTER */

footer {
    padding: 20px 0;
    text-align: center;
    background: #f5f5f5;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* ABOUT HERO */

.about-hero {
    padding: 60px 20px;
    background: linear-gradient(
        135deg,
        #ff5f95 0%,
        #ff4d88 100%
    );
    text-align: center;
    color: white;
}

.about-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.about-hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 500;
    max-width: 750px;
    margin: 0 auto;
}

/* CONTENT PAGES */

.content-page {
    padding: 90px 0;
    background: #ffffff;
}

.content-container {
    max-width: 850px;
}

.content-container h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: #1200d8;
    margin-bottom: 30px;
}

.content-container h2 {
    font-size: 1.6rem;
    color: #1200d8;
    margin-top: 35px;
    margin-bottom: 10px;
}

.content-container p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 18px;
}

footer a {
    color: #1200d8;
    text-decoration: none;
    font-weight: 700;
}

footer a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 600px) {
    .nav-container {
        flex-direction: column;
        gap: 14px;
    }

    .logo img {
        width: 165px;
    }

    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
    }
}

@media (min-width: 768px) {

/* Hide hero buttons on desktop */

    .hero-buttons {
        display: none;
    }

    .hero-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hero-text {
        text-align: left;
        flex: 1;
    }

    .hero-image {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .hero-image img {
        max-width: 560px;
        transform: rotate(-18deg) translateX(90px);
    }
}
@media (max-width: 480px) {
    .hero {
        padding: 55px 0;
        min-height: auto;
    }

.hero-content {
    flex-direction: column-reverse;
}

    .hero-text h2 {
        font-size: 2.7rem;
    }

    .hero-text p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-image img {
        max-width: 300px;
        transform: rotate(-12deg);
    }

    .hero-buttons {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        text-align: center;
   
}