.nav-link {
  color: black;
  transition: color 0.3s ease; /* Transición suave para el color */
}

/* Cuando se haga scroll, cambiar el color de los enlaces a negro */


.lookbook-caption {
      display: none;
     
    }
.tabs {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
    }
    .tabs button {
      padding: 10px 20px;
      cursor: pointer;
      border: none;
      background-color: #eee;
      border-radius: 5px;
      transition: background-color 0.3s;
    }
    .tabs button.active {
      background-color: #3498db;
      color: #fff;
    }
    .tab-content {
      display: none;
      animation: fade 0.4s ease-in-out;
    }
    .tab-content.active {
      display: block;
    }
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 15px;
    }
    .gallery img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
    }
    @keyframes fade {
      from { opacity: 0; }
      to { opacity: 1; }
    }
/* Base Styles */
@import url("https://fonts.googleapis.com/css2?family=Gilda+Display&display=swap");

:root {
  --primary: #c0a477;
  --primary-hover: #b09467;
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-gray: #666666;
  --text-light-gray: #999999;
  --bg-light: #ffffff;
  --bg-gray: #f5f5f5;
  --border-light: #e5e5e5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Gilda Display", serif;
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary);
  color: var(--text-light);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Gilda Display", serif;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--primary-hover);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
}

header.scrolled {
  background-color: var(--bg-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 160px;
  height: 48px;
  position: relative;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-desktop a {
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.nav-desktop a:hover {
  color: var(--primary);
}


.mobile-menu-btn {
  
  
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-light);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-top:20px;
}

.mobile-nav a {
  font-size: 1.25rem;
  text-transform: uppercase;
}

.mobile-nav a:hover {
  color: var(--primary);
}

.mobile-nav.hidden {
  display: none;
}

/* Home Hero */
.hero {
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-align: center;
  padding: 0 1.5rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero-content {
  max-width: 600px;
}

.hero-logo {
  width: 240px;
  height: 96px;
  margin: 0 auto 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 0.5rem;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.75rem;
  border-radius: 0.5rem;
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
}

.section-title {
  font-size: 2rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: normal;
}

.section-subtitle {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: normal;
}

.section-text {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.8;
}

.section-gray {
  background-color: var(--bg-gray);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-icon {
  width: 5rem;
  height: 5rem;
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon span {
  color: var(--primary);
  font-size: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: normal;
}

.feature-text {
  color: var(--text-gray);
}

/* Category Carousel */
.category-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.category-btn {
  padding: 0.75rem 1.5rem;
  background-color: var(--bg-gray);
  color: var(--text-gray);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn.active {
  background-color: var(--primary);
  color: var(--text-light);
}

.category-btn:hover:not(.active) {
  background-color: #e5e5e5;
}

.category-title {
  text-align: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
  font-weight: normal;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.category-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0.5rem;
}

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

.category-item:hover img {
  transform: scale(1.05);
}

.category-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.category-caption p {
  color: var(--text-gray);
  font-size: 0.875rem;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--primary);
  background: none;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background-color: var(--primary);
  color: var(--text-light);
}

/* Designs */
.designs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.design-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.design-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  position: relative;
}

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

.design-image:hover img {
  transform: scale(1.05);
}

.design-title {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: normal;
}

.design-text {
  color: var(--text-gray);
  text-align: center;
}

/* Custom Made */
.custom-made {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.custom-made-image {
  height: 500px;
  border-radius: 0.5rem;
  overflow: hidden;
}

.custom-made-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-made-content h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: normal;
}

.custom-made-content p {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* About Page */
.about-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.about-image {
  height: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: normal;
}

.about-content p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about-category {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-category-image {
  height: 200px;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.about-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-category h4 {
  color: var(--primary);
  font-weight: normal;
}

.about-quote {
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 4rem;
}

.about-quote p {
  font-size: 1.25rem;
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 1rem;
}

.about-quote footer {
  color: var(--primary);
}

/* Lookbook */
.lookbook-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.lookbook-tab {
  padding: 0.75rem;
  background-color: var(--bg-gray);
  color: var(--text-gray);
  border: none;
  cursor: pointer;
  text-align: center;
}

.lookbook-tab.active {
  background-color: var(--primary);
  color: var(--text-light);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.lookbook-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
}

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

.lookbook-item:hover img {
  transform: scale(1.05);
}

.lookbook-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.lookbook-caption p {
  color: var(--text-gray);
  font-size: 0.875rem;
}

.lookbook-footer {
  text-align: center;
}

.lookbook-footer p {
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 2rem;
}

.lookbook-footer a {
  color: var(--primary);
  text-decoration: underline;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.modal-content {
  position: relative;
  max-height: 90vh;
  max-width: 90vw;
  overflow: hidden;
  background-color: var(--bg-light);
  border-radius: 0.5rem;
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.modal-image {
  height: 80vh;
  width: 80vw;
  max-width: 1024px;
  position: relative;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal.hidden {
  display: none;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-info h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: normal;
}

.contact-info p {
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-icon {
  color: var(--primary);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.contact-item-content h3 {
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
  font-weight: normal;
}

.contact-item-content p {
  color: var(--text-gray);
  margin-bottom: 0;
}

.contact-form h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: normal;
}

.form-success {
  background-color: #e6f7e6;
  border: 1px solid #c3e6c3;
  color: #2c662d;
  padding: 1rem;
  border-radius: 0.25rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 0.25rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 0;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

.form-submit {
  width: 100%;
  padding: 1.5rem;
  background-color: var(--primary);
  color: var(--text-light);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-family: inherit;
}

.form-submit:hover {
  background-color: var(--primary-hover);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Footer */
.footer {
  background-color: var(--bg-light);
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 160px;
  height: 48px;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-about {
  color: var(--text-gray);
  margin-bottom: 1rem;
  max-width: 20rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--text-light-gray);
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary);
}

.footer-heading {
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: normal;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-gray);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact {
  color: var(--text-gray);
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-light-gray);
  font-size: 0.875rem;
}

/* Media Queries */
@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }

  .features {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-grid.baptism {
    grid-template-columns: repeat(2, 1fr);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
  }

  .designs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .custom-made {
    grid-template-columns: 1fr 1fr;
  }

  .about-section {
    grid-template-columns: 1fr 1fr;
  }

  .about-categories {
    grid-template-columns: repeat(4, 1fr);
  }

  .lookbook-tabs {
    grid-template-columns: repeat(5, 1fr);
  }

  .lookbook-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lookbook-grid.baptism {
    grid-template-columns: repeat(2, 1fr);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
