/* Fuente global para todo el documento */
body {
    font-family: 'Kanit', sans-serif;
    text-transform: capitalize;
    color: #000000; /* Texto negro */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar */
.navbar {
    background-color: #fb9c23; /* Color naranja */
}

.navbar-brand {
    font-weight: 700;
    font-style: italic;
    color: white; /* Texto blanco */
}

.nav-link {
    color: white;
}

.nav-link:hover {
    color: black; /* Texto negro al pasar el cursor */
}

/* Menú móvil */
.navbar-collapse {
    background-color: #fb9c23; /* Fondo blanco para el menú móvil */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Jumbotron */
.jumbotron {
    background-size: cover;
    background-attachment: center no-repeat;
}

.jumbotron h1 { 
    font-weight: 700;
    font-style: italic;
    color: #fb9c23; /* Color naranja */
}

.jumbotron p {
    font-weight: 700;
    font-style: italic;
    color: #FFFFFF; /* Texto blanco */
}

/* Cards */
.card-title {
    font-weight: normal;
    font-style: italic;
    color: #fb9c23; /* Color naranja */
}

.card-text {
    font-weight: normal;
    font-style: italic;
    color: #000000; /* Texto negro */
}

.card {
    background-color: #FFFFFF; /* Fondo blanco */
}
.card-img-top {
    width: 100%;
    height: auto;
}

/* Buttons */
.btn-primary {
    background-color: #fb9c23; /* Color naranja */
    border-color: #fb9c23; /* Color naranja */
}

.btn-primary:hover {
    background-color: #d8881a; /* Color naranja más oscuro */
    border-color: #d8881a; /* Color naranja más oscuro */
}

/* Footer */
footer {
    margin-top: 20px;
    background-color: #fb9c23; /* Fondo naranja */
    color: #FFFFFF; /* Texto blanco */
    text-align: center;
    padding: 1rem 0;
}

/* Admin Controls */
#adminControls {
    display: none;
    margin: 2rem 0;
}

#adminControls form {
    margin-bottom: 2rem;
}

#adminControls input,
#adminControls textarea {
    width: 100%;
    margin-bottom: 1rem;
}

.modal-content {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 0.3rem;
}
.card-wrapper {
    display: none; /* Ocultar tarjetas adicionales */
}