/* CSS Variables */
:root {
  --primary-font: 'Montserrat', sans-serif;
  --script-font: 'Pinyon Script', cursive;
  --text-color: #ffffff;
  --dark-text: #333333;
  --overlay-color: rgba(0, 0, 0, 0.4);
  --transition-speed: 0.3s;
  --button-hover-bg: #ffffff;
  --button-hover-text: #000000;
  --card-bg: #f8f8f8;
  --accent-color: #000000;
  --section-padding: 80px 0;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: var(--primary-font);
  color: var(--dark-text);
  overflow-x: hidden;
  background-color: #fff;
}

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;
  z-index: 1000;
  transition: background-color 0.3s ease;
  background-color: rgba(0, 0, 0, 0.9);
}

.logo a {
  font-family: var(--script-font);
  font-size: 1.8rem;
  color: var(--text-color);
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-icon {
  position: relative;
  width: 30px;
  height: 2px;
  background-color: var(--text-color);
  display: block;
}

.menu-icon:before,
.menu-icon:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}

.menu-icon:before {
  top: -8px;
}

.menu-icon:after {
  top: 8px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--text-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: opacity 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 0.7;
}

/* Sección de About */
.about-container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 80px;
}

.about-profile,
.about-bio {
  width: 100%;
}

/* Sección de imagen de perfil */
.about-profile {
  margin-bottom: 40px;
  transform: translateY(30px);
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

.profile-image-container {
  width: 100%;
  height: auto;
  max-height: 600px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.5s ease;
}

.profile-image:hover {
  transform: scale(1.02);
}

/* Sección de biografía */
.about-bio {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  transform: translateY(30px);
  opacity: 0;
  transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}

.bio-content {
  display: flex;
  flex-direction: column;
}

.about-name {
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
  color: var(--dark-text);
}

.about-name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
}

.bio-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #666;
}

.quote {
  border-left: 3px solid var(--accent-color);
  padding-left: 20px;
  margin: 40px 0;
  font-style: italic;
}

.quote p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
}

.quote cite {
  font-size: 1rem;
  color: #888;
  font-style: normal;
  font-weight: 600;
}

/* Footer */
.footer {
  background-color: #111;
  color: #666;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
  margin-top: 0;
}

/* Animación de Fade In */
.fade-in {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) !important;
}

/* Media Queries */
@media (max-width: 992px) {
  .about-container {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  
  .profile-image-container {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    padding: 15px 20px;
  }
  
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: height 0.5s ease;
  }
  
  .nav-links.active {
    height: calc(100vh - 70px);
    padding: 30px 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .nav-links a {
    font-size: 1.0rem;
  }
  
  .about-container {
    padding-top: 100px;
  }
  
  .profile-image-container {
    max-height: 400px;
  }
  
  .about-name {
    font-size: 1.8rem;
  }
  
  .bio-text p, .quote p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 90px 15px 60px;
  }
  
  .profile-image-container {
    max-height: 300px;
  }
  
  .about-name {
    font-size: 1.5rem;
  }
  
  .quote {
    margin: 30px 0;
    padding-left: 15px;
  }
} 