/* ===== IMPORTS ===== */
@import url("https://fonts.googleapis.com/css2?family=Questrial:wght@400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant:wght@300&display=swap");

/* ===== VARIABLES ===== */
:root {
  --color-light-gray: #ccd3d3;
  --color-off-white: #faf9f7;
  --color-warm-beige: #e4dbd2;
  --color-dark-text: #3c4142;
  --color-medium-text: #4f5557;
  --text-dark: #171717;
  --text-light: #4f5557;
  --extra-light: #a3a3a3;
  --white: #ffffff;
  --bg-light-warm: #faf9f7;
  --bg-medium-sage: #d6dbd3;
  --bg-warm-taupe: #e4dbd2;
  --bg-pale-gray: #e0e7e7;
  --text-primary: #3c4142;
  --text-secondary: #4f5557;
  --accent-color: #a1887f;
  --max-width: 1300px;
  --header-font: "Merriweather", serif;
  --primary-font: "Cormorant Garamond", serif;
  --text-color: white;
  --gradient-overlay: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

/* ===== GENERAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color-off-white);
  font-family: "Arial", sans-serif;
  color: var(--color-dark-text);
}

/* ===== HEADER & NAVIGATION ===== */

header {
  max-width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid var(--color-light-gray);
  background-color: white;
}

.navbar {
  background-color: var(--color-light-gray);
  padding: 1rem 0;
}

.navbar-nav {
  gap: 2.5rem;
}

.nav-link {
  font-family: "Questrial";
  color: rgba(53, 49, 45, 1);
  text-transform: uppercase;
  font-size: 0.85rem;
  line-height: 1.7;
  letter-spacing: 0.25em;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  position: relative;
  font-style: normal;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: var(--color-dark-text);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link.active {
  color: var(--color-medium-text) !important;
}

#nav {
  background-color: #f3f2ee;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-light-gray);
}

#nav .row {
  align-items: center;
}

/* Dropdown Styles */
.dropdown-toggle {
  font-family: "Questrial";
  color: rgba(53, 49, 45, 1);
  text-transform: uppercase;
  font-size: 0.85rem;
  line-height: 1.7;
  letter-spacing: 0.25em;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.dropdown-toggle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: var(--color-dark-text);
  transition: width 0.3s ease;
}

.dropdown-toggle:hover::after {
  width: 80%;
}

.dropdown-menu {
  background-color: white;
  border: 1px solid var(--color-light-gray);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: "Questrial";
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.dropdown-item {
  color: rgba(53, 49, 45, 1);
  font-size: 0.8rem;
  transition: background-color 0.3s ease;
}

.dropdown-item:hover {
  background-color: var(--color-light-gray);
}

.header-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-dark-text);
  margin-bottom: 0.5rem;
}

.header-subtitle {
  font-family: "Questrial", sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--color-medium-text);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.header-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.header-link:hover {
  color: inherit;
  text-decoration: none;
}

/* Social Icons */
.social-icon i {
  font-size: 1.5rem;
  color: var(--color-dark-text);
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 50%;
}

.social-icon i:hover {
  background-color: var(--color-light-gray);
  transform: translateY(-2px);
}

/* Book Session Button */
.book-session .session-link {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  background-color: var(--color-warm-beige);
  color: var(--color-dark-text);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 6px;
  font-weight: 500;
}

.book-session .session-link:hover {
  background-color: #dcd1c7;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.session-link span i {
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}

.session-link:hover span i {
  transform: translateX(5px);
}

/* ===== CAROUSEL SECTION ===== */
.carousel {
  max-width: 95.5%;
  margin: 0 auto;
  position: relative;
}

.carousel-item {
  height: 80vh;
  position: relative;
}

.carousel-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.img-carousel {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.carousel-item.active .img-carousel {
  transform: scale(1.02);
  opacity: 0.9;
}

.carousel-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  opacity: 0.6;
  z-index: 1;
}

.carousel-text {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
  color: var(--text-color);
  z-index: 2;
}

.carousel-text-content {
  font-family: var(--primary-font);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.cta-button {
  font-family: var(--primary-font);
  font-weight: 300;
  font-style: italic;
  display: inline-block;
  color: var(--text-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--text-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  outline: none;
  position: relative;
  overflow: hidden;
  bottom: 5% !important;
  left: 50%;
  transform: translateX(-50%) !important;
  padding: 10px 20px;
  border-radius: 5px;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button span {
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-bottom-color: rgba(255, 255, 255, 0.8);
}

.cta-button:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.cta-button:hover span {
  transform: translateX(5px);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 2rem;
}

/* ===== ABOUT ME SECTION ===== */
.portfolio-about-me {
  background-color: var(--color-off-white);
  padding: 120px 0;
  transition: background-color 0.3s ease;
}

.portfolio-about-me:hover {
  background-color: rgba(247, 247, 247, 0.98);
}

.container-portfolio-about-me {
  max-width: calc(100% - 116px);
  margin: 0 auto;
  text-align: center;
}

.portfolio-about-me-title {
  font-size: 45px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  color: rgba(53, 49, 45, 1);
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  transition: color 0.3s ease, transform 0.3s ease;
}

.portfolio-about-me-title:hover {
  color: rgba(53, 49, 45, 0.8);
  transform: scale(1.02);
}

.portfolio-about-me-description-text {
  font-family: "Cormorant", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: rgba(53, 49, 45, 1);
  margin-bottom: 46px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  transition: opacity 0.3s ease;
}

.portfolio-about-me-description-text:hover {
  opacity: 0.9;
}

.portfolio-book-session {
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio-session-link {
  background-color: #dcd1c7;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: rgba(53, 49, 45, 1);
  font-family: "Questrial", sans-serif;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.portfolio-session-link:hover {
  background-color: rgba(53, 49, 45, 0.1);
  transform: scale(1.05);
}

.portfolio-icon-link {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.portfolio-session-link:hover .portfolio-icon-link {
  transform: translateX(5px);
}

/* ===== CATEGORIES SECTION ===== */
.container.categorias {
  max-width: calc(100% - 116px);
  margin: 0 auto;
  padding: 60px 0;
}

.row {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.col.categories {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.col.categories:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.col.categories img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  margin-bottom: 25px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.col.categories:hover img {
  transform: scale(1.05);
}

.col.categories::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 60%, rgba(212, 218, 218, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.col.categories::before {
  background: linear-gradient(transparent 60%, rgba(204, 211, 211, 0.4));
}

.link-categories {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  text-decoration: none;
  color: #8b7e77;
  font-size: 30px;
  margin-bottom: 20px;
  display: block;
  transition: color 0.3s ease,
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 10;
}

.link-categories:hover {
  color: #665e59;
  transform: translateX(10px);
}

.col.categories p {
  font-family: "Cormorant", serif;
  font-weight: 300;
  font-style: normal;
  color: rgba(53, 49, 45, 1);
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  z-index: 10;
}

.container.categorias .book-session {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container.categorias .session-link {
  text-align: center;
  display: inline-block;
  margin-bottom: 10px;
}

.session-link {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.session-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #8b7e77;
  transition: width 0.3s ease;
}

.session-link:hover::after {
  width: 100%;
}

/* Galería Cinética Principal */
.kinetic-gallery-section {
  background-color: var(--color-off-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.kinetic-container {
  max-width: calc(100% - 116px);
  margin: 0 auto;
  text-align: center;
}

/* Título y descripción */
.kinetic-title {
  font-size: 45px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  color: var(--color-dark-text);
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.3s;
}

.kinetic-subtitle {
  font-family: "Cormorant", serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-medium-text);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.6s;
}

/* Grid de momentos */
.moments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.9s;
}

.moment-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.moment-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.moment-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.9);
}

.moment-card:hover .moment-image {
  transform: scale(1.1);
  filter: brightness(1);
}

/* Overlay con texto */
.moment-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.moment-card:hover .moment-overlay {
  transform: translateY(0);
}

.moment-category {
  font-family: "Questrial", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.moment-title {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
}

/* Animaciones especiales para diferentes cards */
.moment-card:nth-child(1) {
  animation: float 6s ease-in-out infinite;
}

.moment-card:nth-child(2) {
  animation: float 6s ease-in-out infinite 1.5s;
}

.moment-card:nth-child(3) {
  animation: float 6s ease-in-out infinite 3s;
}

.moment-card:nth-child(4) {
  animation: float 6s ease-in-out infinite 4.5s;
}

/* Filosofía section */
.philosophy-section {
  text-align: center;
  margin-top: 60px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.2s;
}

.philosophy-quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 20px;
  position: relative;
}

.philosophy-quote::before,
.philosophy-quote::after {
  content: '"';
  font-size: 40px;
  color: var(--color-light-gray);
  position: absolute;
}

.philosophy-quote::before {
  left: -30px;
  top: -10px;
}

.philosophy-quote::after {
  right: -30px;
  bottom: -20px;
}

.philosophy-author {
  font-family: "Questrial", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-medium-text);
}

/* Call to action */
.kinetic-cta {
  margin-top: 50px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.5s;
}

.kinetic-session-link {
  background-color: var(--color-warm-beige);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-dark-text);
  font-family: "Questrial", sans-serif;
  font-size: 18px;
  padding: 15px 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.kinetic-session-link:hover {
  background-color: #dcd1c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: var(--color-dark-text);
}

.kinetic-session-link i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.kinetic-session-link:hover i {
  transform: translateX(5px);
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .moments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .kinetic-container {
    max-width: calc(100% - 40px);
  }

  .kinetic-title {
    font-size: 32px;
  }

  .moments-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .philosophy-quote {
    font-size: 22px;
  }
}

/* Efectos adicionales */
.moment-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.moment-card:hover::after {
  left: 100%;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-feed {
  padding: 80px 0;
  background-color: #fff;
}

.instagram-header {
  text-align: center;
  margin-bottom: 30px;
}

.instagram-header h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #262626;
}

.instagram-profile {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
}

.instagram-profile:hover {
  color: #262626;
}

.gallery-container {
  padding: 0 60px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  max-width: 100%;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.hover-overlay i {
  color: white;
  font-size: 24px;
}

.gallery-item:hover .hover-overlay {
  opacity: 1;
}

/* Instagram Scrolling Feed */
.instagram_container {
  padding: 80px 0;
  overflow: hidden;
  background-color: #f8f8f8;
  text-align: center;
}

.section_header {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666;
  text-decoration: none;
  margin-bottom: 30px;
  transition: color 0.3s;
}

.instagram-link:hover {
  color: #000;
}

.instagram-link i {
  font-size: 20px;
}

.instagram-flex {
  margin: 0 auto;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: scroll 45s linear infinite;
}

.instagram-item {
  position: relative;
  overflow: hidden;
  display: block;
}

.instagram-item img {
  width: 235px;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram-item:hover img {
  transform: scale(1.05);
}

@keyframes scroll {
  to {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

/* ===== FOOTER ===== */
footer {
  background-color: #f3f2ee;
}

.footer__container {
  background-color: #007bff;
  display: grid;
  gap: 4rem 0;
  align-items: center;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer__container img {
  border-radius: 50%;
  max-width: 180px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials a {
  font-size: 1.5rem;
  color: var(--text-dark);
}

.footer__socials a:hover {
  color: var(--text-light);
}

.footer__links {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer__links a {
  font-family: "Questrial", sans-serif;
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

.footer__links a:hover {
  color: var(--text-light);
}

.footer__col h4 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

.footer__col p {
  font-family: "Questrial", sans-serif;
  color: var(--text-light);
  line-height: 1.75rem;
  text-align: center;
}

.footer__bar {
  padding: 1.5rem;
  font-size: 1.1rem;
  color: var(--extra-light);
  background-color: var(--text-dark);
  text-align: center;
}

.footer__bar a {
  color: #e4dbd2;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.footer__bar a:hover {
  color: #ffffff;
  border-bottom: 2px solid #e4dbd2;
  transform: translateY(-2px);
}

.section__container {
  background-color: transparent;
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
  max-width: 1500px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 30px 20px;
  background-color: transparent;
}

.imagen-portafolio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(./home/bodas.jpg);
  width: 100%;
  height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Cambio aquí */
  margin: 0 auto;
}

.imagen-portafolio-preboda {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(./imagenes/prebodas.jpg);
  width: 100%;
  height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  margin: 0 auto;
}

.img-portafolio-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 1);
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.img-portafolio-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 1);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.portfolio-section .img-portafolio-subtitle2 {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 50px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #555;
  font-size: 23px;
  text-shadow: none;
}

.portfolio-title {
  text-align: center;
  font-family: "Questrial", serif;
  font-size: 13px;
  font-style: normal;
  line-height: 1.7;
  color: #2c3e50;
  font-weight: 400;
  letter-spacing: 0.25px;
  margin-top: 0;
  position: relative;
  text-transform: uppercase;
}

.portfolio-gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
}

.portfolio-gallery-item {
  background-color: #f7f7f7;
  border-radius: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.portfolio-gallery-item.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-gallery-item:hover {
  transform: none;
}

.portfolio-gallery-image {
  height: 400px;
  overflow: hidden;
}

.portfolio-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-gallery-image img:hover {
  transform: scale(1.05);
}

.portfolio-gallery-item a {
  text-decoration: none;
  display: block;
}

.portfolio-gallery-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  color: #333;
  text-align: center;
  padding: 15px;
  font-size: 1.5rem;
  margin: 0;
}

/* ===== GALLERY SECTION ===== */
.wrapper {
  max-width: 90%;
  margin: 0 auto;
}

.galeria-title {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #2c3e50;
  font-weight: 400;
  letter-spacing: 1.5px;
  margin-top: clamp(20px, 3vw, 30px);
  margin-bottom: clamp(30px, 4vw, 40px);
  position: relative;
  text-transform: uppercase;
}

.galeria-title::before,
.galeria-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  height: 2px;
  background-color: var(--extra-light);
}

.galeria-title::before {
  left: 50%;
  width: clamp(60px, 8vw, 100px);
  transform: translateX(-50%);
}

.galeria-title::after {
  left: 50%;
  width: clamp(30px, 4vw, 50px);
  background-color: var(--extra-light);
  transform: translateX(-50%) translateY(10px);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.gallery .image {
  padding: 7px;
  width: calc(33.333% - 10px);
  cursor: pointer;
}

.gallery .image span {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.gallery .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
  transition: all 0.3s ease;
}

.gallery .image:hover img {
  transform: scale(1.1);
}

/* Lightbox styles */
.preview-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  max-width: min(700px, 90vw);
  width: 100%;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  border-radius: 3px;
  padding: clamp(3px, 1vw, 5px);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.preview-box.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s ease;
}

.preview-box .details {
  display: flex;
  align-items: center;
  padding: clamp(8px, 2vw, 12px);
  justify-content: space-between;
}

.preview-box .details .title {
  display: flex;
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 400;
}

.details .title p {
  margin: 0 5px;
}

.details .title p.current-img {
  font-weight: 500;
}

.details .icon {
  color: #007bff;
  font-size: clamp(16px, 3vw, 20px);
  cursor: pointer;
}

.preview-box .image-box {
  display: flex;
  width: 100%;
  position: relative;
}

.image-box .slide {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  height: 50px;
  width: 60px;
  line-height: 50px;
  text-align: center;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.image-box .slide.prev {
  left: 0;
}

.image-box .slide.next {
  right: 0;
}

.image-box img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

.shadow {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: none;
  background: rgba(0, 0, 0, 0.4);
}

.lazy {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.lazy.loaded {
  opacity: 1;
}

/* ===== FORM SECTION ===== */
.imagep-container {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(./imagenes/formulario.jpg);
  width: 100%;
  height: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  margin: 0 auto;
}

.contact-section {
  background-color: #f3f2ee;
  padding: 2rem 0;
}

.form-container {
  max-width: 1000px;
  margin: 2rem auto;
  background-color: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  font-family: "Cormorant Garamond", serif;
  color: rgba(53, 49, 45, 1);
  text-transform: capitalize;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-size: 48px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 1rem;
}

.subtitulo {
  color: rgba(53, 49, 45, 1);
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-size: 28px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.descripcion {
  color: rgba(53, 49, 45, 1);
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-size: 16px;
  text-align: center;
  font-family: "Questrial", sans-serif;
  margin-bottom: 2rem;
}

.form-container p a {
  color: #333;
  text-decoration: underline;
}

form {
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: "Cormorant Garamond", serif;
  color: rgba(53, 49, 45, 0.8);
  font-size: 18px;
}

form input,
form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccd3d3;
  border-radius: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #a0a0a0;
}

form textarea {
  height: 150px;
  resize: vertical;
}

.full-width {
  grid-column: 1 / -1;
}

.submit-btn {
  width: 100%;
  background-color: #ccd3d3;
  color: #333;
  border: none;
  padding: 1rem;
  font-size: 18px;
  font-family: "Cormorant Garamond", serif;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  background-color: #bfc5c5;
  transform: scale(1.02);
}

/* ===== ABOUT ME PROFILE SECTION ===== */
.photographer-about-section {
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photographer-about-container {
  min-height: 60vh;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 5rem;
  padding: 3rem 5rem;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.photographer-about-image-container {
  flex: 1;
  max-width: 500px;
  overflow: hidden;
  border-radius: 1rem;
  display: flex;
  align-items: center;
}

.photographer-about-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.photographer-about-image-container img:hover {
  transform: scale(1.05);
}

.photographer-about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.photographer-about-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.photographer-about-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  color: #a1887f;
  text-transform: uppercase;
}

.photographer-about-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  color: #333;
}

.photographer-about-description {
  font-family: "Questrial", sans-serif;
  font-size: 1.2rem;
  color: #555;
}

.photographer-about-text {
  font-family: "Cormorant", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 2;
  color: #777;
}

.about-me-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 5rem;
}

.detail-item {
  display: flex;
  align-items: center;
  font-family: "Questrial", sans-serif;
  font-size: 0.95rem;
  color: #555;
}

.detail-item i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
  color: #a1887f;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.photographer-about-text-wrapper > * {
  animation: fadeInUp 0.8s ease-out;
}

/* Services Section */
.services-section {
  background-color: var(--color-off-white);
  padding: 5rem 2rem;
  position: relative;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  position: relative;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

.section-header p {
  font-family: "Questrial", sans-serif;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 1.5rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  perspective: 1000px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-item {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  padding: 2.5rem 2rem;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.05);
  transform: rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg))
    scale(1);
  transform-style: preserve-3d;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-item:hover {
  --rotate-x: -8deg;
  --rotate-y: 8deg;
  transform: rotateX(var(--rotate-x)) rotateY(var(--rotate-y)) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-item:hover::before {
  opacity: 1;
}

.service-item i {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  display: block;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-item:hover i {
  transform: translateY(-5px) scale(1.1);
  color: var(--secondary-color);
}

.service-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-item:hover h3 {
  color: var(--accent-color);
}

.service-item p {
  font-family: "Questrial", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
/* Counter Section */
.counter-area {
  background-image: url(./imagenes/perfil-foto\ -\ copia.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 100px 0;
}

.counter-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.counter-item {
  text-align: center;
  color: #333;
}

.single-counter {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-counter:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.counter-contents {
  color: #333;
}

.counter-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #5d5d5d;
}

.counter-heading {
  font-family: "Questrial", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 10px;
  color: #333;
}

.scroll-animation {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animation.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Quote Calculator */
.wedding-cotizador {
  max-width: 800px;
  margin: 0 auto;
}

.wedding-cotizador .cotizador {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(149, 157, 165, 0.15);
}

.wedding-cotizador h2 {
  font-family: "Cormorant Garamond", serif;
  color: #1a1a1a;
  font-size: 2.25em;
  margin-bottom: 35px;
  text-align: center;
  font-weight: 600;
  position: relative;
}

.wedding-cotizador h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 2px;
  background: #d4b08c;
  border-radius: 2px;
}

.wedding-cotizador .form-group {
  margin-bottom: 30px;
  position: relative;
}

.wedding-cotizador label {
  font-family: "Questrial";
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  color: #333;
  font-size: 0.95em;
}

.wedding-cotizador input[type="date"],
.wedding-cotizador select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: #ffffff;
  color: #2c3e50;
}

.wedding-cotizador input:focus,
.wedding-cotizador select:focus {
  outline: none;
  border-color: #d4b08c;
  box-shadow: 0 0 0 3px rgba(212, 176, 140, 0.15);
}

.wedding-cotizador .servicios-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.wedding-cotizador .servicio-item {
  background: #fafafa;
  padding: 16px;
  border-radius: 12px;
  transition: all 0.2s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #edf2f7;
}

.wedding-cotizador .servicio-item:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.wedding-cotizador .servicio-item input[type="checkbox"],
.wedding-cotizador .servicio-item input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #d4b08c;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.wedding-cotizador .servicio-item input[type="checkbox"]:checked,
.wedding-cotizador .servicio-item input[type="radio"]:checked {
  background: #d4b08c;
}

.wedding-cotizador .servicio-item input[type="checkbox"]:checked::after,
.wedding-cotizador .servicio-item input[type="radio"]:checked::after {
  content: "✓";
  position: absolute;
  color: #ffffff;
  font-size: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wedding-cotizador button {
  font-family: "Cormorant Garamond", serif;
  background: #d4b08c;
  color: #ffffff;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  width: 100%;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wedding-cotizador button:hover {
  background: #c19b7c;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 176, 140, 0.25);
}

.wedding-cotizador .resultado {
  font-family: "Questrial", sans-serif;
  margin-top: 32px;
  padding: 32px;
  background: #fafafa;
  border-radius: 12px;
  text-align: center;
  transition: all 0.2s ease;
  border: 1px solid #edf2f7;
  color: #4a5568;
}

.wedding-cotizador .resultado.active {
  animation: fadeIn 0.5s ease-out;
  border-color: #d4b08c;
  background: #ffffff;
}

.wedding-cotizador .precio {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5em;
  color: #333;
  font-weight: 600;
  margin: 15px 0;
}

.wedding-cotizador .desglose {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px dashed #e0e6ed;
  font-size: 0.9em;
  color: #666;
}

.wedding-cotizador .download-btn {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: #333;
  background: #e4dbd2;
  margin-top: 15px;
  display: none;
}

.wedding-cotizador .download-btn:hover {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== VIDEO GALLERY SECTION ===== */
.video-gallery-wrapper {
  max-width: 90%;
  margin: 80px auto;
  background: rgba(255, 255, 255, 0.95);
}

.video-gallery-title {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #2c3e50;
  font-weight: 300;
  letter-spacing: 3px;
  margin-top: clamp(30px, 4vw, 50px);
  margin-bottom: clamp(40px, 5vw, 60px);
  position: relative;
  text-transform: uppercase;
}

.video-gallery-title::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 1px;
  background: #d4b78f;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.video-gallery-title::after {
  content: "♥";
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  color: #d4b78f;
  background: #fff;
  padding: 0 15px;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  padding: 20px;
}

.video-item {
  position: relative;
  background: #fff;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 183, 143, 0.2);
}

.video-item::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid #d4b78f;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}

.video-item:hover::before {
  opacity: 1;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.1);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-item:hover .video-container::after {
  opacity: 1;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.video-info {
  padding: 25px 30px;
  text-align: center;
  border-top: 1px solid rgba(212, 183, 143, 0.2);
}

.video-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: #2c3e50;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.video-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  font-family: "Open Sans", sans-serif;
}

/* ===== ALBUMS SECTION ===== */
.imagen-portafolio-albunes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(./albunes/portada.jpg);
  width: 100%;
  height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  margin: 0 auto;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1200px) {
  .portfolio-about-me-title {
    font-size: 40px;
    max-width: 700px;
  }

  .gallery-container {
    padding: 0 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 1024px) {
  .container-portfolio-about-me {
    max-width: calc(100% - 40px);
  }

  .portfolio-about-me {
    padding: 100px 0;
  }

  .container.categorias {
    max-width: calc(100% - 40px);
    padding: 40px 0;
  }

  .contact .container {
    max-width: calc(100% - 40px);
  }

  .gallery-container {
    padding: 0 30px;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .photographer-about-container {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .photographer-about-image-container {
    max-width: 100%;
    height: auto;
  }

  .photographer-about-title {
    font-size: 2.5rem;
  }

  .photographer-about-description {
    font-size: 1rem;
  }

  .photographer-about-text {
    font-size: 0.95rem;
  }

  .services-section {
    padding: 2rem 1rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .navbar-nav {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 0.8rem;
  }

  .portfolio-gallery-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 768px) {
  /* Header & Navigation */
  #nav .row {
    flex-direction: column;
    gap: 1.5rem;
  }

  #logo {
    width: 80px;
    height: 80px;
  }

  .session-link {
    font-size: 0.8rem;
    padding: 0.8rem 1.5rem;
  }

  .book-session {
    order: 3;
  }

  .social-icon {
    order: 2;
  }

  .navbar {
    background-color: #f3f2ee;
  }

  .social-icon,
  .book-session {
    display: none;
  }

  #nav {
    padding-top: 1rem;
  }

  .header-content {
    margin-top: -1.5rem;
  }

  #nav .row {
    flex-direction: column;
  }

  #nav .col:nth-child(2) {
    order: 1;
  }

  /* Carousel */
  .carousel-item {
    height: 70vh;
  }

  .carousel-text {
    top: 65%;
  }

  .cta-button {
    bottom: 15%;
    padding: 8px 15px;
    font-size: 1.5rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    margin: 0 1rem;
  }

  /* About Me */
  .portfolio-about-me {
    padding: 80px 0;
  }

  .portfolio-about-me-title {
    font-size: 32px;
    margin-bottom: 30px;
    max-width: 100%;
  }

  .portfolio-about-me-description-text {
    font-size: 16px;
    margin-bottom: 35px;
    max-width: 100%;
  }

  /* Categories */
  .row {
    flex-direction: column;
    align-items: center;
  }

  .col.categories {
    width: 100%;
    margin-bottom: 40px;
  }

  .col.categories img {
    height: 400px;
  }

  /* Contact */
  .contact-content {
    flex-direction: column;
    gap: 40px;
  }

  .contact-text h1 {
    font-size: 42px;
  }

  .name-fields {
    flex-direction: column;
    gap: 15px;
  }

  /* Instagram */
  .gallery-container {
    padding: 0 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .instagram-feed {
    padding: 60px 0;
  }

  .instagram-header h3 {
    font-size: 20px;
  }

  /* Portfolio Gallery */
  .portfolio-gallery-container {
    grid-template-columns: 3fr;
    gap: 50px;
  }

  .portfolio-gallery-image {
    height: 400px;
  }

  /* Form Container */
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-container {
    padding: 1.5rem;
    margin: 1rem;
  }

  .form-container h2 {
    font-size: 36px;
  }

  .subtitulo {
    font-size: 24px;
  }

  /* About Me Profile */
  .photographer-about-title {
    font-size: 2rem;
  }

  .photographer-about-description {
    font-size: 0.95rem;
  }

  .photographer-about-text {
    font-size: 0.9rem;
  }

  .services-section {
    padding: 1.5rem 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-item {
    padding: 1.5rem;
  }

  .service-item i {
    font-size: 2.5rem;
  }

  .service-item h3 {
    font-size: 1.3rem;
  }

  .service-item p {
    font-size: 0.9rem;
  }

  /* Counter */
  .counter-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .single-counter {
    padding: 20px;
  }

  .counter-number {
    font-size: 2.5rem;
  }

  .counter-heading {
    font-size: 1rem;
  }
}

@media (max-width: 700px) {
  .navbar {
    background-color: #f3f2ee;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 60vh;
  }

  .carousel-text {
    top: 60%;
  }

  .cta-button {
    margin-left: 3%;
    font-size: 1.3rem;
    padding: 6px 12px;
    bottom: 10%;
  }

  .portfolio-about-me {
    padding: 60px 0;
  }

  .portfolio-about-me-title {
    font-size: 28px;
  }

  .gallery-container {
    padding: 0 15px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-gallery-image {
    height: 250px;
  }

  .counter-container {
    grid-template-columns: 1fr;
  }
}

@media (width > 540px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__col:nth-child(1) {
    grid-area: 1/1/2/3;
  }

  .footer__col:nth-child(3) {
    border-left: 2px solid var(--text-dark);
  }
}

@media (width > 768px) {
  .footer__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__col:nth-child(1) {
    grid-area: 1/2/2/3;
    border-left: 2px solid var(--text-dark);
    border-right: 2px solid var(--text-dark);
  }

  .footer__col:nth-child(3) {
    border: none;
  }
}
