/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #e60023; /* Red */
    --secondary-color: #c9a66b; /* Gold accent */
    --dark-color: #121212; /* Dark background */
    --light-color: #ffffff; /* White */
    --text-color: #ffffff;
    --bg-color: #000000;
    --card-bg: #181818;
    --card-hover: #282828;
}

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

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

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

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

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

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

ul {
    list-style-type: none;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
    position: relative;
}

ul li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #d10021;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 0, 35, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--light-color);
    color: var(--light-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--light-color);
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--light-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.login-button {
    color: var(--light-color);
    font-weight: 500;
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.login-button:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh; /* Changed from 100vh to 80vh */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 70px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    text-align: left;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    background: linear-gradient(to right, #ffffff, #e60023);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: Capitalized;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Playlists Section */
.playlists {
    padding: 100px 0;
    background-color: var(--bg-color);
}
.playlists-first{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0 100px 0; 
    color: var(--text-color);
    animation: fade-in 1s ease-out;
    transition: all 0.3s ease;
}

.playlists-first h1{
    font-size: 50px;
    font-weight: bold;
    flex: 2;
}

.playlists-first p{
    font-size: 20px;
    line-height: 1.5;
    flex: 1.5;
}
@keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
    }


.playlists-title .icon {
    display: inline-block;
    margin-left: 10px;
    animation: pulse 2s infinite;
}

.playlists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.playlist-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.playlist-card:hover {
    transform: translateY(-10px);
    background-color: var(--card-hover);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.playlist-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.playlist-cover {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

.playlist-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.playlist-info {
    flex: 1;
}

.playlist-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.playlist-creator {
    font-size: 0.9rem;
    color: #b3b3b3;
    margin-bottom: 10px;
}

.save-button {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #b3b3b3;
    padding: 5px 10px;
    border: 1px solid #b3b3b3;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.save-button:hover {
    color: var(--light-color);
    border-color: var(--light-color);
}

.track {
    cursor: pointer;
}

.track.active {
    background-color: rgba(230, 0, 35, 0.1);
}

.track.active .track-title {
    color: var(--primary-color);
    font-weight: 700;
}

.play-button.playing {
    background-color: var(--primary-color);
    animation: pulse 2s infinite;
}

.play-button.playing i {
    content: "\f04c";
}

.playlist-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.control-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.control-button {
    color: #b3b3b3;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-button:hover {
    color: var(--light-color);
}

.play-button {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background-color: #d10021;
}

.playlist-tracks {
    padding: 10px 0;
}

.track {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.track:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.track-number {
    width: 30px;
    color: #b3b3b3;
    font-size: 0.9rem;
}

.track-info {
    flex: 1;
    padding-right: 10px;
}

.track-title {
    font-weight: 500;
    margin-bottom: 3px;
}

.track-artist {
    font-size: 0.8rem;
    color: #b3b3b3;
}

.track-duration {
    color: #b3b3b3;
    font-size: 0.9rem;
}

/* Reach Global Section */
.reach-global {
    padding: 100px 0;
    background-color: var(--dark-color);
}

.reach-global-content {
    display: flex;
    gap: 50px;
}

.reach-text {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.reach-text h2{
    font-size: 70px;
    font-weight: bold;
    color: var(--light-color);
    animation: fade-in 1s ease-out;
}

.reach-text.animated {
    opacity: 1;
    transform: translateY(0);
}

.phone-mockup {
    flex: 1;
    text-align: center;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease 0.3s;
}

.phone-mockup.animated {
    opacity: 1;
    transform: translateX(0);
}

.phone-mockup img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Who We Are Section */
.who-we-are {
    padding: 100px 0;
    background-color: var(--bg-color);
    position: relative;
}

.who-we-are:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 0, 35, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
}

.who-we-are-content {
    display: flex;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.who-we-are-image {
    flex: 1;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.who-we-are-image.animated {
    opacity: 1;
    transform: translateX(0);
}

.who-we-are-text {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.who-we-are-text h2 {
    font-size: 70px;
    font-weight: bold;
    color: var(--light-color);
    animation: fade-in 1s ease-out;
}

.who-we-are-text.animated {
    opacity: 1;
    transform: translateY(0);
}

.who-we-are-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* How to Distribute Section */
.how-to-distribute {
    padding: 100px 0;
    background-color: var(--dark-color);
}

.how-to-distribute-content {
    display: flex;
    gap: 50px;
}

.how-to-text {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.how-to-text h2 {
    font-size: 70px;
    font-weight: bold;
    color: var(--light-color);
    animation: fade-in 1s ease-out;
}

.how-to-text.animated {
    opacity: 1;
    transform: translateY(0);
}

.dashboard-image {
    flex: 1;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease 0.3s;
}

.dashboard-image.animated {
    opacity: 1;
    transform: translateX(0);
}

.dashboard-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Get Started Section */
.get-started {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.get-started:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(230, 0, 35, 0) 70%);
    z-index: 0;
}

.get-started-content {
    position: relative;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    z-index: 1;
}

.get-started-content.animated {
    opacity: 1;
    transform: translateY(0);
}

.get-started .btn {
    margin-top: 30px;
    background-color: var(--light-color);
    color: var(--primary-color);
}

.get-started .btn:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-color);
    color: var(--light-color);
    padding: 100px 0;
}

.testimonials-header {
    margin: 0 auto 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.testimonials-header.animated {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    width: 360px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial.animated {
    opacity: 1;
    transform: translateY(0);
}

.testimonial:nth-child(1) { transition-delay: 0.1s; }
.testimonial:nth-child(2) { transition-delay: 0.2s; }
.testimonial:nth-child(3) { transition-delay: 0.3s; }

.stars {
    color: var(--primary-color);
    margin: 15px 0;
    font-size: 1.2rem;
}

.testimonial-author {
    font-style: italic;
    opacity: 0.8;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background-color: var(--dark-color);
}

.partners-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partners-logos img {
    height: 30px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.partners-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    background-color: var(--bg-color);
    color: var(--light-color);
    padding: 100px 0;
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.contact-header.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-methods {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-method {
    text-align: center;
    width: 250px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-method.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-method:nth-child(1) { transition-delay: 0.1s; }
.contact-method:nth-child(2) { transition-delay: 0.2s; }
.contact-method:nth-child(3) { transition-delay: 0.3s; }
.contact-method:nth-child(4) { transition-delay: 0.4s; }

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(230, 0, 35, 0.3);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .reach-global-content,
    .who-we-are-content,
    .how-to-distribute-content {
        flex-direction: column;
    }
    
    .who-we-are-image {
        order: -1;
    }
    
    .contact-methods {
        justify-content: center;
    }

    .playlists-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        display: none;
    }

    .playlists-grid {
        grid-template-columns: 1fr;
    }
    .playlists-first{
        flex-direction: column;
        padding: 10px;
    }
    .playlists-first h1{
        font-size: 30px
    }
    .reach-text h2{
        font-size: 40px;
    }
    .who-we-are-text h2{
        font-size: 40px;
    }
    .how-to-text h2{
        font-size: 40px;
    }
    .who-we-are-content{
        flex-direction: column-reverse;
        gap: 20px;
    }
    .hero-content h1{
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .playlists-title {
        font-size: 2.2rem;
    }
}






