/* Configuración global de la fuente */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.main-container {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('fondo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
}

.linktree-container {
    max-width: 680px;
    margin: 0 auto;
}

.profile-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
}

.restaurant-name {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
}

.link-button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    margin: 10px 0;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.link-button:hover {
    background-color: #fff;
    transform: scale(1.02);
    color: #333;
}

.link-button i {
    margin-right: 10px;
}

.developer-section {
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1000;
}

.developed-by {
    color: rgba(255, 255, 255, 0.8);
}

.developer-logo {
    max-width: 80px;
    transition: opacity 0.3s ease;
}

.developer-logo:hover {
    opacity: 0.8;
}

/* Estilos para el modal y horarios */
.modal-content {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.horarios-lista {
    padding: 10px 0;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.horario-item:last-child {
    border-bottom: none;
}

.dia {
    font-weight: 600;
    color: #333;
}

.horas {
    color: #666;
}

.estado-badge {
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 10px;
}

.estado-abierto {
    background-color: #28a745;
    color: white;
}

.estado-cerrado {
    background-color: #dc3545;
    color: white;
}

/* Estilos del Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #333);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.splash-logo {
    width: 150px;
    height: 150px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
} 