:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #7000ff;
    --accent-hover: #9d4dff;
    --secondary-bg: #111111;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    --container-width: 600px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 20px;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.8s ease-out;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(112, 0, 255, 0.3);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 30px;
    }
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.hero-nav-buttons {
    margin-top: 370px;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
    margin-bottom: 150px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('../hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3), var(--bg-color));
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    margin-top: 35vh;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 10px;
    color: white;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.9;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-side-menu {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.side-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-color);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.side-menu-item i {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.side-menu-item:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.hero-nav-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 210px;
    z-index: 2;
}

.hero-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.btn-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.hero-nav-btn:hover .btn-circle {
    border-color: var(--accent-color);
    background: rgba(112, 0, 255, 0.2);
    transform: scale(1.1);
}

.hero-nav-btn span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-nav-btn:hover span {
    color: var(--accent-color);
}

.scroll-indicator {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
    opacity: 1;
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow i {
    font-size: 2rem;
    color: white;
    opacity: 0.7;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow i {
    font-size: 2rem;
    color: white;
    opacity: 0.7;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

.section-title {
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    color: white;
    display: block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
}

.section-subtitle {
    text-align: center;
    color: #ccc;
    margin-top: -30px;
    margin-bottom: 40px;
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bio-section {
    position: relative;
    text-align: center;
    background: var(--bg-color);
    padding: 80px 20px;
}

.bio-social-buttons {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 60px;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.bio-social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.bio-social-btn .btn-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.bio-social-btn span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.bio-social-btn:hover .btn-circle {
    border-color: var(--accent-color);
    background: rgba(112, 0, 255, 0.2);
    transform: scale(1.1);
}

.bio-social-btn:hover span {
    color: var(--accent-color);
}

.bio-content {
    max-width: 800px;
    margin: 0 auto;
}

.bio-text {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.youtube-video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 200px;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.youtube-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

.mix-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.mix-card {
    background: var(--secondary-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.8s ease-out;
    border: 1px solid var(--glass-border);
    opacity: 0;
    transform: translateY(30px);
}

.mix-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
}

.mix-art {
    height: 200px;
    background: linear-gradient(45deg, #222, #444);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mix-card:hover .play-overlay {
    opacity: 1;
}

.play-icon {
    font-size: 3rem;
    color: white;
    filter: drop-shadow(0 0 10px var(--accent-color));
}

.mix-info {
    padding: 20px;
    text-align: center;
}

.mix-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.mix-info p {
    color: #888;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.btn-small {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 30px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.highlight-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.highlight-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(112, 0, 255, 0.3);
}

.highlight-item:hover img {
    transform: scale(1.05);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    top: -110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
    opacity: 1;
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow i {
    font-size: 2rem;
    color: white;
    opacity: 0.7;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

/* Contact Form Styles */
.contact-content {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
}

.hero-nav-buttons {
    margin-top: 370px;
}

.contact-form {
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    width: 100%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.2);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.social-card {
    background: var(--secondary-bg);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    background: rgba(112, 0, 255, 0.1);
}

.social-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.social-card h3 {
    margin-bottom: 0;
    font-size: 0.75rem;
    display: block;
    font-weight: 400;
}

.social-card p {
    display: none;
}

footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    margin-top: 60px;
    color: #888;
    font-size: 0.9rem;
}

.fixed-btn {
    position: fixed;
    right: 30px;
    width: 60px;
    height: 60px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.whatsapp-btn {
    bottom: 30px;
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

.scroll-top-btn {
    bottom: 100px;
    background-color: var(--accent-color);
}

.scroll-top-btn:hover {
    background-color: var(--accent-hover);
    transform: scale(1.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 6rem;
    }

    .mix-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-nav-buttons {
        margin-top: 350px;
    }
}

.hero-nav-buttons {
    gap: 1rem;
}

.btn-circle {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
}

.bio-social-buttons {
    gap: 1rem;
}


/* Mediakit Section Styles */
.mediakit-content {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.mediakit-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.mediakit-link i {
    font-size: 4rem;
    transition: all 0.3s ease;
}


.contact-form {
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    width: 100%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.2);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.social-card {
    background: var(--secondary-bg);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    background: rgba(112, 0, 255, 0.1);
}

.social-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.social-card h3 {
    margin-bottom: 0;
    font-size: 0.75rem;
    display: block;
    font-weight: 400;
}

.social-card p {
    display: none;
}

footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    margin-top: 60px;
    color: #888;
    font-size: 0.9rem;
}

.fixed-btn {
    position: fixed;
    right: 30px;
    width: 60px;
    height: 60px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.whatsapp-btn {
    bottom: 30px;
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

.scroll-top-btn {
    bottom: 100px;
    background-color: var(--accent-color);
}

.scroll-top-btn:hover {
    background-color: var(--accent-hover);
    transform: scale(1.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 6rem;
    }

    .mix-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-nav-buttons {
        margin-top: 350px;
    }
}

.hero-nav-buttons {
    gap: 1rem;
}

.btn-circle {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
}

.bio-social-buttons {
    gap: 1rem;
}
}

/* Mediakit Section Styles */
.mediakit-content {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.mediakit-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.mediakit-link i {
    font-size: 4rem;
    transition: all 0.3s ease;
}

.mediakit-link:hover {
    transform: scale(1.1);
}

/* Mobile Side Menu Visibility Control */
@media (max-width: 768px) {
    .hero-side-menu {
        position: fixed;
        opacity: 0;
        transform: translateX(-100%);
        pointer-events: none;
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .hero-side-menu.visible {
        opacity: 1;
        transform: translateX(0);
    }

    /* Mobile Fixed Buttons Visibility Control */
    .fixed-btn {
        opacity: 0;
        transform: scale(0);
        pointer-events: none;
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .fixed-btn.visible {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }

    /* Reduce hero background size by 10% on mobile */
    .hero-bg {
        background-size: calc(90% + 90px);
        background-position: center top;
    }

    /* Move hero nav buttons up on mobile */
    .hero-nav-buttons {
        margin-top: 185px;
    }
}

/* Desktop: Position background to start from top */
@media (min-width: 769px) {
    .hero-bg {
        background-size: auto 110%;
        background-position: center top;
    }

    /* Ensure logo stays at 60% on desktop too (explicitly) */
    .hero-logo {
        top: 60% !important;
    }
}

/* Hide hero title and subtitle globally (replaced by logo) */
.hero-title,
.hero-subtitle {
    display: none !important;
}

/* VITAL Logo - Center with fade-in and pulse animation */
.hero-logo {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    animation: logoFadeIn 1.5s ease-out, logoPulse 3s ease-in-out 1.5s infinite;
    display: block !important;
}

.hero-logo img {
    width: 400px;
    max-width: 80vw;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 255, 0, 0.3));
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes logoPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        filter: drop-shadow(0 0 30px rgba(0, 255, 0, 0.3));
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        filter: drop-shadow(0 0 40px rgba(0, 255, 0, 0.5));
    }
}
