/* =========================
RESET
========================= */

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

/* =========================
BODY
========================= */

body {
    background: #000;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

/* =========================
NAVBAR
========================= */

header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
}

.navbar {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 20px 40px;

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

/* LOGO */

.logo {
    color: #ff2d7a;
    font-size: 2rem;
    font-weight: bold;
}

/* LINKS */

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

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff2d7a;
}

/* BOTONES NAV */

.nav-buttons {
    display: flex;
    gap: 15px;
}

.login-btn,
.vip-btn {
    padding: 14px 26px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.login-btn {
    background: transparent;
    border: 1px solid #333;
    color: white;
}

.login-btn:hover {
    background: #111;
}

.vip-btn {
    background: #ff2d7a;
    color: white;
}

.vip-btn:hover {
    transform: scale(1.05);
}

/* =========================
HERO
========================= */

.hero {
    width: 100%;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    background:
    linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.9)
    ),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=1974&auto=format&fit=crop")
    center/cover;
}

.hero-text {
    max-width: 800px;
    padding: 20px;
}

.hero-text h2 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 40px;
}

/* HERO BUTTON */

.hero-btn {
    background: #ff2d7a;
    border: none;
    color: white;
    padding: 18px 40px;
    border-radius: 14px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.hero-btn:hover {
    transform: scale(1.05);
}

/* =========================
GALERIA PUBLICA
========================= */

.gallery {

    width: 100%;

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 30px;

    padding: 80px 60px;

    background: #000;

}

/* CARD */

.card {

    background: #111;

    border-radius: 24px;

    overflow: hidden;

    border: 1px solid #222;

    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

/* IMAGEN */

.card img {

    width: 100%;

    height: 280px;

    object-fit: cover;

    display: block;

}

/* INFO */

.card-info {

    padding: 25px;

}

.card-info h3 {

    color: white;

    margin-bottom: 12px;

    font-size: 1.4rem;
}

.card-info p {

    color: #aaa;

    margin-bottom: 25px;

}

/* BOTON CARD */

.card-info button {

    background: #ff2d7a;

    color: white;

    border: none;

    padding: 14px 24px;

    border-radius: 14px;

    cursor: pointer;

    transition: 0.3s;
}

.card-info button:hover {
    transform: scale(1.05);
}

/* =========================
POPUP VIP
========================= */

.popup {

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,0.8);

    display: none;

    justify-content: center;

    align-items: center;

    z-index: 9999;
}

.popup-content {

    width: 90%;
    max-width: 450px;

    background: #111;

    padding: 40px;

    border-radius: 24px;

    text-align: center;

    position: relative;
}

.popup-content h2 {

    margin-bottom: 20px;

    font-size: 2rem;
}

.popup-content p {

    color: #ccc;

    margin-bottom: 30px;
}

/* BOTON POPUP */

.popup-subscribe {

    background: #ff2d7a;

    border: none;

    color: white;

    padding: 16px 30px;

    border-radius: 14px;

    cursor: pointer;

    font-size: 1rem;
}

/* CERRAR */

.close-btn {

    position: absolute;

    top: 20px;
    right: 20px;

    font-size: 1.5rem;

    cursor: pointer;
}

/* =========================
LOGIN POPUP
========================= */

.login-popup {

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,0.8);

    display: none;

    justify-content: center;

    align-items: center;

    z-index: 99999;
}

.login-box {

    width: 90%;
    max-width: 420px;

    background: #111;

    padding: 40px;

    border-radius: 24px;

    position: relative;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* TITULO */

.login-box h2 {

    text-align: center;

    margin-bottom: 10px;
}

/* INPUTS */

.login-box input {

    width: 100%;

    padding: 16px;

    border-radius: 14px;

    border: 1px solid #333;

    background: #1a1a1a;

    color: white;

    outline: none;
}

/* BOTONES LOGIN */

.login-box button {

    background: #ff2d7a;

    color: white;

    border: none;

    padding: 16px;

    border-radius: 14px;

    cursor: pointer;

    font-size: 1rem;
}

/* CERRAR LOGIN */

.close-login {

    position: absolute;

    top: 20px;
    right: 20px;

    cursor: pointer;

    font-size: 1.4rem;
}

/* =========================
PERFIL VIP
========================= */

.perfil-page {

    width: 100%;

    min-height: 100vh;

    background: #000;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 40px;
}

.perfil-box {

    width: 100%;
    max-width: 1200px;

    background: #111;

    padding: 50px;

    border-radius: 30px;
}

.perfil-box h1 {

    margin-bottom: 20px;

    color: #ff2d7a;
}

.perfil-box p {

    color: #ccc;

    margin-bottom: 40px;
}

/* GALERIA VIP */

.perfil-galeria {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 25px;
}

.perfil-galeria img {

    width: 100%;

    border-radius: 20px;

    height: 350px;

    object-fit: cover;
}

/* LOGOUT */

#logoutBtn {

    margin-top: 40px;

    background: #ff2d7a;

    border: none;

    color: white;

    padding: 16px 26px;

    border-radius: 14px;

    cursor: pointer;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 900px) {

    .navbar {

        flex-direction: column;

        gap: 25px;
    }

    .hero-text h2 {

        font-size: 2.5rem;
    }

    .gallery {

        padding: 40px 20px;
    }
}

@media (max-width: 600px) {

    .nav-links {

        flex-direction: column;

        text-align: center;
    }

    .hero-text h2 {

        font-size: 2rem;
    }

    .hero-text p {

        font-size: 1rem;
    }
}