/* Fuentes y base */
body {
    font-family: 'Times New Roman', Times, serif;
    background: linear-gradient(180deg, #fdfdfd 0%, #c587ff 100%);
    color: #2c2c2c; /* Texto oscuro para mejor contraste */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Encabezado */
.header {
    background: linear-gradient(90deg, #121212, #1a1a1a);
    border-bottom: 1px solid #dcd8df;
    position: sticky;
    top: 0;
    z-index: 1030;
    animation: fadeInDown 1s ease forwards;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

/* Logo ajustado */
.hero-logo {
    width: 40%;
    max-width: 400px;
    height: auto;
    animation: pulse 4s infinite;
    display: block;
    margin: 0;
    transform: translateX(5px);
}

/* Dropdown menú */
.dropdown-toggle {
    color: #fff !important;
    font-weight: 500;
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    border-color: #c9c7ca !important;
    background: transparent !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
    background-color: #7e7d80 !important;
    color: #121212 !important;
    box-shadow: 0 0 8px #302f30;
}

/* Hero */
.hero {
    margin: 40px 20px;
    height: 60vh;
    color: #1a1a1a;
    text-shadow: 0 0 6px #646464;
    animation: fadeIn 2s ease forwards;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 5px;
    text-shadow: 0 0 6px #545257;
}

.highlight {
    color: #ffffff;
    text-shadow: 0 0 8px #000000;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Inspiración del día */
.inspiration {
    background: #121212;
    border: 1px solid #6912b6;
    color: #d4a7a7;
    animation: fadeInUp 1.5s ease forwards;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 8px rgba(75, 0, 130, 0.4);
}

.section-title {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 0 6px #704e8d;
    margin-bottom: 2rem;
}

.trend-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.trend-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff7f7;
}

/* Imagen diseño más amado */
/* Contenedor de la inspiración: usa flexbox para centrar en móvil y desktop */
.inspiration .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centra horizontalmente */
  align-items: center;
  gap: 0.5rem; /* espacio entre columnas */
}

/* Columna de la imagen */
.inspiration .col-md-6:first-child {
  flex: 1 1 300px; /* que crezca y tenga mínimo 300px */
  display: flex;
  justify-content: center; /* centra la imagen dentro de la columna */
  margin-bottom: 0.5rem;
}

/* Imagen responsiva y centrada */
.inspiration img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(75, 0, 130, 0.5);
  object-fit: contain;
  display: block;
}

/* Columna de texto */
.inspiration .col-md-6:last-child {
  flex: 1 1 500px;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 767px) {
  .inspiration .row {
    flex-direction: column;
  }

  .inspiration .col-md-6 {
    flex: 1 1 100%;
  }
}

/* Botones */
.btn-outline-gold {
    color: #ffffff;
    border-color: #7a7a7a;
    transition: all 0.3s ease;
    background: transparent;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.5rem 1.2rem;
}

.btn-outline-gold:hover,
.btn-outline-gold:focus {
    background-color: #a57caf;
    color: #121212;
    box-shadow: 0 0 8px #ae00ff;
}

/* Carrusel */
.carousel-section {
    color: #2c2c2c;
    margin-bottom: 3rem;
}

.carousel-inner {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(149, 0, 255, 0.5);
}

/* Imágenes del carrusel */
.carousel-img {
    width: 70%;
    max-height: 700px;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 0 4px #4b0082);
    transition: transform 0.5s ease;
    border-radius: 0.5rem;
    margin: 0 auto;
}

.carousel-item:hover .carousel-img {
    transform: scale(1.05);
}

.carousel-caption {
    background-color: rgba(31, 31, 31, 0.6);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    color: #dcdcdc;
    text-shadow: 0 0 4px #000000;
}

.carousel-caption h5 {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.carousel-caption p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #ccc;
}

/* Botones del carrusel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 0 3px rgb(255, 0, 0));
}

/* Botones favoritos */
.btn-favorite {
    border: none;
    border-radius: 0 15px 15px 0;
    color: #ffffff;
    font-size: 1.3rem;
    transition: color 0.3s ease;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-favorite:hover {
    color: #000000;
}

.btn-favorite.favorito-activo {
    color: #ff0000;
}

/* Sección Nosotros */
.team {
    background: #121212;
    border: 1px solid #ffffff;
    animation: fadeInUp 1.5s ease forwards;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 8px rgba(76, 0, 130, 0.3);
    color: #ddd;
}

.team-member h5 {
    font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 9px #ffffff;
}

.team-member p {
    font-size: 0.9rem;
    color: #b4b4b4 !important;
    font-style: italic;
}

.team-photo {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 0 8px rgba(75, 0, 130, 0.5);
    transition: transform 0.3s ease;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    display: block;
}

.team-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #9b59b6;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 15px 0;
    text-align: center;
    margin-top: auto;
    font-size: 0.9rem;
}

footer nav ul {
    padding: 0;
    margin: 10px 0 0 0;
    list-style: none;
}

footer nav ul li {
    display: inline-block;
    margin: 0 15px;
}

footer nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer nav ul li a:hover {
    color: #a57caf;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .carousel-img {
        max-height: 250px;
        width: 100%;
    }

    .team-photo {
        width: 100px;
        height: 100px;
    }

    .team-member h5 {
        font-size: 1.1rem;
    }
}
