@charset "UTF-8";
/*
CSS: 

selector/etiqueta {
    propiedad: valor;

    background-vid: url("images/fondoinicio.jpg");


    }
*/
/* Color */
:root {
  --orange: #E58C3A;
  --dark-orange: #B8521A;
  --brown: #5E2C04;
  --light-brown: #8A4B1F;
  --cream: #F0E6D2;
  --dark: #3A2A1F;
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
/* Estilos Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--dark);
  background-color: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

/* Nav */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background-color: rgba(58, 42, 31, 0.9);
  animation: fadeIn 1s ease-out;
}

.logo {
  color: var(--cream);
  font-size: 1.8rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--orange);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

---- .nav-links2 {
  display: flex;
  list-style-position: none;
}

.nav-links2 li {
  margin-left: 4rem;
}

.nav-links2 a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  position: sticky;
  padding-bottom: 1px;
}

.nav-links2 a::after {
  content: "";
  position: absolute;
  bottom: 1;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--orange);
  transition: width 0.3s ease;
}

.nav-links2 a:hover::after {
  width: 100%;
}

.box {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: rgba(94, 44, 4, 0.8);
}

.box-content {
  z-index: 2;
  animation: slideUp 1.5s ease-out;
}

.box-title {
  font-size: 4.5rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.box-title span {
  color: var(--orange);
}

.box-subtitle {
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.botonexplorarcoleccion {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--orange);
  color: var(--cream);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.botonexplorarcoleccion:hover {
  background-color: var(--dark-orange);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Galería */
.gallery-section {
  padding: 8rem 5%;
  background-color: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  animation: fadeIn 1s ease-out;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--brown);
}

.section-header h2 span {
  color: var(--orange);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--light-brown);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  animation: slideUp 1s ease-out forwards;
}

.gallery-item:nth-child(1) {
  animation-delay: 0.2s;
}

.gallery-item:nth-child(2) {
  animation-delay: 0.4s;
}

.gallery-item:nth-child(3) {
  animation-delay: 0.6s;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.item-image {
  height: 300px;
  overflow: hidden;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.gallery-item:hover .item-image img {
  transform: scale(1.1);
}

.item-info {
  padding: 2rem;
}

.item-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--brown);
}

.item-info p {
  color: var(--light-brown);
}

/* Sobre Mí */
.sobremi-section {
  padding: 8rem 5%;
  background: url("images/fondoinicio.jpg") fixed center/cover;
  position: relative;
}

.sobremi-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(94, 44, 4, 0.8);
}

.sobremi-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--cream);
  animation: slideUp 1s ease-out;
}

.sobremi-content h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.sobremi-content h2 span {
  color: var(--orange);
}

.sobremi-content p {
  font-size: 1.2rem;
  line-height: 1.8;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--cream);
  text-align: center;
  padding: 3rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 5%;
  }
  .box-title {
    font-size: 2.8rem;
  }
  .box-subtitle {
    font-size: 1.2rem;
  }
  .nav-links {
    display: none; /* JS */
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .box-title {
    font-size: 2.2rem;
  }
  .section-header h2 {
    font-size: 2.2rem;
  }
  .sobremi-content h2 {
    font-size: 2.2rem;
  }
  .contacto-section h2 {
    font-size: 2.2rem;
  }
}
/* Contacto */
.contacto-section {
  padding: 8rem 5%;
  background-color: var(--brown);
  color: var(--cream);
}

.contacto-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: var(--cream);
}

.contacto-form {
  max-width: 600px;
  margin: 0 auto;
  animation: slideUp 1s ease-out;
}

.contacto-form input,
.contacto-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--cream);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.contacto-form input::placeholder,
.contacto-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contacto-form input:focus,
.contacto-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.2);
}

.contacto-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contacto-form button {
  padding: 1rem 2.5rem;
  background-color: var(--orange);
  color: var(--cream);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contacto-form button:hover {
  background-color: var(--dark-orange);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-media {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px 0 0 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.social-icon {
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s, background-color 0.3s;
}

.facebook {
  background-color: #1877F2;
}

.instagram {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.twitter {
  background-color: #000000;
}

.social-icon:hover {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .social-media {
    flex-direction: row;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
  }
}

/*# sourceMappingURL=style.css.map */
