/*
Theme Name: Mi Tema Básico
Author: Tu Nombre
Version: 1.0
Description: Un tema básico para WordPress.
*/

.menu {
  background-color: rgb(255, 255, 255);
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 0;
}

.menu img {
  padding: 10px;
  max-width: 150px;
  height: auto;
}

/* ===== Navegación principal ===== */
.menu-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  gap: 100px;
}

.menu-list li a {
  position: relative;
  display: inline-block;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: normal;
  font-size: 1.3rem;
}

.menu-list li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: black;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.menu-list li a:hover {
  font-weight: 700;
}

.menu-list li a:hover::after {
  transform: scaleX(1);
}

a {
  display: flex;
  justify-content: center;
  color: red;
}

/* ===========================
   HOME BANNER
=========================== */
.home-banner {
  width: 100%;
  height: 73vh;
  overflow: hidden;
  position: relative;
}

.home-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-text {
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  text-align: center;
  color: white;
  z-index: 1;
}

.home-text h1 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 400;
  color: white;
  width: 300px;
}

.home-button {
  background-color: white;
  color: black;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
  font-family: 'Josefin Sans', sans-serif;
}

.home-button:hover {
  background-color: black;
  color: white;
}

/* ======================
   GALERÍA
====================== */
.info-full {
  display: flex;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0 15px;
}

.info-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  gap: 15px;
}

/* COLUMNAS */
.left-column {
  display: flex;
  flex-direction: column;
  flex: 1 1 60%;
}

.right-column {
  flex: 1 1 40%;
  display: flex;
}

.full-height {
  flex: 1;
  height: 100%;
}

.text-box {
  flex: 1;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.image-group {
  flex: 2;
  display: flex;
  gap: 15px;
}

.image-group .info-item {
  flex: 1;
  height: auto;
  max-height: 56vh;
}

.info-item {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.info-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(85%);
  transition: filter 0.3s ease;
}

.info-item h3 {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  color: white;
  text-align: center;
  font-weight: normal;
  opacity: 0;
  transform: translateY(0%) scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease, font-size 0.4s ease;
  pointer-events: none;
}

.info-item:hover img {
  filter: brightness(60%);
}

.info-item:hover h3 {
  opacity: 1;
  transform: translateY(-100%) scale(1.1);
  font-size: 1.2rem;
}

/* =======================
   SERVICES BANNER
======================= */
.services-banner {
  background-color: #999999;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 100px;
  width: 100%;
  box-sizing: border-box;
}

.services-title {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
}

.services-title .light {
  font-weight: 300;
}

.circle-button {
  background: transparent;
  border: 2px solid white;
  color: white;
  border-radius: 50%;
  padding: 12px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    box-shadow 0.4s ease,
    transform 0.4s ease,
    background-color 0.4s ease;
}

.circle-button:hover {
  background: white;
  color: #999;
  box-shadow: 0 0 20px 5px rgba(228, 227, 226, 0.7);
  transform: scale(1.02);
}

.enlace {
  text-decoration: none;
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    box-shadow 0.4s ease,
    transform 0.4s ease,
    background-color 0.4s ease;
}

.enlace:hover {
  color: black;
  text-decoration: none;
}

/* =======================
   FOOTER
======================= */
.footer {
  color: #444;
  padding: 40px 100px;
  font-family: 'Josefin Sans', sans-serif;
  border-top: 1px solid #eee;
  box-sizing: border-box;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  text-decoration: none;
  margin-right: 10px;
  color: #999;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #000;
}


@media (max-width: 768px) {
  body {
    background-color: yellow !important;
  }
}
