/*
    PALETA DE COLORES
    Fondo: #1a1a1a (Negro Oscuro)
    Fondo Header/Footer: #111111 (Negro más Oscuro)
    Texto/Detalles: #c39d67 (Oro/Beige Oscuro)
    Texto General: #e0e0e0 (Gris Claro)
*/

/* --- Estilos Generales --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: radial-gradient(circle at top, #1c2533, #0e1218);
  color: #e0e0e0;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Georgia", serif;
  color: #e0e0e0;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: #c39d67;
}

/* --- Botón CTA Base --- */
.btn-cta {
  background-color: #c39d67;
  color: #1a1a1a;
  padding: 15px 30px;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
}

.btn-cta:hover {
  background-color: #a08050;
}

.btn-cta-small {
  background-color: #c39d67;
  /* color: #1a1a1a; */
  background: radial-gradient(circle at top, #1c2533, #0e1218);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 0.9rem;

  cursor: pointer;
  transition: background-color 0.3s;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 30px;
}

.btn-cta-small:hover {
  background-color: #a08050;
}

/* -------------------------------------- */
/* --- 1. CABECERA Y NAVEGACIÓN (HEADER)--- */
/* -------------------------------------- */
.header {
  background-color: #111111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.logo img {
  height: 75px;
  width: auto;
  display: block;
}

.nav a {
  margin-left: 25px;
  font-size: 0.9rem;
  color: #e0e0e0;
  transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
  color: #c39d67;
}

.cta-nav {
  border: 1px solid #c39d67;
  padding: 8px 15px;
  border-radius: 3px;
  font-weight: bold;
}

/* -------------------------------------- */
/* --- 2. SECCIÓN SOBRE NOSOTROS (ABOUT) --- */
/* -------------------------------------- */
.about-section {
  padding-bottom: 80px;
}

/* --- Hero de About --- */
.about-hero {
  background-image: url("/img/nosotros.jpeg");
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 5%;
}

.hero-overlay-about {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.about-hero .hero-content {
  z-index: 2;
  max-width: 800px;
  width: 100%;
  padding: 20px;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-hero .title-gold {
  font-size: 1.2rem;
  color: #c39d67;
  font-weight: bold;
  letter-spacing: 5px;
  display: block;
  margin-bottom: 10px;
}

/* --- Sección de Misión/Filosofía --- */
.mission-section {
  display: flex;
  max-width: 1200px;
  margin: 80px auto;
  background: radial-gradient(circle at top, #1c2533, #0e1218);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.mission-image-wrapper {
  flex: 1;
  min-width: 50%;
}

.mission-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mission-content {
  flex: 1;
  padding: 40px;
  text-align: left;
}

.mission-content .title-gold-small {
  font-size: 1rem;
  color: #c39d67;
  font-weight: bold;
  letter-spacing: 4px;
  margin-bottom: 5px;
}

.mission-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.mission-content p {
  color: #cccccc;
  margin-bottom: 20px;
}

.key-values {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 15px;
}

/* ESTILOS DE TARJETAS DE VALORES CON HOVER (Efecto de Levantamiento) */
.value-item {
  text-align: center;
  padding: 15px 10px;
  border: 1px solid rgba(195, 157, 103, 0.2);
  border-radius: 3px;
  flex: 1;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(195, 157, 103, 0.4);
  border-color: #c39d67;
  cursor: pointer;
}

.value-item i {
  font-size: 2rem;
  color: #c39d67;
  margin-bottom: 8px;
}

.value-item span {
  display: block;
  font-size: 0.9rem;
  font-weight: bold;
  color: #e0e0e0;
}

/* --- Sección de Equipo (Team) --- */
.team-section {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.team-section h2 {
  font-size: 1.5rem;
  color: #c39d67;
  letter-spacing: 4px;
  margin-bottom: 5px;
}

.team-section h3 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.barber-cards-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.barber-card {
  background: radial-gradient(circle at top, #1c2533, #0e1218);
  border-radius: 5px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-top: 5px solid #c39d67;
  transition: transform 0.3s;
}

.barber-card:hover {
  transform: translateY(-5px);
}

.barber-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.barber-info {
  padding: 20px;
  text-align: center;
}

.barber-info h4 {
  font-size: 1.5rem;
  color: #e0e0e0;
  margin-bottom: 5px;
}

.barber-info .role {
  color: #c39d67;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.barber-info .specialty {
  font-size: 0.9rem;
  color: #cccccc;
}

.team-cta {
  margin-top: 20px;
  border-radius: 30px;
}

/* -------------------------------------- */
/* --- 3. FOOTER (PIE DE PÁGINA) --- */
/* -------------------------------------- */
.footer {
  background-color: #111111;
  padding: 30px 5%;
  border-top: 1px solid rgba(195, 157, 103, 0.1);
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo img {
  height: 70px;
  width: auto;
}

.footer-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.footer-nav a {
  color: #e0e0e0;
  margin: 0 15px;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #c39d67;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #c39d67;
  border-radius: 5px;
  margin: 0 5px;
  color: #111111;
  font-size: 1.1rem;
  transition: opacity 0.3s, background-color 0.3s;
}

.footer-social .social-icon:hover {
  background-color: #a08050;
}

.btn-footer-cta {
  color: #c39d67;
  border: 1px solid #c39d67;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background-color 0.3s, color 0.3s;
  text-transform: uppercase;
}

.btn-footer-cta:hover {
  background-color: #c39d67;
  color: #111111;
}

.footer-copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(195, 157, 103, 0.1);
  margin-top: 20px;
}

.footer-copyright p {
  color: #777777;
  font-size: 0.8rem;
}

/* --- Media Queries (Responsividad) --- */
@media (max-width: 1024px) {
  .mission-section {
    flex-direction: column;
    margin: 60px 5%;
  }
  .mission-image-wrapper {
    min-width: 100%;
    height: 400px;
  }
}

@media (max-width: 768px) {
  /* Header Responsiveness */
  .header {
    flex-direction: column;
    padding-bottom: 10px;
  }
  .nav {
    padding-top: 10px;
  }
  .nav a {
    margin: 0 8px;
    font-size: 0.8rem;
  }

  /* About Responsiveness */
  .about-hero h1 {
    font-size: 2.5rem;
  }
  .mission-content h2 {
    font-size: 2rem;
  }
  .key-values {
    flex-direction: column;
  }
  .barber-card {
    width: 100%;
    max-width: 350px;
  }

  /* Footer Responsiveness */
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-nav a {
    margin: 5px 10px;
  }
  .footer-social {
    order: 4;
  }
  .btn-footer-cta {
    order: 3;
  }
}
