@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

html {
    font-size: 15px;
}

@media (min-width: 768px) {
    html {
        font-size: 17px;
    }
}

body {
    margin: 0;
    padding: 0;
    margin-bottom: 60px;
    font-family: 'Inter', sans-serif;
    background-color: #DBDBDB;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
}

.card {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.table thead.table-dark th {
    font-weight: 600;
    letter-spacing: 0.03em;
}

.hero-section {
    background-image: url('/imagenes/imagen menu.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    margin-left: -300px;
    margin-right: -300px;
}

    .hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
    }

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

    .hero-content h1 {
        font-size: 2.2rem;
        font-weight: 600;
    }

    .hero-content p {
        font-size: 1.1rem;
        opacity: 0.85;
    }

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.footer {
    background-color: #f4f4f4;
}
