* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background-color: #0e0e0e; /* Fondo oscuro para que resalten las fotos */
    color: #ffffff;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 40px 60px;
    z-index: 100;
}

.logo {
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    margin-left: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: 0.3s;
}

.nav-links a:hover { color: #888; }

header {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: 20;
    pointer-events: none;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.hero-content h4 {
    letter-spacing: 8px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 200;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.instagram {
    font-size: 1.1rem;
    opacity: 0.6;
    font-weight: 300;
}

/* CARRUSEL ANIMADO */
.carousel-viewport {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    perspective: 2000px; /* Profundidad 3D */
}

.carousel-track {
    display: flex;
    gap: 30px;
    will-change: transform;
}

.photo-card {
    min-width: 300px;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    filter: grayscale(1) brightness(0.7); /* Empiezan B/N */
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: rotateY(-15deg) translateZ(0); /* Angulación 3D */
    cursor: pointer;
}

.photo-card:hover {
    filter: grayscale(0) brightness(1); /* Color al pasar el mouse */
    transform: scale(1.1) rotateY(0deg) translateZ(100px); /* Se agranda y se endereza */
    z-index: 50;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}