/* Ajustes generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fdfdfd;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Top bar */
.top-bar {
    font-size: 0.95rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.social-icons .icon {
    width: 24px;
    height: 24px;
    margin-left: 12px;
    border-radius: 4px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.social-icons a {
    margin-left: 10px;
}

.social-icons .icon:hover {
    transform: scale(1.1);
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: auto;
    width: 80px;
}

.nav-link {
    color: #fff !important;
    margin-left: 15px;
    font-weight: 500;
}

.nav-link:hover {
    color: #ffd700 !important;
}

/* Responsive navbar */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
    }

    .navbar-brand img {
        width: 55px;
    }

    .nav-link {
        margin-left: 5px;
        margin-right: 5px;
        font-size: 0.85rem;
        padding: 6px 4px;
    }

    .navbar-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Contenedor principal */
.reserva-container {
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

#calendarioReservas {
    min-height: 450px;
}

/* Formulario */
.form-label {
    font-weight: 500;
}

input,
textarea,
select {
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 8px 12px;
}

textarea {
    resize: vertical;
}

/* Botón */
.btn-primary {
    background-color: #2e7d32;
    border: none;
    padding: 10px;
    font-size: 1.1rem;
}

.btn-primary:hover {
    background-color: #1b5e20;
}

/* Footer */
footer {
    background-color: #222;
    color: #ecf0f1;
    text-align: center;
    padding: 25px 15px;
    margin-top: 50px;
    border-top: 3px solid #000000;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
    color: #ffd700;
}

/* FullCalendar */
.fc .fc-daygrid-day.fc-day-other {
    background: #f8f9fa;
}

.fc-event[style*="background-color: rgba"] {
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Mobile */
@media (max-width: 768px) {
    #calendarioReservas { min-height: 350px; }
}

@media (max-width: 768px) {
    h1, h2, h3 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    button, a.btn {
        padding: 14px 20px;
        font-size: 1.2rem;
    }

    section, .container {
        padding-bottom: 40px;
    }
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}
