@font-face {
  font-family: 'ApfelFett';
  src: url('../font/ApfelGrotezk-Fett.otf') format('opentype');
}

@font-face {
  font-family: 'ApfelRegular';
  src: url('../font/ApfelGrotezk-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'ApfelSatt';
  src: url('../font/ApfelGrotezk-Satt.otf') format('opentype');
}

/* Títulos */
h1, h2, h3, .navbar-brand, .carousel-caption h2 {
  font-family: 'ApfelFett', sans-serif;
}

/* Descripciones */
p, .carousel-caption p, .btn, body {
  font-family: 'ApfelRegular', sans-serif;
}

/* Letras pequeñas */
.small, .text-muted, footer, .footer p, .footer a {
  font-family: 'ApfelSatt', sans-serif;
}

.footer2 p,
.footer2 a {
  font-family: 'ApfelGrotezk-Satt', sans-serif; /* más ligera */
  font-weight: normal;
  color: #6c757d; /* respeta el estilo text-muted */
}


body {
    background-color: #fff;
}
.navbar {
    background-color: #000 !important;
}
.top-logo-container {
    text-align: center;
    padding: 10px 0;
    background-color: #fff;
}
.top-logo-container img {
    width: 120px;
    height: auto;
}

/* Carrusel base */
#mainCarousel {
    margin-top: 0;
    overflow: hidden;
}
.carousel-item img {
    width: 100%;
    height: 800px; /* altura PC */
    object-fit: cover;
    filter: brightness(0.7);
}
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 80%;
    max-width: 600px;
}
.carousel-caption h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}
.carousel-caption p {
    font-size: 1.3em;
    margin-bottom: 20px;
}
.carousel-caption .btn {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 12px 25px;
    font-size: 1.1em;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #fff;
    color: #000;
    padding: 20px 0;
    border-top: 1px solid #fff;
}
.footer .logo-footer {
    width: 100px;
    height: auto;
    margin-bottom: 5px;
}
.footer .text-muted {
    color: #555 !important;
    font-size: 0.9em;
}
.footer a {
    color: #555;
}
.footer a:hover {
    color: #000;
    text-decoration: none;
}

/* PC: mostrar 3 imágenes */
@media (min-width: 992px) {
    .carousel-inner {
    display: flex;
    }
    .carousel-item {
    flex: 0 0 33.333%; /* 3 imágenes lado a lado */
    display: block;
    }
}

/* Móvil: altura más alta y 1 imagen */
@media (max-width: 991px) {
    .carousel-item img {
        height: 600px; /* más alto en móvil */
    }
    .carousel-caption h2 {
    font-size: 1.8em;
    }
    .carousel-caption p {
    font-size: 1em;
    }
    .carousel-caption .btn {
        padding: 8px 18px;
        font-size: 0.9em;
    }
    .footer .col-md-6 {
    text-align: center !important;
    }
    .footer .col-md-6:first-child {
    margin-bottom: 15px;
    }
}
