/* CSS Variables */
:root {
  --primary-font: 'Montserrat', sans-serif;
  --script-font: 'Pinyon Script', cursive;
  --text-color: #333333;
  --light-text: #ffffff;
  --overlay-color: rgba(0, 0, 0, 0.4);
  --transition-speed: 0.3s;
  --background-color: #ffffff;
  --accent-color: #f0f0f0;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: var(--primary-font);
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navegación */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: var(--background-color);
  z-index: 100;
  transition: all 0.3s ease;
}

.logo a {
  font-family: var(--script-font);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--text-color);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 0.7;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 100;
}

.menu-icon {
  position: relative;
  width: 30px;
  height: 2px;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}

.menu-icon::before {
  transform: translateY(-8px);
}

.menu-icon::after {
  transform: translateY(8px);
}

/* Contenido principal */
.personal-content {
  padding: 120px 40px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Secciones de estaciones */
.season-section {
  margin-bottom: 100px;
}

.season-title {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.season-title a {
  color: var(--text-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.season-title a:hover {
  opacity: 0.7;
}

.season-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: var(--text-color);
}

.season-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Contenedor de imagen única por estación */
.season-image-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 70vh;
  overflow: hidden;
  pointer-events: none;
}

.season-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.season-link:hover .season-image {
  opacity: 0.9;
}

/* Eliminar cualquier estilo de cursor pointer no deseado */
.season-image-container *,
.season-image {
  cursor: default;
}

.season-link {
  cursor: pointer;
}

/* Footer */
.footer {
  background-color: #111;
  color: #666;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
  margin-top: 0;
}

/* Lightbox para vista de imagen completa */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.lightbox-close:hover {
  opacity: 0.7;
}

/* Media Queries */
@media (max-width: 900px) {
  .main-nav {
    padding: 15px 20px;
  }
  
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    overflow: hidden;
    transition: height 0.5s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }
  
  .nav-links.active {
    height: calc(100vh - 70px);
    padding: 30px 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .nav-links a {
    font-size: 1.0rem;
  }
  
  .personal-content {
    padding: 100px 20px 40px;
  }
  
  .season-section {
    margin-bottom: 60px;
  }
  
  .season-image-container {
    height: 50vh;
  }
}

@media (max-width: 480px) {
  .logo a {
    font-size: 1.5rem;
  }
  
  .season-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .season-section {
    margin-bottom: 40px;
  }
  
  .season-image-container {
    height: 40vh;
  }
} 