/* ==========================================================================
   1. RESET & VARIABLES
   ========================================================================== */

:root {
  --black: #1f201f;
  --white: #ffffff;
  --red: #e73838;
  --grey-bg: #f4f0ee;
  --font-main: "Inter", sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html,
body {
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 18px;
  font-family: var(--font-main);
  color: var(--black);
  line-height: 1.5;
  background-color: var(--white);
}

main {
  flex: 1;
}

/* ==========================================================================
   2. NAVIGATION MENU
   ========================================================================== */

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 40px;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1000;
  border-bottom: 1px solid var(--black);
}

.logo img {
  width: 60px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--black);
  margin-left: 40px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-links a:hover {
  color: var(--red);
}

.nav-menu a.active,
.nav-links a.active {
  color: var(--red) !important;
}

.nav-links a.active {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
}

.dropdown {
  position: static; 
}

.dropbtn {
  background: none;
  border: none;
  color: var(--black);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-left: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; 
  left: auto;
  right: 0px;
  min-width: 450px; 
  
  background-color: var(--white);
  border-bottom: 1px solid var(--black);
  border-left: 1px solid var(--black);
  margin-top: 0px; 
  
  white-space: nowrap;
  z-index: 1100;

  display: none;
  gap: 25px;
  padding: 15px 25px;
}

.dropdown-content.show {
  display: flex;
  justify-content: flex-start; 
}

.dropdown-content a {
  margin-left: 0 !important;
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-decoration: none;
  color: var(--black);
}

.arrow {
  width: 0; 
  height: 0; 
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--black);
  transition: transform 0.3s ease;
}

.dropdown.active .arrow {
  transform: rotate(180deg);
}

/* Coming Soon */
.coming-soon {
  pointer-events: none; 
  opacity: 0.4;
  cursor: default; 
  position: relative;
}

.coming-soon:hover::after {
  content: "COMING SOON";
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.1em;
}

/* ==========================================================================
   3. HERO SECTION (Parallax Effect)
   ========================================================================== */

.hero,
.event-hero {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: calc(100vh - 50px);
  overflow: hidden;
  z-index: 1;
}

.hero img,
.event-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- OVERLAYING CONTENT --- */

.intro-grid,
.event-intro {
  margin-top: calc(100vh - 50px);
  position: relative;
  z-index: 5;
  background-color: var(--white);
  box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.1);
}

.events-diagram,
.sponsors-section,
.gallery-grid,
.designer-track,
.photo-grid,
.scroller,
.carousel-section,
.event-designers-carousel-section,
.event-intro-section,
.event-editorial-gallery
 {position: relative;
  z-index: 5;
  background-color: var(--white);
}

/* ==========================================================================
   4. HOME SECTIONS STYLING
   ========================================================================== */

/* --- INTRO GRID --- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: start;
  padding: 120px 64px;
}

.intro-number img {
  width: 100%;
  max-width: 180px;
  justify-self: end;
}

.intro-description {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
}

/* Events Diagram */
.events-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 100px 64px;
}

.event-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px;
}

.event-box h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.event-box h3 span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #888;
}

.event-box p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.event-box.right {
  text-align: right;
  align-items: flex-end;
}

.diagram-svg img {
  width: 100%;
  max-width: 650px;
  height: auto;
}

.live-link {
  display: inline-block;
  color: var(--red);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: var(--transition);
  margin-top: auto;
}

/* --- SPONSORS SECTION --- */
.sponsors-section {
  padding: 120px 64px 0px 64px;
  text-align: center;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sponsor-pill {
  background-color: transparent;
  padding: 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.sponsor-pill img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: 0.6;
  margin: 0 auto;
  transition: var(--transition);
}

/* ==========================================================================
   5. EVENT PAGES
   ========================================================================== */
.photo-grid {
  padding: 20px;
}

.gallery-grid {
  z-index: 5;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
  align-items: stretch;
  row-gap: 20px;
}

.column {
  flex: 33%;
  max-width: 33%;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.column img {
  vertical-align: middle;
  width: 100%;
  object-fit: cover;
}

.column img:last-child {
  flex-grow: 1;
}

/* --- carousel --- */

.carousel-section {
  background-color: var(--white);
  width: 100%;
  padding: 150px 0 0 0;
  position: relative;
  z-index: 10;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto;
  background-color: var(--white);
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 4rem;
  font-weight: 200;
  cursor: pointer;
  color: var(--white);
  padding: 20px 20px;
  margin: 0 20px;
  z-index: 100;
  line-height: 1;
}

.nav-arrow.prev {
  left: 0;
}

.nav-arrow.next {
  right: 0;
}

.scroller {
  flex: 1;
  overflow: hidden;
  padding: 80px 0;
}

.scroller__inner {
  display: flex;
  gap: 20px;
  width: max-content;
  align-items: flex-end;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.designer-card {
  width: 220px;
  flex-shrink: 0;
  transition: transform 0.7s ease, opacity 0.7s ease;
  opacity: 1;
}

.designer-card a {
  text-decoration: none;
  display: flex;
  flex-direction: column-reverse;
  color: var(--black);
}

.designer-card h3 {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 13px;
  margin-top: 10px;
  text-align: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}

/* Immagine della card */
.designer-card img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.designer-card.is-center {
  opacity: 1;
  transform: scale(1.45);
  z-index: 50;
}

.designer-card.is-center h3 {
  opacity: 1;
}

.designer-card.is-center img:hover {
  transform: scale(1.04);
  cursor: pointer;
}

.designer-card:not(.is-center) {
  pointer-events: none;
}

.designer-card.is-center {
  pointer-events: auto;
}



/* ==========================================================================
   5. ARCHIVE PAGE
   ========================================================================== */

.archive-container {
  padding: 60px 40px;
  max-width: 100%;
}

/* Filters */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--black);
}

.filter-buttons {
  display: flex;
  gap: 12px;
}

.filter-btn {
  background-color: #e0e0e0;
  color: var(--black);
  border: none;
  padding: 8px 24px;
  border-radius: 25px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.filter-btn.active {
  background-color: var(--red);
  color: var(--white);
}

/* Search Container */
.search-container {
  position: relative;
  width: 250px;
}

#designer-search {
  width: 100%;
  padding: 8px 15px 8px 35px;
  border: 1px solid var(--black);
  border-radius: 20px;
  font-family: var(--font-main);
  font-size: 14px;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.sub-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
  padding: 10px 0;
}

.sub-filter-bar.hidden {
  display: none;
}

.sub-btn {
  background: none;
  border: none;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--black);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.sub-btn.active {
  color: var(--red);
  border-bottom: 2px solid var(--red);
}

/* Designer Grid */
.designer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  row-gap: 50px;
}

.designer-item {
  text-decoration: none;
  color: var(--black);
  transition: var(--transition);
}

.designer-image-link {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: #d9d9d9;
  margin-bottom: 15px;
  overflow: hidden;
}

.designer-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.designer-item:hover .designer-image-link img {
  transform: scale(1.05);
}

.designer-name-link {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
  text-decoration: none;
}

.designer-item:hover .designer-name-link {
  color: var(--red);
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px;
  font-size: 18px;
  color: #888;
}

/* ==========================================================================
   6. SINGLE DESIGNER - DYNAMIC LAYOUT
   ========================================================================== */

.designer-single-container {
  display: flex;
  padding: 0 40px;
  gap: 20px;
  margin-top: 40px;
  align-items: flex-start; /* Required for sticky */
}

/* --- MEDIA COLUMN (LEFT) --- */
.media-column {
  width: 60%;
  position: relative;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 40px;
}

.photo-container img {
  width: 100%;
  display: block;
  height: auto;
}

.label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  text-transform: uppercase;
}

/* VIDEO SECTION */
.video-full-bleed-bottom {
  width: 100%;
  margin-top: 60px;
  background-color: #000;
}

.video-crop-top {
  width: 100%;
  height: 90vh;
  position: relative;
  overflow: hidden;
}

.video-crop-top iframe {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translateX(-50%);
  border: none;
}

.video-label-footer {
  padding: 20px 40px;
  background-color: var(--white);
}

.video-label-footer .label {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
}

/* --- INFO COLUMN (RIGHT) --- */
.info-column {
  width: 40%;
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.info-column::-webkit-scrollbar {
  display: none;
}

/* Scrollbar customization for info-column */
.info-column::-webkit-scrollbar {
  width: 4px;
}
.info-column::-webkit-scrollbar-track {
  background: transparent;
}
.info-column::-webkit-scrollbar-thumb {
  background: var(--black);
  border-radius: 10px;
}

.designer-name {
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.project-title {
  font-family: var(--font-main);
  font-size: 40px;
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 40px;
}

.description-content blockquote {
  display: block;
  padding-left: 5px;
  margin: 1em 0;
  font-style: italic;
  border: none;
}

/* --- "READ MORE" LOGIC --- */
.description-wrapper {
  margin-bottom: 60px;
}

.description-content {
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  max-height: 300px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: pre-line;
}

/* Text fade when not expanded */
.description-content:not(.expanded)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(transparent, var(--white));
}

.description-content.expanded {
  max-height: none;
}

.read-more-link {
  background: none;
  border: none;
  color: var(--black);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  padding: 15px 0;
  text-decoration: underline;
  text-transform: uppercase;
}

/* --- CONTACTS & TAXONOMY --- */
.taxonomy-contact-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  border-top: 1px solid var(--black);
  padding-top: 20px;
  gap: 20px;
}

.taxonomy-contact-grid h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.taxonomy-contact-grid p,
.taxonomy-contact-grid a {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--black);
  text-decoration: none;
  line-height: 1.2;
}

.taxonomy-contact-grid a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   7. LIGHTBOX OVERLAY
   ========================================================================== */

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  user-select: none;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
}

.lightbox-content img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

/* Controls */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  transition: opacity 0.3s;
}

.lightbox-close {
  top: 20px;
  right: 30px;
  z-index: 10001;
}
.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--red);
}



/* ==========================================================================
   8. FOOTER
   ========================================================================== */

.main-footer {
  position: relative;
  z-index: 5;
  background-color: var(--grey-bg);
  width: 100%;
}

.footer-title-svg {
  width: 100%;
  background-color: var(--white);
  position: relative;
  z-index: 10;
  overflow: visible;
  padding-top: 100px;
}

.footer-title-svg img {
  width: 90%;
  margin: 0 auto;
  display: block;
  transform: translateY(10%);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.5fr 1fr;
  gap: 60px;
  padding: 80px 64px 50px 64px;
  position: relative;
  z-index: 1;
}

.footer-col .label-svg {
  height: 12px;
  margin-top: 6px;
  margin-bottom: 21px;
  display: block;
}

.footer-col h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 24px;
}

.footer-col p,
.footer-col a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--black);
}

.footer-col a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.nav-sub-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nav-sub-col > :first-child {
  margin-top: 0 !important;
}

.footer-bottom {
  border-top: 1px solid var(--black);
  padding: 32px 64px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.footer-label {
  font-size: 14px;
  font-weight: 800;
  margin-top: 10px;
  color: var(--black);
}

.indent {
  padding-left: 15px;
  font-size: 15px !important;
  opacity: 0.8;
}


/* ==========================================================================
   9. MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */

/* --- TABLETS & LAPTOPS --- */
@media (max-width: 1024px) {
  .designer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* --- MOBILE DEVICES --- */
@media (max-width: 768px) {
  /* Navigation & Menu */
  .main-nav {
    padding: 20px;
    position: sticky;
    border-bottom: 1px solid var(--black);
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    z-index: 2000;
    position: relative;
  }

  .menu-toggle .bar {
    width: 30px;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
  }

  .menu-toggle.active .bar {
    opacity: 0;
  }
  .menu-toggle.active::after {
    content: "";
    width: 30px;
    height: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 14'%3E%3Cpath d='M3 4 L15 12 L27 4' fill='none' stroke='%231F201F' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
  }

  .nav-menu {
    background-color: var(--white);
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    border-bottom: 1px solid var(--black);
    align-items: flex-end;
    text-align: right;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a, 
  .dropbtn {
    margin-left: 0;
    margin-bottom: 20px;
    width: 100%;
    justify-content: flex-end;
    font-size: 16px;
  }

  .dropdown {
    width: 100%;
    position: static;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    box-shadow: none;
    gap: 0px;
    border: none;
    padding: 0 0 20px 0;
    background-color: transparent;
    display: none;
    flex-direction: column;
    align-items: flex-end;
  }

  .dropdown-content.show {
    display: flex;
  }

  .dropdown-content a {
    font-size: 14px;
    padding-right: 0;
  }

  /* Coming soon in mobile */
  .coming-soon {
    opacity: 0.3;
  }

  /* Intro & Home Sections */
  .intro-grid {
    grid-template-columns: 1fr;
    padding: 60px 40px;
  }
  .sponsors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .events-diagram {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
    padding: 40px 20px;
  }
  
  .event-box h3 {
    font-size: 24px;
  }
  
  .event-box p {
    font-size: 16px;
  }

  .event-box.left {
    text-align: left;
    align-items: flex-start;
    order: 1;
  }

  .event-box.right {
    text-align: right;
    align-items: flex-end;
    order: 2;
  }
  .diagram-svg {
    grid-column: span 2;
    order: 3;
    width: 100%;
  }
  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
  }

  .sponsor-pill {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .diagram-svg img {
    rotate: 0deg;
    width: 100%;
    height: auto;
    max-width: 100%;
    padding: 0;
  }

  .sponsors-section {
    padding: 40px 24px 80px 24px;
  }
  .sponsors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .sponsor-pill {
    padding: 12px;
    min-height: auto;
  }
  .sponsor-pill img {
    max-height: 36px;
  }

  /* Archive Mobile */
  .filter-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .search-container {
    width: 100%;
  }
  .designer-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .photo-grid {
    padding: 20px;
  }

  .column {
    flex: 100%;
    max-width: 100%;
  }

  /* Single Designer Mobile */
  .designer-single-container {
    flex-direction: column;
    padding: 0 20px;
    gap: 30px;
  }

  .media-column,
  .info-column {
    width: 100%;
    position: static; /* Remove sticky on mobile */
    max-height: none;
    overflow: visible;
  }

  .image-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin: 0;
    padding: 0 20px;
    scrollbar-width: none;
  }

  .image-grid::-webkit-scrollbar {
    display: none;
  }
  .photo-container {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .video-section {
    margin-top: 20px;
  }
  .video-crop-top {
    height: 50vh;
  }
  .video-label-footer {
    padding: 15px 24px;
  }

  .project-title {
    font-size: 44px;
    margin-bottom: 24px;
  }
  .description-content {
    font-size: 18px;
  }
  .taxonomy-contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Lightbox Mobile */
  .lightbox-prev,
  .lightbox-next {
    font-size: 30px;
    padding: 20px;
  }

  /* Footer Mobile */
  .footer-title-svg img {
    width: 95%;
    transform: translateY(10%);
  }
  .footer-content {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 40px;
  }
  .nav-links {
    gap: 20px;
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    text-align: center;
  }
}
