/* ========== 1. CSS RESET ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ========== 2. CSS VARIABLES ========== */
:root {
  --color-primary: #d89210;
  --section-content: #e0085e;
  --color-secondary: #ffffff;
  --color-grafito: #1a1a1a;
  --color-grey: #707070;
  --color-grey-light: #dedddd;
  --color-border: #e0e0e0;
  --color-hover: #f5f5f5;
  --color-footer: #3f455f;


  --font-heading: Helvetica, Arial, sans-serif;
  --font-body: "Open Sans", sans-serif;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  --radius-xs: 0.25rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;

  --padding-xs: 1rem;
  --padding-md: 1.5rem;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}
/*
.hero-video {
  filter: var(--hero-filter);
}*/

/* ========== 3. BASE STYLES ========== */
body {
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--color-grafito);
  line-height: 1.6;
  letter-spacing: 0.3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.5px;

}

h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  
}

h2 {
  margin-bottom: var(--spacing-md);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;

}

p {
  margin-bottom: var(--spacing-sm);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

/* ========== LINKS DE TEXTO ESPECIALES ========== */
.text-link {
  color: var(--color-primary) !important;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.text-link:hover {
  color: var(--color-accent) !important;
  text-decoration: underline;
  transform: translateX(2px);
}
/* =============== blockquote  =============== */
blockquote {
  border-left: 4px solid var(--section-content);
  padding-left: 2rem;
  margin: 2rem 0; /* limpio, sin conflictos */
  color: var(--color-grafito);
}
/* ========== 4. NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--spacing-xs);
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
  display: flex;
  gap: var(--spacing-md);
}

.nav-menu a {
  position: relative;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  transition: color 0.3s ease;
}

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

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

@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--color-secondary);
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-lg) 0;
    gap: var(--spacing-md);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .nav-menu.active {
    transform: translateX(0);
  }
}

/* ========== 5. HERO SECTION ========== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--spacing-md);
  text-align: center;
  color: var(--color-secondary);
}

.hero-content h1 {
  margin-bottom: var(--spacing-sm);
  font-weight: 900;
}

.hero-content p {
  margin-top: 0.5rem;
  color: var(--color-secondary);
  font-size: clamp(1.125rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.5s;
  animation-timing-function: ease-out;
}
#portfolioPreview {
  color: var(--section-content);
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-lg) var(--spacing-md) ;
}

.portfolio-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  max-width: calc(170px * 8); /* máximo 5 columnas */
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  margin: 0 auto;

}

.portfolio-preview-grid a {
  position: relative;
  overflow: hidden;
  display: block;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.portfolio-preview-grid a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-preview-grid a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.portfolio-preview-grid a:hover img {
  transform: scale(1);
}

.portfolio-preview-grid a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  transition: left 0.4s ease;
  z-index: 1;
}

.portfolio-preview-grid a:hover::before {
  left: 0;
}
/*======== LIGHTBOX =========*/
/* LIGHTBOX BACKDROP */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.lightbox.active {
  display: flex;
}

/* LIGHTBOX CONTENT */
.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* LIGHTBOX IMAGE */
.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* LIGHTBOX TITLE */
.lightbox-title {
  color: #fff;
  margin-top: 0.5rem;
  text-align: center;
  z-index: 2002;
}

/* BOTÓN DE CIERRE */
.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
  color: #fff;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  z-index: 2003;
  transition: background 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(0,0,0,0.8);
}

/* FLECHAS */
.lightbox-arrow {
  position: fixed; /* clave: siempre en la pantalla */
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  line-height: 25px;
  margin: o auto;
  color: #fff;
  background: rgba(0,0,0,0.3);
  border: none;
  padding-top: 1rem;
   padding-left: 1.2rem;
  width: 60px;      /* ancho fijo */
  height: 60px;     /* alto fijo */
  display: flex;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2001;
  transition: background 0.3s ease;
}

.lightbox-arrow:hover {
  background: rgba(0,0,0,0.6);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}
/* ========== 6. HERO ANIMATION & CTA ========== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-btn {
  display: inline-block;
  margin-top: var(--spacing-md);
  padding: var(--spacing-sm) var(--spacing-md);
  z-index: 2;
  color: var(--color-secondary);
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
}
/* ========== 7. SECTIONS GENERALES ========== */
section {
  width: 100%;
  padding: var(--spacing-lg) var(--spacing-md);
}

.section-content {
  max-width: 1400px;
  margin: 0 auto;
}
.section-content h2{
  color:var(--section-content);
}
.section-content-om {
  max-width: 900px;
  margin: 0 auto;
}
/* ========== ACERCA-HOME COMPACTA ========== */
#acerca-home {
  background: var(--color-hover);
}

.section-content-home {
  max-width: 800px;
  margin: 0 auto;
  border: var(--color-grey-light) solid .5rem;
  padding: var(--spacing-sm);
  background-color: var(--color-secondary);
}
.section-content-home h2 {
  color: var(--section-content);
}


/* ========== ACERCA-HOME MOBILE-FIRST ========== */
#acerca-home .content-with-image {
  display: flex;
  flex-direction: column; /* móvil: imagen arriba, texto abajo */
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

#acerca-home .content-with-image img {
  width: 80%;      /* más grande en móvil */
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: var(--spacing-md);
}

#acerca-home .text-content {
  width: 90%;
  text-align: left;
  flex: none;
}
@media (min-width: 768px) {
  .section-content-home {
    padding: var(--spacing-lg);  /* padding original en desktop */
  }
}

/* ========== DESKTOP: mejora para pantallas grandes ========== */
@media (min-width: 769px) {
  #acerca-home .content-with-image {
    flex-direction: row; /* imagen a un lado, texto al otro */
    align-items: center;
  }

  #acerca-home .content-with-image img {
    width: 100%;       /* tamaño escritorio */
    max-width: 300px;
    margin-bottom: 0;
  }

  #acerca-home .text-content {
    width: auto;
    text-align: left;
    flex: 2;
  }
}
/* ========== 8. CONTENT WITH IMAGE ========== */
.content-with-image {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.content-with-image img {
  width: 40%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}

.content-with-image.image-left img {
  order: 1;
}

.content-with-image.image-left .text-content {
  order: 2;
}

.content-with-image.image-right img {
  order: 2;
}

.content-with-image.image-right .text-content {
  order: 1;
}

.text-content {
  flex: 1;
}

.konstnar {
  display: block;
  width: 80%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.subtitle-tagline {
  margin-bottom: var(--spacing-md);
  color: var(--color-grey);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 900;
}

.highlighted-box {
  margin-top: var(--spacing-md);
  padding: var(--spacing-sm);
  background: rgba(0, 0, 0, 0.03);
  border-left: 3px solid var(--color-primary);
}

@media (max-width: 768px) {
  .content-with-image {
    flex-direction: column;
  }

  .content-with-image img {
    width: 100%;
  }

  .content-with-image.image-left img,
  .content-with-image.image-right img {
    order: 1;
  }

  .content-with-image.image-left .text-content,
  .content-with-image.image-right .text-content {
    order: 2;
  }
}

/* ========== 9. ABOUT SECTION ========== */
#acerca {
  background: var(--color-hover);
}

.video-container {
  position: relative;
  width: 45%;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 2px;
}

.about-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

#instagram-videos {
  background: var(--color-hover);
}

.instagram-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  justify-items: center;
  margin-top: var(--spacing-lg);
}

@media (min-width: 768px) {
  .instagram-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 1200px) {
  .instagram-grid {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1400px;
  }
}
.instagram-item {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 400px;
}

.instagram-item iframe {
  width: 100%;
  max-width: 400px;
}

@media (max-width: 768px) {
  .video-container {
    width: 100%;
    margin-bottom: var(--spacing-md);
  }
}

/* ========== 10. GALLERY ========== */
.gallery {
  display: grid;
  /*grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
  grid-template-columns: repeat(auto-fit, minmax(max(300px, 100% / 6), 1fr));
  gap: 2px;
  width: 100%;
  padding: 0;
}

.gallery-item {
  display: flex;
  position: relative;
  align-items: center;   /* CENTRA VERTICALMENTE */
  justify-content: center; /* CENTRA HORIZONTALMENTE (opcional pero recomendado) */
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-overlay h3 {
  color: var(--color-secondary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  text-align: center;
  margin-bottom: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.overlay-content {
  width: 100%;
  padding: var(--spacing-sm);
  text-align: center;
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay h3 {
  transform: translateY(0);
}

.sold-label {
  display: block;
  color: #ff8644;
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  margin-top: 8px;
  text-align: center;
  text-transform: none;
  letter-spacing: 1px;
}

@media (hover: none), (max-width: 768px) {
  .gallery-overlay {
    top: auto;
    bottom: 0;
    height: auto;
    min-height: 34%;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18));
    opacity: 1;
  }

  .gallery-overlay h3 {
    font-size: 0.95rem;
    line-height: 1.35;
    transform: none;
  }

  .gallery-item:hover img {
    transform: none;
  }

  .sold-label {
    margin-top: 4px;
    font-size: 0.9rem;
  }
}

.filter-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}

.filter-btn {
  padding: var(--spacing-xs) var(--spacing-md);
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-grafito);
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.filter-btn.active {
  background: var(--color-primary);
  color: var(--color-secondary);
  border-color: var(--color-primary);
}

/* ========== 11. LIGHTBOX ========== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  color: var(--color-secondary);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2001;
}

.lightbox-close:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  transform: rotate(90deg);
}

.lightbox-title {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-secondary);
  background: rgba(0, 0, 0, 0.7);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

/* ========== 12. PRACTICE CARDS ========== */
.practice-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.practice-card {
  position: relative;
  overflow: hidden;
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  transition: all 0.4s ease;
}

.practice-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  transition: left 0.4s ease;
  z-index: 1;
}

.practice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.practice-card:hover::before {
  left: 0;
}

.practice-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.practice-card:hover .practice-card-image {
  transform: scale(1.05);
}

.practice-card-content {
  padding: var(--spacing-md);
}

.practice-card h3 {
  margin-bottom: var(--spacing-sm);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.practice-card p {
  color: var(--color-grafito-light);
  line-height: 1.7;
}
/* ========== 13. TIMELINE ========== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-md) 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  padding-left: 100px;
  margin-bottom: var(--spacing-lg);
}

.timeline-dot {
  position: absolute;
  left: 42px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-secondary);
}

.timeline-content h3 {
  margin-bottom: var(--spacing-xs);
}

.timeline-date {
color: var(--color-grafito-light);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  margin-bottom: var(--spacing-xs);
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
  
  .timeline-dot {
    left: 12px;
  }
}

/* ========== 14. CONTACT FORM ========== */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-sm);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  font-family: var(--font-body);
  transition: border-color 0.3s ease;
}

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

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

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.submit-btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  background: var(--color-primary);
  color: var(--color-secondary);
  border-radius: var(--radius-md);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  transition: background 0.3s ease;
}

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

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-message {
  margin-top: var(--spacing-sm);
  padding: var(--spacing-sm);
  border-radius: 2px;
  display: none;
}

.form-message.success {
  display: block;
  background: #d4edda;
  color: #155724;
}

.form-message.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
}

/* ========== 15. FOOTER ========== */
footer {
  background: var(--color-footer);
  color: var(--color-secondary);
  text-align: center;
  padding: var(--spacing-lg);
}

footer a {
  color: var(--color-secondary);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}


.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-top: var(--spacing-sm);
}

.social-icons .social-icon {
  width: 30px;
  height: 30px;
}
/* ========== 16. SUCCESS MODAL ========== */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

.success-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.success-content h3 {
  color: #2e7d32;
  margin-bottom: 1rem;
}

.close-btn {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

/* ========== 17. HERO ANIMATION ========== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
