/* Animaciones */
@keyframes parallax {
    0% { transform: translateZ(-1px) scale(1.2) translateY(0); }
    50% { transform: translateZ(-1px) scale(1.2) translateY(-20px); }
    100% { transform: translateZ(-1px) scale(1.2) translateY(0); }
}

@keyframes particleAnimation {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(calc(-50vw + (100vw * var(--random-x)))); opacity: 0; }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes gradientShift {
    0%, 100% { background: linear-gradient(180deg, var(--secondary-color), rgb(15, 13, 19)), url('images/rectangle-240.png'); }
    50% { background: linear-gradient(180deg, rgba(84, 0, 158, 0.3), rgb(15, 13, 19)), url('images/rectangle-240.png'); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1.1); }
    50% { transform: translateY(-5px) scale(1.1); }
}

@keyframes textGlow {
    0% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.2); }
    100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.6); }
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(84, 0, 158, 0.5), 0 0 20px rgba(84, 0, 158, 0.3); }
    to { box-shadow: 0 0 20px rgba(84, 0, 158, 0.8), 0 0 30px rgba(84, 0, 158, 0.5); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Estilos generales */
* {
    box-sizing: border-box;
}

/* Header y navegación */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #fff;
    background: #0f0d13;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
}

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

/* Header y navegación */
.main-nav {
    background: transparent;
    padding: 0.5rem clamp(1rem, 5vw, 4rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    transition: background-color 0.3s ease;
    left: 0;
    right: 0;
}

/* Logo */
.main-nav .logo {
    width: clamp(50px, 12vw, 1500px);
    height: auto;
    padding: 1vw;
}

.main-nav .menu-icon {
    display: none;
    width: 30px;
    height: 30px;
    background: url('images/menu-icon.png') no-repeat center center;
    background-size: contain;
    cursor: pointer;
    position: absolute;
    right: 7vw;
    top: 7vw;
}

/* Efecto fondo nav-bar */
.main-nav.scrolled {
    background: rgba(12, 0, 22, 0.95);
    transition: background-color 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 1vw;
    list-style: none;
    flex-direction: row;
    justify-content: space-between;
}

.nav-links li a {
    position: relative;
    font-size: clamp(1rem, 1.2vw, 1000rem);
    padding: 2vw;
    font-family: Inter;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

/* Botones */
.button-yellow {
    padding: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    font-family: Inter;
    border: none;
    cursor: pointer;
    background-color: #fdcf08;
    color: #1d1b20;
    border-radius: 6px;
    font-weight: bold;
    font-size: clamp(0.875rem, 2rem, 1rem);
}

/* Botón en la barra de navegación */
.main-nav .button-yellow.nav-button {
    width: 10vw;
    height: auto;
    border-radius: 50px;
    font-size: 1.5vw;

}

/* Botón en la sección hero */
.hero-content .button-yellow {
    width: clamp(10rem, 14vw, 30rem);
    border-radius: 80px;
    height: clamp(3rem, 4vw, 10rem);
    padding: 0.5vw 1.5vw;
    font-size: clamp(1rem, 1.5vw, 2.5rem);
    margin: 0 auto;
    margin-top: 24px; /* Adjusted for symmetry */
}

/* Botón en el formulario de registro */
.signup-form .button-yellow {
    width: 100%;
    border-radius: 20px;
    height: 52px;
    padding: 12px;
    font-size: clamp(0.875rem, 2rem, 1.125rem);
}

/* Hero section */
.hero {
    background: linear-gradient(180deg, var(--secondary-color), rgb(15, 13, 19)),
                url('images/rectangle-240.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease-in-out;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particles span {
    position: absolute;
    display: block;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: particleAnimation 5s linear infinite;
    opacity: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 13, 19, 0.2);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
    box-sizing: border-box;
    left: 0;
    right: 0;
}

.hero-content {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 5000rem);
    font-weight: 700;
    margin-bottom: 24px; /* Adjusted for symmetry */
    line-height: 1.2;
    animation: fadeInUp 1s ease-out, textGlow 2s ease-in-out infinite alternate;
    padding: 0 2rem;
    text-align: center;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: clamp(1rem, 1vw, 1000px);
    margin-bottom: 2vw;
}

/* Cards oscuras */
.dark-card {
    background-color: rgba(15, 13, 19, 0.6);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* Formulario */
.signup-form {
    background-color: #efefef;
    border-radius: 30px;
    padding: 40px 48px;
    box-shadow: 0px 16px 16px rgba(0, 0, 0, 0.25);
}

.signup-form select {
    padding: 12px;
    border-radius: 6px;
    border: none;
    background: white;
}

/* Gradientes y efectos */
.purple-gradient {
    background: linear-gradient(90deg, #0f0d13, #230e4f 25%, #54009e 50%, #230e4f 75%, #0f0d13);
}

.card-gradient {
    background: linear-gradient(180deg, rgba(156, 38, 148, 0.56) 50%, rgba(54, 13, 51, 0.56));
}

/* Grid layouts */
.features-grid, .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    padding: 0 clamp(1rem, 5vw, 20px);
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    padding: 40px clamp(1rem, 5vw, 20px);
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    justify-items: center;
}

.mockups-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(to bottom, #0F0D13 0%, #0F0D13 90%, #060508 100%);
    position: relative;
    overflow: hidden;
}

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

.phone-mockup {
    max-width: 100%;
    height: auto;
}

.features {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease-in-out;
    background: linear-gradient(180deg, var(--secondary-color), rgb(15, 13, 19)),
                url('images/3d-abstract-digital-background-with-flowing-cyber-dots.jpg') center/cover;
    background-attachment: fixed;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.features-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 3vw 0;
    margin: 0 auto;
    max-width: 1200px;
}

.features-content h2 {
    font-size: clamp(4rem, 3vw, 5rem);
    margin-bottom: 16px;
    color: #fff;
}

.features-content > p {
    font-size: clamp(1rem, 1.5vw, 1.6rem);
    margin: 3vw 0;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.features-card {
    background: rgba(15, 13, 19, 0.5);
    border-radius: 20px;
    padding: clamp(1.2rem, 3vw, 3vw);
    box-shadow: 0px 12px 6px rgba(0, 0, 0, 0.25);
    text-align: center;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    max-width: 100%;

    img {
        width: clamp(50px, 4vw, 60px); 
        height: clamp(50px, 4vw, 60px); 
        margin-bottom: 16px;
        transition: all 0.3s ease;
    }

    h3 {
        font-size: clamp(1rem, 1.5vw, 1.6rem);
        transition: all 0.3s ease;
    }

    p {
        font-size: clamp(0.75rem, .9vw, 1.2rem);
        line-height: 1.4;
        color: #fff;
        opacity: 0;
        position: absolute;
        top: 50%;
        left: 24px;
        right: 24px;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    &:hover {
        background: rgba(15, 13, 19, 0.8);

        img {
            transform: scale(1.1) translateY(-1vw); /* Corrected transform property */
            filter: brightness(1.1);
        }

        h3 {
            opacity: 0;
            transform: translateY(-10px);
        }

        p {
            opacity: 1;
            transform: translateY(-25%);
        }
        user-select: none;
    }
}

.passion-section {
    text-align: center;
    padding: 10rem clamp(1rem, 5vw, 4rem);
    max-width: 100vw;
    background: linear-gradient(180deg, var(--secondary-color), rgb(15, 13, 19)),
                url('images/3d-abstract-digital-background-with-flowing-cyber-dots.jpg') center/cover;
    background-attachment: fixed;
}


.passion-content {
    max-width: 1200px;
    margin: 0 auto;
}
    p {
        font-size: clamp(1rem, 1.5vw, 1.6rem);
        margin-bottom: 48px;
        color: #fff;}
    h2 {
        font-size: clamp(4rem, 3vw, 5rem);
        margin-bottom: 16px;
        color: #fff;}

.passion-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0px, 30vw));
    gap: 1.5vw;
    margin: 0 auto;
    max-width: 100%;
    padding: 0 clamp(1rem, 5vw, 6rem);
    width: 100%;
    box-sizing: border-box;
    position: relative;
    left: 0;
    right: 0;
}

.passion-card {
    background: linear-gradient(145deg, rgba(253, 208, 8, 0.493), rgba(253, 207, 8, 0.2));
    border: 1px solid rgba(253, 207, 8, 0.3);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 8px rgba(253, 207, 8, 0.1);
    height: clamp(15rem, 14vw, 20rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
    transition: background 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
    width: 100%;

    img {
        width: 64px;
        height: 64px;
        transition: all 0.3s ease;
    }

    h3 {
        font-size: clamp(1rem, 1.5vw, 1.6rem);
        margin-bottom: clamp(0rem, 1vw, 1000rem);
        color: #fdcf08;
        transition: all 0.3s ease;
    }

    p {
        font-size: clamp(0.5rem, 1.2vw, 1.2rem);
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8);
        display: none;
        opacity: 0;
        transition: all 0.3s ease;
    }

    &:hover {
        background: linear-gradient(145deg, rgba(253, 208, 8, 0.658), rgba(253, 207, 8, 0.3));
        box-shadow: 0 8px 24px rgba(84, 0, 158, 0.4);
        z-index: 1;
        transform: scale(1.05);

        img {
            filter: brightness(1.2);
            transform: translateY(-1vw);
        }

        h3 {
            color: #fff;
            text-shadow: 0 0 8px rgba(253, 207, 8, 0.5);
            display: none;
        }

        p {
            display: contents;
            opacity: 1;
            height: auto;
            transform: translateY(200vw);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        user-select: none;
    }
}

.artist-section {
    background: #0F0D13;
    padding: 15vw clamp(1rem, 5vw, 4rem);
    max-width: 100vw;
    overflow: hidden;
}

.artist-content {
    max-width: 1400px;
    margin: 0 auto;
}

.artist-content {
    text-align: center;
    h2 {
        font-size: clamp(4rem, 3vw, 5rem);
        color: #fff;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
    }
    p {
        font-size: clamp(.9rem, 1.4vw, 1.4rem);
        margin: 2.5vw auto;
        color: #fff}
    }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.benefit-card {
    background: rgba(125, 39, 201, 0.1);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;

    img {
        width: clamp(50px, 10vw, 85px);
        height: clamp(50px, 10vw, 85px);
        object-fit: contain;
        transition: all 0.3s ease;
    }

    p {
        font-size: clamp(0.875rem, 2rem, 1rem);
        line-height: 1.5;
        color: #fff;
        margin: 0;
        transition: all 0.3s ease;
    }

    &:hover {
        background: rgba(125, 39, 201, 0.2);
        transform: translateY(-5px);

        img {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        p {
            color: rgba(255, 255, 255, 0.9);
        }
        user-select: none;
    }
}

.signup {
    background-image: url('images/form-background.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px clamp(1rem, 5vw, 4rem);
    transition: background 0.5s ease-in-out;
    max-width: 100vw;
    overflow: hidden;
}

.signup-content {
    width: 100%;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.signup-header {
    text-align: center;
    color: white;
}

.signup-header {
    h2 {
        font-size: clamp(4rem, 3vw, 5rem);
        font-weight: bold;
        margin-bottom: 16px} 
    p {
        font-size: clamp(1rem, 1vw, 2rem)}
    }


.signup-form {
    background: rgba(15, 13, 19, 0.8);
    padding: 32px;
    border-radius: 12px;
    width: 95%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    left: 0;
    right: 0;
}

.signup-form input[type="text"],
.signup-form input[type="email"] {
    padding: 12px;
    border-radius: 6px;
    border: none;
    background: white;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.signup-footer {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.inspiration-link {
    color: #FFD600;
    text-decoration: none;
    font-weight: 500;
    display: block;
    text-align: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    position: relative;
    font-size: clamp(1rem, 1vw, 2rem);
}

.inspiration-link:hover {
    color: #ffea00;
    transform: translateY(-2px);
}

.inspiration-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ffea00;
    left: 0;
    bottom: -4px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.inspiration-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.social-links {
    display: none;
}

.redes {
    width: auto;
    position: relative;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    animation: glow 2s ease-in-out infinite alternate;
}

.redes:hover {
    transform: scale(1.02);
    animation: none;
    box-shadow: 0 0 25px rgba(84, 0, 158, 1), 0 0 35px rgba(84, 0, 158, 0.7);
}

:root {
    --primary-color: #54009e;
    --secondary-color: rgba(84, 0, 158, 0.178);
}

.social-links img {
    width: 3.125rem; /* 50px to rem */
    height: 3.125rem; /* 50px to rem */
    display: block;
    margin: auto;
    box-shadow: none;
    transition: all 0.3s ease;
    transform: scale(1);
}

.social-links a:hover img {
    filter: brightness(0) saturate(100%) invert(50%) sepia(100%) saturate(500%) hue-rotate(250deg) brightness(100%) contrast(100%);
    transform: scale(1.1);
    animation: float 3s ease-in-out infinite;
}

/* Media Queries */
@media (max-width: 1200px) {
    .passion-card {
        padding: 1vw;
        height: clamp(5rem, 16vw, 12rem);

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

        h3 {
            font-size: clamp(1rem, 2vw, 2.5vw);
        }

        p {
            font-size: clamp(0.65rem, 1.2vw, 10rem);
        }
        &:hover {
            h3 {
                display: none;
                transform: translateY(-10px);
                transition: opacity 0.3s ease, transform 0.3s ease;
            }
        }
    }

    .features-card {
        padding: 20px;

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

        p {
            font-size: 1.2vw;
        }
        &:hover {
            img {
                transform: translateY(-0.5vw);
            }
        }
    }

    .benefit-card {
        padding: 20px;
        gap: 14px;

        img {
            width: clamp(50px, 8vw, 75px);
            height: clamp(50px, 8vw, 75px);
        }

        p {
            font-size: 1.25vw;
        }
    }
}

@media (max-width: 992px) {
    .main-nav .logo {
        width: 20vw;
    }

    .hero h1 {
        font-size: clamp(0px, 5vw, 1000px);
    }

    .hero p {
        font-size: clamp(0px, 2.5vw, 1000px);
    }

    .passion-card {
        padding: 20px;

        h3 {
            font-size: clamp(0px, 2.5vw, 2.5vw);
        }
    }

    .features-content {
        text-align: center;
        h2 {
            font-size: clamp(0px, 5vw, 1000px);
        }

        p {
            font-size: clamp(0px, 2vw, 1000px);
        }
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-card {
        padding: 18px;

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

        p {
            font-size: 0.8125rem;
        }
    }

    .passion-content {
        h2 {
            font-size: clamp(0px, 5vw, 1000px);
        }

        p {
            font-size: clamp(0px, 2vw, 1000px);
        }
    }

    .passion-grid {
        grid-template-columns: repeat(3, minmax(200px, 1fr));
        gap: 16px;
        padding: 20px clamp(1rem, 5vw, 10px);
    }

    .passion-card {
        img {
            width: clamp(0px, 6vw, 6vw);
            height: clamp(0px, 6vw, 6vw);
        }

        h3 {
            font-size: clamp(0rem, 2.5vw, 1100px);
        }

        p {
            font-size: clamp(0rem, 1.5vw, 1100px);
        }
    }
    .passion-card:hover img {
        display: none;
    }

    .passion-card:hover p {
        margin: 0 auto;
        align-items: center;
        transform: translateX(0vw);
        transition: transform 0.5s ease;
    }

    .artist-content {
        text-align: center;
        h2 {
            font-size: clamp(0px, 5vw, 1000px);
        }

        p {
            font-size: clamp(0rem, 1.5vw, 1rem);
        }
    }
    .benefit-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 18px;
        gap: 12px;

        img {
            width: clamp(50px, 7vw, 65px);
            height: clamp(50px, 7vw, 65px);
        }

        p {
            font-size: 1.5vw;
        }
    }
    .signup-header {
        h2 {
            font-size: clamp(0px, 5vw, 1000px);
        }

        p {
            font-size: clamp(0px, 2vw, 1000px);
        }
    }
}

@media (max-width: 768px) {
    .main-nav .logo {
        width: 20vw;
        translate: -8vw;
    }

    .nav-links li a {
            font-size: 2vw;
    }

    .main-nav {
        justify-content: center;
    }

    .button-yellow.nav-button {
        display: none;
    }

    .passion-grid {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
        gap: 16px;
        padding: 20px clamp(1rem, 5vw, 10px);
    }

    .passion-content {
        text-align: center;
        h2 {
            font-size: clamp(0rem, 6vw, 1000rem);
        }
        p {
            font-size: clamp(0rem, 3vw, 1000rem);
        }
    }
    .passion-card {
        img {
            width: clamp(0px, 6vw, 6vw);
            height: clamp(0px, 6vw, 6vw);
        }

        h3 {
            font-size: clamp(0.75rem, 3vw, 1100px);
        }
    }



    .features-content {
        h2 {
            font-size: clamp(0rem, 6vw, 1000rem);
        }
        p {
            font-size: clamp(0rem, 3vw, 1000rem);
        }
    }

    .features-card {
        padding: 16px;

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

        p {
            font-size: 0.8125rem;
        }
    }

    .artist-content {
        text-align: center;
        h2 {
            font-size: clamp(0rem, 6vw, 1000rem);
        }
        p {
            font-size: clamp(0rem, 2.2vw, 1000rem);
        }
    }

    .benefit-card {
        padding: 16px;
        gap: 12px;

        img {
            width: clamp(50px, 6vw, 64px);
            height: clamp(50px, 6vw, 64px);
        }

        p {
            font-size: 1.6vw;
        }
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .signup-header {
        h2 {
            font-size: clamp(0rem, 9vw, 1000rem);
        }
        p {
            font-size: clamp(0rem, 3vw, 1000rem);
        }
    }
}

@media (max-width: 480px) {
    .hero-content {
        h1 {
            padding: 0%;
            font-size: clamp(1.5rem, 6vw, 1000rem);
            margin-bottom: 14vw;
        }
        p {
            padding: 8vw;
            font-size: clamp(1rem, 3vw, 1000rem);
            margin-bottom: 12vw;
        }
        .button-yellow {
            font-size: clamp(1rem, 4vw, 1000rem);
        }
    }

    .features-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .features-content {
        padding: 0 1rem;
        h2 {
            font-size: clamp(0rem, 10vw, 1000rem);
            text-align: center;
        }
        p {
            font-size: clamp(0rem, 3.4vw, 1000rem);
            text-align: center;
        }
    }

    .features-card {
        margin: 0 auto;
        width: 90%;
        max-width: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 15px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .features-card p {
        font-size: 0.75rem; /* 12px to rem */
        line-height: 1.2;
    }

    .features-card img {
        width: 1.875rem; /* 30px to rem */
        height: 1.875rem; /* 30px to rem */
    }

    .hero-container {
        padding: 60px 12px;
        max-width: 100vw;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
        position: relative;
        left: 0;
        right: 0;
        overflow-x: hidden;
    }
    .passion-content {
        padding: 0 1rem;
        h2 {
            font-size: 10vw;
            text-align: center;
        }
        p {
            font-size: 3.4vw;
            text-align: center;
        }
    }

    .passion-card {
        width: 90%;
        padding: .7rem;
        margin: 0 auto;

        img {
            transform: translateY(1vw);
            width: clamp(0px, 7vw, 480px);
            height: clamp(0px, 7vw, 480px);
        }

        h3 {
            font-size: clamp(0rem, 3.5vw, 1000rem);
        }
    }

    .passion-card:hover {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .passion-grid {
        grid-template-columns: repeat(1, minmax(100px, 1fr));
        gap: 1rem;
        padding: 20px clamp(1rem, 5vw, 10px);
    }

    .artist-content {
        h2 {
            font-size: 10vw;
            text-align: center;
        }
        p {
            font-size: 3.4vw;
            text-align: center;
        }
    }
    .benefits-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
        padding: 0 20px;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    .benefit-card {
        img {
            width: clamp(0px, 15vw, 480px);
            height: clamp(0px, 15vw, 480px);
            margin-bottom: 12px;
        }

        p {
            font-size: 3vw;
        }
    }
    body {
        overflow-x: hidden;
        width: 100vw;
        position: relative;
    }
    .signup-header {
        padding: 0 0.5rem;
        h2 {
            font-size: clamp(0rem, 9vw, 1000rem);
        }
        p {
            font-size: clamp(1rem, 3vw, 1000rem);
        }
    }

    .main-nav {
        display: flex;
        justify-content: center;
        position: fixed;
        top: 0;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background: rgba(15, 13, 19, 0.9);
        position: absolute;
        top: 60px; /* Adjust based on your header height */
        left: 0;
        padding: 10px 20px;
        box-sizing: border-box;
        text-align: center;
    }

    .nav-links.show {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background: rgba(15, 13, 19, 0.9);
        position: absolute;
        top: 5rem;
        left: 0;
        padding: 20px;
        box-sizing: border-box;
        text-align: center;
        font-size: 6vw;
    }

    .nav-links li {
        width: 100%;
        margin: 10px 0;
    }

    .nav-links li a {
        width: 100%;
        padding: 10px 0;
        text-align: center;
        font-size: 1.5rem;
    }

    .main-nav .menu-icon {
        display: block;
    }

    .main-nav .logo {
        padding: 12px;
        width: 50vw;
        translate: 0vw;
    }
}
