﻿* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

body {
    background-image: url('/img/fondo.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.logo {
    width: min(300px, 65%);
    height: auto;
    margin-bottom: 50px;
}

.title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.subtitle {
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 1rem;
    opacity: 0.9;
}

.links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.links li {
    margin: 10px 0;
}

.links a {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    text-decoration: none;
    font-weight: 600;
    backdrop-filter: blur(4px);
    transition: all 0.2s ease;
}

.links a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.footer {
    position: relative;
    z-index: 1;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.locations {
    width: min(900px, 90%);
    height: auto;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .links a {
        width: 100%;
        max-width: 260px;
    }
}
