@font-face {
    font-family: 'quicksand-bold';
    src: url('../fonts/Quicksand-Bold.ttf');
}

:root {
    --color-primario: #EE7D00;
    --tamano-fuente-base: 16px;
}

body {
    font-family: 'quicksand-bold';
    background-image: url(../img/patron.png);
}

/* NAVBAR */

/* Estilos de navbar */
.navbar-custom {
    background-color: #f0f0f0;
    /* gris claro */
    color: #000;
    /* texto negro */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
}

.navbar-custom .nav-link {
    color: #000;
    font-weight: 500;
    margin: 0 10px;
}

.navbar-custom .nav-link:hover {
    color: #333;
}

.btn-pedidos {
    background-color: #000;
    color: #fff;
    font-weight: 500;
}

.btn-pedidos:hover {
    background-color: #3a3a3a;
    color: #fff;
}

body {
    padding-top: 80px;
    /* espacio para navbar fija */
}

.menu h2 {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* CARDS */

.card-body {
    flex: 1;
}

.card-body h5 {
    font-size: 1rem;
}

.card-body p {
    font-size: .7rem;
}

.card-body a {
    font-size: .7rem;
}

.btn-primary {
    background-color: var(--color-primario);
}

.btn-primary:hover {
    background-color: #3a3a3a;
}


/* Pedidos */
.french-bread-section h2 {
    color: #EE7D00;
    font-size: 1.5rem;
}

.btn-order {
    background-color: #EE7D00;
    padding: 10px 30px;
    border: none;
    border-radius: 30px;
}

.btn-order:hover {
    color: #fff;
}

/* Separadores */

.hr-punteado {
    height: 0;
    border: none;
    border-top: 2px dashed #333;
    width: 40%;
    margin: 0 auto;
    padding: 10px;
    /* linea punteada gris */
}

.btg {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    color: #EE7D00;
}

/* carrusel */

.carousel-image {
    width: 240px;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform .4s ease, box-shadow .4s ease;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.carousel-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

@media (max-width: 768px) {
    .carousel-image {
        width: 45%;
        height: 250px;
    }
}

@media (max-width: 576px) {
    .carousel-image {
        width: 100%;
        height: 220px;
    }
}

/* Contacto */


.info-block h3 {
    letter-spacing: .5px;
}

.local-image {
    max-height: 400px;
    object-fit: cover;
}

.text-danger {
    color: #EE7D00 !important;
}

.btn-danger {
    background-color: #EE7D00 !important;
    color: #000 !important;
}

.btn-danger:hover {
    color: #fff !important;
}

@media (max-width: 768px) {
    .info-block {
        text-align: center;
    }

    .local-image {
        width: 100%;
        max-height: 300px;
        margin-top: 1rem;
    }
}

/* Redes Sociales */
/*
.social-section {
    background-color: #fffaf5;
}
*/
.social-icon {
    font-size: 1.2rem;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.tiktok {
    background: #000;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer {
    background-color: #fffaf5;
    text-align: center;
    font-size: 12px;
}

.footer a {
    text-decoration: none;
    color: #EE7D00;
}

.footer a:hover {
    text-decoration: none;
    color: #adadad;
}