/* ===== Fuentes personalizadas ===== */
@font-face {
  font-family: 'Glacial Indifference';
  src: url('../fonts/GlacialIndifference-Regular.woff2') format('woff2'),
       url('../fonts/GlacialIndifference-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Glacial Indifference';
  src: url('../fonts/GlacialIndifference-Bold.woff2') format('woff2'),
       url('../fonts/GlacialIndifference-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== General ===== */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #fffaf7;
  color: #333;
  line-height: 1.6;
}
.titulo-principal{
    text-align: center;       /* Centra el título */
  margin-bottom: 20px;      /* Espacio debajo para separar del texto */
}

.titulo-principal h1{
      font-size: 3rem;
    font-weight: 400; /* Se aplicará la Light */
    letter-spacing: 3px;
    margin-bottom: 5px;
}
.titulo-principal h1 a {
  text-decoration: none;  /* Quita el subrayado del enlace */
  color: inherit;         /* Mantiene el mismo color que el h1 */
  cursor: pointer;        /* Cursor de manito */
}


.titulo-principal h2 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
}
h1 {
  font-family: 'Glacial Indifference', Georgia, serif;
  font-weight: 700; /* Bold → Amelia */
  letter-spacing: 1px;
  margin: 0 0 15px;
}

h2 {
  font-family: 'Glacial Indifference', Georgia, serif;
  font-weight: 700; /* Bold → Hair and Make Up Artists */
  letter-spacing: 1px;
  margin: 0 0 15px;
}
h3 {
  font-family: 'Glacial Indifference', Georgia, serif;
  letter-spacing: 1px;
  margin: 0 0 15px;
}

p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ===== Logo ===== */
.logo-container {
  text-align: center;
  margin-bottom: 30px;
  
}

.logo-container img {
  width: 400px;   /* o el tamaño que quieras */
  height: auto;
  cursor: pointer;
  display: inline-block;
}

/* ===== Sobre Amelia ===== */
#sobre {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-height: 80vh;
  padding: 40px;
   max-width: 1200px; /* ancho máximo de la sección */
  margin: 0 auto;    /* centra la sección en pantallas grandes */
}

#sobre .image-container {
  flex: 1 1 45%;
  max-width: 500px;
}

#sobre .image-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  object-fit: cover;
  display: block;
}

#sobre .text-container {
  flex: 1 1 50%;
  height: auto;
}

#sobre .text-container h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

/* ===== Servicios ===== */
.section-servicios {
  padding: 40px 20px;
  text-align: center;
  color: #5a4a42;
}

.section-servicios h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.section-servicios p {
  font-size: 1.1em;
  margin-bottom: 40px;
}

.services-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.service {
  padding: 20px;
  border-bottom: 1px solid #e0cfc2;
  text-align: left;
  position: relative;
}

.service h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  position: relative;
  color: #000;
}
.service p{
  font-family:'Glacial Indifference' ;
  color: #000;
  font-size: 20px;
}

.price {
  font-weight: bold;
  font-size: 1.2em;
  color: #a67c52;
  position: absolute;
  right: 20px;
  top: 0;
}

/* ===== Galería ===== */
#galeria {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  color: #5a4a42;
}

#galeria h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 10px;
}

#galeria p {
  text-align: center;
  margin-bottom: 30px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ===== FAQ ===== */
.faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
  
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  font-family: 'Glacial Indifference', Georgia, serif;
  color: #000;
  background: none;
  border: none;
  outline: none;
  padding: 15px;
  text-align: left;
  font-size: 1.1em;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #fce4ec;
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
}

.faq-item.active .faq-answer {
  display: block;
}




#contacto,
#footer {
  margin: 0;
  padding: 0;
  border: none;
  min-height: 0;
}
.contacto {
  text-align: center;
  padding: 50px 20px;
  background: #fffaf7;
}

.contacto h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Nuevo contenedor de cards */
.contacto-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.card {
  background: #f7f7f7;
  padding: 20px;
  font-family: 'Glacial Indifference', Georgia, serif;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card h3 {
  margin-bottom: 10px;
}

.card a.btn-contacto {
  margin-top: 15px;
  padding: 10px 20px;
  text-decoration: none;
  background: #000;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.card a.btn-contacto:hover {
  background: #d8a7b1;
}

/* Links de email y WhatsApp */
.card p a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.card p a:hover {
  text-decoration: underline;
}


.form-group {
  font-family: 'Glacial Indifference', Georgia, serif;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

/* ===== Botón de contacto ===== */
.btn-contacto {
  background-color: #000;   /* color de fondo */
  color: white;     
       /* color del texto */
  padding: 12px 24px;          /* espacio interno */
  border: none;                /* sin borde */
  border-radius: 8px;          /* bordes redondeados */
  font-size: 1rem;             /* tamaño de texto */
  font-weight: bold;
  cursor: pointer;             /* manito al pasar */
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-contacto:hover {
  background-color: #d8a7b1;   /* color al pasar el mouse */
  transform: scale(1.05);      /* leve aumento */
}

.btn-contacto:active {
  transform: scale(0.95);      /* leve presión al hacer click */
}
label {
  margin-bottom: 5px;
  font-weight: bold;
}

input, select, textarea {
  padding: 8px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  #sobre {
    flex-direction: column;
    padding: 20px;
  }

  #sobre .image-container,
  #sobre .text-container {
    flex: 1 1 100%;
    max-width: 100%;
  }

  #sobre .image-container {
    margin-bottom: 20px;
  }

  .price {
    position: static;
    float: right;
  }
}




footer {
    background-color: #000;
    color: white;
    padding: 10px;
    margin-top: 0px;
    font-size: 0.9rem;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
