@font-face {
    font-family: 'Poppins';
    src: url('/Poppins-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'AbrahamLincoln';
    src: url('/AbrahamLincoln.ttf') format('truetype');
}
@font-face {
    font-family: 'Novecento';
    src: url('/Novecento WideMedium.ttf') format('truetype');
}

/* Reducir tamaños de fuente globalmente */
body {
    font-size: 0.9rem; /* Reducción del 10% del tamaño base */
}

h1, h2, h3, h4, h5, h6 {
    font-size: 0.8em; /* Reducción del 20% para encabezados */
}

.text-sm {
    font-size: 0.75rem !important;
}

.text-base {
    font-size: 0.85rem !important;
}

.text-lg {
    /* font-size: 1rem !important; */
}

.text-xl {
    font-size: 1.15rem !important;
}

.text-2xl {
    font-size: 1.35rem !important;
}

.text-3xl {
    font-size: 1.6rem !important;
}

/* Fin reduccion de fiuentes*/

.logo-carousel {
    animation: scroll 20s linear infinite;
}

.menu-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.menu-content.active {
    max-height: 1000px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}


/* Estilos para el modal de los menues de comida */
#menu-modal {
    transition: opacity 0.3s ease;
}

#menu-modal.fade-in {
    opacity: 1;
}

#menu-modal.fade-out {
    opacity: 0;
}

/* Estilos para los enlaces de idioma */
.language-link {
    cursor: pointer;
    transition: color 0.2s;
}

.language-link.active {
    font-weight: bold;
    color: #F48276;
}

/* Estilos para el contenido del menú */
.lang-content {
    transition: opacity 0.3s;
}


/* Modal animation */
#login-modal, #gallery-modal {
    transition: opacity 0.3s ease;
}

#login-modal.fade-in, #gallery-modal.fade-in {
    opacity: 1;
}

#login-modal.fade-out, #gallery-modal.fade-out {
    opacity: 0;
}

body.modal-open, body.overflow-hidden {
    overflow: hidden;
}



/* Gallery styles */
#gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
}

#gallery-thumbnails::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

#gallery-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

#gallery-thumbnails::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Alert styles */
.alert {
    transition: all 0.3s ease;
    max-height: 200px;
    overflow: hidden;
}

.alert.hide {
    max-height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
}

.alert-success {
    background-color: #d1fae5;
    border-left: 4px solid #10b981;
    color: #065f46;
}

.alert-error {
    background-color: #fee2e2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

.alert-info {
    background-color: #e0f2fe;
    border-left: 4px solid #0ea5e9;
    color: #0c4a6e;
}

.alert-warning {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    color: #92400e;
}
