@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
    --purple500: #281154;
    --purple300: #270082;
    --purple600: #1b0058;
    --red600: #dc0000;
    --body: #f9f6ff;
    --max-width: 1200px;
}

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


}

html,
body {

    font-family: "Roboto", sans-serif;
    font-weight: 300;
    line-height: 1.4;
    scroll-behavior: smooth;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: white;
}

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

header {
    background-color: var(--purple300);
    position: sticky;
    top: 0;
    z-index: 100px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    color: white;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 32px;
    font-weight: 600;
}

button {
    padding: 10px 15px;
    border: none;
    transition: 0.2s ease-in-out;
}

button:hover {
    opacity: 0.8;
    transition: 0.2s ease-in-out;

}

nav ul {
    display: flex;
    gap: 20px;
}

nav ul li {
    border-bottom: 2px solid transparent;
    transition: 0.2s ease-in;
}

nav ul li:hover {
    border-bottom: 2px solid white;
    transition: 0.2s ease-in;

}

.hero-section {
    background-image: url(image/hero_image1.png);
    height: 100vh;
    display: grid;
    color: white;
    place-items: center;
    text-align: center;
}

.hero-section .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-section h1 {
    font-size: 96px;
}

.hero-section h3 {
    font-size: 32px;
}

.music-section {
    padding-top: 50px;
    background: var(--purple500);
    color: white;
}

section {
    scroll-margin: 50px;
}

.music-section .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.ipad-iphone-img {
    margin-top: -350px;
    position: relative;
    top: 350px;

}

.primary-btn {
    background-color: var(--red600);
    color: white;
}

.secondary-btn {
    background: var(--purple300);
    color: white;
}

.about-music {

    padding: 500px;
    display: grid;
    place-items: center;
    gap: 50px;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
}

/* harry potter */
.video-section {
    background-image: url(image/video.png);
    min-height: 800px;
    display: grid;
    place-items: center;
    color: white;
    text-align: center;
    margin-top: -450px;
}

.video-section .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: -200px;
}

.hero-section .video-section {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.gfit-section {
    display: flex;
    justify-content: center;
    margin: 100px 0;
    gap: 50px;


}




.gift-content {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.footer-upper {
    background-color: var(--purple600);
    padding: 20px;
    margin-top: 5px;
}

.footer-upper .container {
    display: flex;
    color: white;
    justify-content: space-between;
}

.footer-upper h4 {
    padding-bottom: 10px;
    border-bottom: 2px solid white;
    margin-bottom: 10px;
}

.footer-lower {
    background-color: var(--purple300);
    padding: 20px;
    display: flex;
    justify-content: center;
    color: white;
}
/* ================= RESPONSIVE DESIGN ================= */

/* Tablet Screens */
@media (max-width: 992px) {
    nav ul {
        gap: 10px;
        font-size: 14px;
    }

    .hero-section h1 {
        font-size: 64px;
    }

    .hero-section h3 {
        font-size: 24px;
    }

    .about-music {
        padding: 200px 50px;
    }

    .ipad-iphone-img img,
    .mac-img img {
        max-width: 90%;
    }

    .footer-upper .container {
        flex-wrap: wrap;
        gap: 30px;
    }
}

/* Mobile Screens */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-section {
        background-position: center;
        background-size: cover;
        height: 80vh;
        padding: 20px;
    }

    .hero-section h1 {
        font-size: 48px;
    }

    .hero-section h3 {
        font-size: 18px;
    }

    .music-section .container,
    .about-music,
    .video-section .container,
    .gift-section {
        padding: 20px;
        text-align: center;
    }

    .about-music {
        padding: 100px 20px;
    }

    .video-section {
        min-height: 400px;
        margin-top: 0;
    }

    .gift-section {
        flex-direction: column;
        align-items: center;
    }

    .gift-card img {
        max-width: 80%;
    }

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

/* Extra Small Screens */
@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 32px;
    }

    .hero-section h3 {
        font-size: 16px;
    }

    button {
        width: 100%;
    }

    .ipad-iphone-img img,
    .mac-img img,
    .gift-card img {
        max-width: 100%;
    }
}
