/* --- Variables de Color --- */
:root {
    --pantone-black: #0A0A0A; /* Un negro profundo, no necesariamente 000000 absoluto */
    --white: #FFFFFF;
    --pantone-4515c-gold: #C0B090; /* Tono dorado/beige sutil de Pantone 4515C */
    --pantone-18-3838-ultraviolet: #5F4B8B; /* Pantone Ultra Violet (opcional para acentos) */
    --gold-hover: #D4AF37; /* Dorado más brillante para hover */
    --light-gray: #CCCCCC; /* Para textos secundarios o sutiles */
    --text-primary: var(--white); /* Texto principal sobre fondo oscuro */
}

/* --- Reseteo Básico y Estilos Globales --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Para transición suave al hacer scroll si hay más secciones */
}

body {
    font-family: 'Lato', sans-serif; /* Fuente base */
    background-color: var(--pantone-black);
    color: var(--text-primary);
    overflow-x: hidden; /* Prevenir scroll horizontal */
    position: relative; /* Para el z-index de particles.js */
    min-height: 100vh;
}

/* --- Fondo de Partículas --- */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1; /* Detrás de todo el contenido */
}

/* --- Contenedor Principal del Contenido --- */
.content-wrapper {
    position: relative;
    z-index: 1; /* Encima de las partículas */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

/* --- Menú de Redes Sociales --- */
.social-menu {
    position: absolute;
    top: 25px;
    right: 30px;
    display: flex;
    gap: 20px; /* Espacio entre iconos */
}

.social-menu a {
    color: var(--white);
    font-size: 20px; /* Tamaño de los iconos */
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-menu a:hover {
    color: var(--gold-hover);
    transform: scale(1.15);
}

/* --- Sección Hero (Logo y Texto) --- */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInContent 1s ease-out 0.5s forwards; /* Animación para todo el bloque */
    opacity: 0;
}

.perfume-container {
    margin-bottom: 25px;
}

.perfume-bottle {
    max-width: 200px; /* Ajusta según el tamaño de tu imagen */
    height: auto;
    display: block;
    /* Animación de aparición flotante */
    animation: floatIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards;
    opacity: 0;
    transform: translateY(40px);
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--pantone-4515c-gold); /* Dorado sutil para el nombre */
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.subtitle {
    font-family: 'Great Vibes', cursive; /* O 'Lato' si prefieres algo menos caligráfico */
    font-size: 1.8rem;
    color: var(--light-gray);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* --- Animaciones CSS --- */
@keyframes fadeInContent {
    to {
        opacity: 1;
    }
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .brand-name {
        font-size: 3.5rem;
    }
    .subtitle {
        font-size: 1.5rem;
    }
    .perfume-bottle {
        max-width: 160px;
    }
    .social-menu {
        top: 20px;
        right: 20px;
    }
    .social-menu a {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 2.8rem;
    }
    .subtitle {
        font-size: 1.3rem;
    }
    .perfume-bottle {
        max-width: 130px;
    }
    .perfume-container {
        margin-bottom: 20px;
    }
}