/* ========================================
   Decant Perfumes - Estilos Principales
   ======================================== */

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

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}

/* ========================================
   Contenedor Principal
   ======================================== */

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* ========================================
   Contenido Central
   ======================================== */

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    z-index: 10;
}

/* ========================================
   Logo
   ======================================== */

.logo-wrapper {
    margin-bottom: 40px;
    animation: fadeIn 1s ease-in-out;
}

.logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* ========================================
   Tipografía
   ======================================== */

.title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    animation: slideUp 0.8s ease-out 0.3s both;
}

.construction-message {
    font-size: 1.25rem;
    color: #4a5568;
    font-weight: 400;
    margin-bottom: 10px;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.subtitle {
    font-size: 1rem;
    color: #718096;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 400px;
    animation: slideUp 0.8s ease-out 0.9s both;
}

/* ========================================
   Líneas Decorativas
   ======================================== */

.decorative-line {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.5), transparent);
    opacity: 0.6;
}

.decorative-line.top {
    position: absolute;
    top: 50px;
    width: 50px;
}

.decorative-line.middle {
    width: 60px;
    margin: 30px 0;
    background: linear-gradient(to right, transparent, rgba(236, 91, 138, 0.6), transparent);
}

.decorative-line.bottom {
    width: 50px;
    margin-top: 30px;
}

.decorative-line.bottom-absolute {
    position: absolute;
    bottom: 50px;
    width: 50px;
}

/* ========================================
   Elementos Flotantes
   ======================================== */

.floating-dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 3s ease-in-out infinite;
}

.dot-1 {
    width: 12px;
    height: 12px;
    background-color: #ec5b8a;
    top: 25%;
    right: 40px;
    animation-delay: 0s;
}

.dot-2 {
    width: 10px;
    height: 10px;
    background-color: #6b5b95;
    bottom: 33%;
    left: 30px;
    animation-delay: 1s;
}

/* ========================================
   Animaciones
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .construction-message {
        font-size: 1.1rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .logo {
        width: 150px;
        height: 150px;
    }

    .logo-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }

    .construction-message {
        font-size: 1rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .logo {
        width: 120px;
        height: 120px;
    }

    .logo-wrapper {
        margin-bottom: 20px;
    }

    .content {
        padding: 0 15px;
    }
}
