:root {
    --primary-color: #ffffff;
    --text-color: #ffffff;
    --font-family: 'Quicksand', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
    font-family: var(--font-family);
    overflow: hidden;
    /* Prevent scrolling to keep it minimalist */
}

/* Background image filling the entire screen perfectly */
body {
    /* Replace 'fondo.jpg' with the actual background image filename */
    background-image: url('fondo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
}

/* Overlay to ensure text readability if needed */
body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    /* Subtle dimming */
    z-index: -1;
}

/* Main content wrapper */
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
    color: var(--text-color);
    text-align: center;
}

/* Logo container & logo */
.logo-container {
    margin-bottom: 2rem;
    max-width: 300px;
    width: 100%;
    animation: floating 3s ease-in-out infinite;
    /* Removes the black background, leaving only the white logo visible */
    mix-blend-mode: screen;
    transition: max-width 0.3s ease-in-out;
}

.logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Text styles */
h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 500;
    /* Medium weight, matches the soft look */
    letter-spacing: 1px;
    /* Reduced letter spacing for sentence case */
    margin-bottom: 0.5rem;
    /* Adjusted spacing to match the reference */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Subtle entrance animation */
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 500;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    /* Entrance animation slightly delayed */
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Animations */
@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-container {
        max-width: 220px;
        transition: max-width 0.3s ease-in-out;
    }

    .content {
        padding: 1.5rem;
    }
}