 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

:root {
   /* --primary: hsl(12, 94%, 51%);
     /* Green */
    /* --primary-foreground: hsl(108, 100%, 17%);*/

     /* Landscape Theme - Sky Blues & Earth Tones */
     --background: hsl(200, 35%, 96%);
     /* Sky blue tint */
     --foreground: hsl(200, 20%, 20%);
     /* Deep slate */
     --card: hsl(109, 15%, 80%);
     /* Pure white */
     --card-foreground: hsl(200, 20%, 20%);
   
     /* White */
     --secondary: hsl(30, 80%, 55%);
     /* Sunset orange */
     --secondary-foreground: hsl(0, 0%, 100%);
     --muted: hsl(198, 65%, 46%);
     /* Light sky */
     --muted-foreground: hsl(200, 15%, 50%);
     /* Slate gray */
     --accent: hsl(160, 50%, 45%);
     /* Mountain green */
     --accent-foreground: hsl(0, 0%, 100%);
     --border: hsl(200, 25%, 88%);
     /* Soft blue border */
    /* --horizon: hsl(128, 80%, 50%);*/
     /* Bright sky */
     --ring: hsl(185, 45%, 25%)
 }



 html {
     scroll-behavior: smooth;
 }

 body {
     font-family:'Roboto', sans-serif;
     background-color:#85827f4f;
     color:  #000000;
    
     line-height: 1.6;
     overflow-x: hidden;

 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: "Playfair Display", serif;
 }

 .header {
     background: #e7dcc9;
     border-bottom: 1px solid var(--border);
     position: sticky;
     top: 0;
     z-index: 100;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    
 }

 .navbar {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0.875rem 1rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     position: relative;
 }

 .logo {
     font-size: clamp(1.25rem, 4vw, 1.5rem);
     font-weight: bold;
     color:var(--primary-foreground);
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 0.5rem;
     transition: transform 0.3s ease;
     z-index: 101;
     text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
 }

 .logo:hover {
     transform: scale(1.05);
 }

 .logo-icon {
     font-size: clamp(1.5rem, 5vw, 2rem);
     animation: horizon-drift 6s ease-in-out infinite;
 }

 @keyframes horizon-drift {

     0%,
     100% {
         transform: translateY(0)
     }

     50% {
         transform: translateY(-5px)
     }
 }

 .nav-links {
     display: flex;
     gap: clamp(1rem, 3vw, 2rem);
     list-style: none;
     align-items: center;
 }

 .nav-links a {
     color: var(--primary-foreground);
     text-decoration: none;
     font-weight: bold;
     font-size: clamp(0.875rem, 2vw, 1rem);
     transition: color 0.3s, transform 0.3s;
     position: relative;
     white-space: nowrap;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--primary);
     transition: width 0.3s;
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 .nav-links a:hover {
     color:#000;
 }

 /* FIXED: Mobile Menu Button - Always visible on small screens */
 .mobile-menu-btn {
     display: none;
     background: none;
     border: 2px solid var(--primary);
     padding: 0.5rem;
     border-radius: 8px;
     font-size: 1.5rem;
     cursor: pointer;
     color: var(--primary);
     transition: all 0.3s;
     z-index: 101;
     width: 44px;
     height: 44px;
     align-items: center;
     justify-content: center;
 }

 .mobile-menu-btn:hover {
     background: var(--primary);
     color: var(--primary-foreground);
     transform: scale(1.05);
 }

 .mobile-menu-btn:active {
     transform: scale(0.95);
 }

 /* FIXED: Mobile Navigation - Better positioning and animation */
 .mobile-nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0.8);
     z-index: 99;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease, visibility 0.3s ease;
 }

 .mobile-nav.active {
     opacity: 1;
     visibility: visible;
 }

 .mobile-nav-content {
     position: absolute;
     top: 0;
     right: 0;
     width: min(300px, 80vw);
     height: 100%;
     background: var(--card);
     box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
     transform: translateX(100%);
     transition: transform 0.3s ease;
     overflow-y: auto;
     padding: 5rem 2rem 2rem;
 }

 .mobile-nav.active .mobile-nav-content {
     transform: translateX(0);
 }

 .mobile-nav ul {
     list-style: none;
 }

 .mobile-nav li {
     margin: 0;
     border-bottom: 1px solid var(--border);
 }

 .mobile-nav a {
     color: var(--foreground);
     text-decoration: none;
     font-size: 1.125rem;
     font-weight: bold;
     display: block;
     padding: 1rem;
     transition: all 0.3s;
     
 }

 .mobile-nav a:hover,
 .mobile-nav a:active {
     background: var(--muted);
     color: var(--primary);
     padding-left: 1.5rem;
 }




 /* here mobile nav remain....
....
...
.
..
..
...
. */

 .hero {
   position: relative;
   height: clamp(400px, 60vh, 700px);
   width: 100%;
   overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-top: 2px;
 }

 /* Video Background */
 .hero-video {
   position: absolute;
   top: 50%;
   left: 50%;
   min-width: 100%;
   min-height: 100%;
   width: auto;
   height: auto;
   transform: translate(-50%, -50%);
   object-fit: cover;
   z-index: 1;
 }

 /* Dark Overlay for Text Readability */
 .hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(to bottom,
       rgba(0, 0, 0, 0.3) 0%,
       rgba(0, 0, 0, 0.5) 100%);
   z-index: 2;
 }

 /* Content Above Video */
 .hero-content {
   position: relative;
   z-index: 3;
   color: white;
   text-align: center;
   padding: 2rem;
   max-width: 900px;
 }

 .hero-content h1 {
   font-size: clamp(2.5rem, 6vw, 4rem);
   margin-bottom: 1rem;
   text-shadow: 4px 4px 16px rgba(0, 0, 0, 0.9);
   font-weight: 700;
   letter-spacing: 2px;
 }

 .hero-content p {
   font-size: clamp(1rem, 2vw, 1.3rem);
   text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
   font-style: italic;
 }

 

 /* Mobile Optimization */
 @media (max-width: 768px) {
   .hero {
     height: 60vh;
   }

   .hero-video {
     /* Use poster image on mobile to save data */
     pointer-events: none;
   }
 }

 .gallery {
     max-width: 1400px;
     margin: 0 auto;
     padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
     position: relative;
     z-index: 1;
 }

 .gallery-controls {
     margin-bottom: 2rem;
 }

 .controls-top {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 1.5rem;
     flex-wrap: wrap;
     gap: 1rem;
 }

 .artwork-count {
     font-size: clamp(0.95rem 3vw, 1.125rem);
     color: var(--muted-foreground);
     font-weight: 500;
 }

 .view-options {
     display: flex;
     gap: 0.5rem;
 }


 .view-btn {
     padding: 0.625rem 1rem;
     border: 2px solid var(--border);
     border-radius: 9px;
     background: var(--card);
     cursor: pointer;
     transition: all 0.3s;
     font-size: 1rem;
     min-width: 44px;
     min-height: 44px;
     color: var(--foreground);
 }

 .view-btn.active {
     background: var(--primary);
     color: var(--primary-foreground);
     box-shadow: 0 4px 15px rgba(70, 130, 180, 0.3);
 }

 .view-btn:focus {
     outline: none;
     box-shadow: 0 0 0 3px rgba(70, 130, 180, 0, 2);
 }

 .search-filter-container {
     margin-bottom: 1.5rem;
 }

 .search-box {
     width: 100%;
     padding: 0.875rem 1.25rem;
     font-size: clamp(0.9rem, 2.5vw, 1rem);
     border: 2px solid var(--border);
     border-radius: 18px;
     color: var(--foreground);
     transition: all 0.3s;
 }

 .search-box:focus {
     outline: none;
     border-color: var(--primary);
     box-shadow: 0 0 0 3px rgba(70, 130, 180, 0.15);
 }

 .filter-buttons {
     display: flex;
     gap: 0.75rem;
     flex-wrap: wrap;
 }

 .filter-btn {
     padding: 0.75rem 1.25rem;
     font-size: clamp(0.875rem, 5.5vw, 1rem);
     font-weight: 500;
     border: 2px solid var(--border);
     border-radius: 10px;
     background: var(--card);
     color: var(--foreground);
     cursor: pointer;
     transition: all 0.3s;
     position: relative;
     overflow: hidden;
     min-height: 44px;
     white-space: nowrap;
 }

 .filter-btn:hover {
     border-color: var(--primary);
     color: var(--primary);
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(70, 130, 180, 0, 2);
 }

 .filter-btn:focus {
     outline: none;
     border-color: var(--primary);
     box-shadow: 0 0 0 3px rgba(70, 130, 180, 0.2);
 }

 .filter-btn.active {
     background: var(--primary);
     color: var(--primary-foreground);
     border-color: var(--primary);
     box-shadow: 0 4ox 15px rgba(70, 130, 180, 0.3);
 }

 .loading {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     padding: 5rem 2rem;
     gap: 1.5rem;
 }

 .loading-spinner {
     width: 60px;
     height: 60px;
     border: 4px solid var(--muted);
     border-top-color: var(--primary);
     border-radius: 50%;
     animation: spin 1s linear infinite;
 }

 @keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }

 .loading-text {
     font-size: 1.25rem;
     color: var(--muted-foreground);
     animation: pluse-text 1.5s ease-in-out infinite;
 }

 @keyframes pluse-text {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: 0.5;
     }
 }




 /* Gallery grid Work*/

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr));
     gap: clamp(1.25rem, 3vw, 2.5rem);
     animation: fadeIn 0.6s ease;
    
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 .gallery-grid.list-view {
     grid-template-columns: 1fr;

 }

 .gallery-item {
     background: #3b1f3c;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 6px 20px;
     cursor: pointer;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     border: 2px solid transparent;
     aspect-ratio: 16 / 10;
 }

 .gallery-item:hover,
 .gallery-item:focus-within {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px;
     border-color: var(--horizon);
     color: var(--horizon);
 }

 .gallery-item-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 0.5s ease;
 }

 .gallery-item:hover .gallery-item-image {
     transform: scale(1.09);
 }

 .gallery-item-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 60px;
     /*adjust based on footer height*/
     background: linear-gradient(to top, rgba(0, 0, 0, 0.85)0%, rgba(0, 0, 0, 0.4)40%, transparent 70%);
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 1.5rem;
     opacity: 0;
     transition: opacity 0.4s;
     pointer-events: none;
     color:white;
 }

 .gallery-item:hover .gallery-item-overlay,
 .gallery-item:focus-within .gallery-item-overlay {
     opacity: 1;
 }

 .gallery-item-title {
     color: white;
     font-size: clamp(1.125rem, 3vw, 1.5rem);
     margin-bottom: 0.25rem;
     text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
     font-weight: 600;
 }

 .gallery-item-artist {
     color: rgba(255, 255, 255, 0.9);
     font-size: clamp(0.9rem, 2.5vw, 1rem);
     text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
 }





 
/* ============================================
   LIGHTBOX - RESPONSIVE & BEAUTIFUL
   ============================================ */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: block;
  opacity: 1;
}

/* Main Container */
.lightbox-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

/* ============================================
   IMAGE SECTION
   ============================================ */

.lightbox-image-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 20px;
  transition: all 0.3s ease;
}

/* When info panel is open on desktop, adjust image section */
.lightbox-container:has(.lightbox-info-panel.open) .lightbox-image-section {
  padding-right: 400px;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

/* ============================================
   NAVIGATION BUTTONS
   ============================================ */

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10002;
  color: white;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ============================================
   CLOSE BUTTON
   ============================================ */

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10003;
  color: white;
}

.lightbox-close:hover {
  background: rgba(255, 59, 59, 0.9);
  transform: rotate(90deg);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ============================================
   INFO TOGGLE BUTTON (Mobile/Tablet)
   ============================================ */

.info-toggle-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 10002;
}

.info-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.info-toggle-btn svg {
  width: 18px;
  height: 18px;
  fill: #0f172a;
}

/* ============================================
   INFO PANEL - DESKTOP SIDEBAR
   ============================================ */

.lightbox-info-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: 380px;
  height: 100%;
  background: #ffffff;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10001;
  overflow-y: auto;
  overflow-x: hidden;
}

.lightbox-info-panel.open {
  transform: translateX(0);
}

/* Info Panel Header */
.info-panel-header {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-panel-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.info-panel-close {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

.info-panel-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.info-panel-close svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Info Panel Content */
.info-panel-content {
  padding: 24px;
}

.info-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.info-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-artwork-title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.info-artist {
  margin: 0;
  font-size: 16px;
  color: #64748b;
  font-style: italic;
}

.info-label {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-description {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
}

/* Scrollbar Styling */
.lightbox-info-panel::-webkit-scrollbar {
  width: 8px;
}

.lightbox-info-panel::-webkit-scrollbar-track {
  background: #f1f5f9;
}

.lightbox-info-panel::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.lightbox-info-panel::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* ============================================
   TABLET RESPONSIVE (768px - 1024px)
   ============================================ */

@media screen and (max-width: 1024px) {
  .lightbox-info-panel {
    width: 340px;
  }
  
  .lightbox-container:has(.lightbox-info-panel.open) .lightbox-image-section {
    padding-right: 360px;
  }
  
  .lightbox-image-section {
    padding: 70px 15px 15px;
  }
  
  .info-toggle-btn {
    display: flex;
  }
}

/* ============================================
   MOBILE RESPONSIVE (Below 768px)
   ============================================ */

@media screen and (max-width: 768px) {
  /* Make info panel a bottom sheet */
  .lightbox-info-panel {
    width: 100%;
    height: 65vh;
    max-height: 600px;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    border-radius: 20px 20px 0 0;
  }
  
  .lightbox-info-panel.open {
    transform: translateY(0);
  }
  
  .lightbox-container:has(.lightbox-info-panel.open) .lightbox-image-section {
    padding-right: 20px;
  }
  
  .lightbox-image-section {
    padding: 60px 10px 100px;
  }
  
  .info-toggle-btn {
    display: flex;
    bottom: 15px;
    right: 15px;
    padding: 10px 16px;
    font-size: 13px;
  }
  
  .info-toggle-btn svg {
    width: 16px;
    height: 16px;
  }
  
  /* Adjust navigation buttons */
  .lightbox-nav {
    width: 44px;
    height: 44px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
  
  .info-panel-content {
    padding: 20px;
  }
  
  .info-artwork-title {
    font-size: 20px;
  }
  
  .info-artist {
    font-size: 14px;
  }
  
  .info-description {
    font-size: 14px;
  }
}

/* ============================================
   SMALL MOBILE (Below 480px)
   ============================================ */

@media screen and (max-width: 480px) {
  .lightbox-image-section {
    padding: 55px 8px 90px;
  }
  
  .lightbox-nav {
    width: 38px;
    height: 38px;
  }
  
  .lightbox-nav svg {
    width: 20px;
    height: 20px;
  }
  
  .lightbox-close {
    width: 36px;
    height: 36px;
  }
  
  .lightbox-close svg {
    width: 20px;
    height: 20px;
  }
  
  .info-toggle-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
  
  .info-panel-header {
    padding: 16px;
  }
  
  .info-panel-title {
    font-size: 16px;
  }
  
  .info-panel-content {
    padding: 16px;
  }
  
  .info-artwork-title {
    font-size: 18px;
  }
}

/* ============================================
   LANDSCAPE MOBILE
   ============================================ */

@media screen and (max-width: 768px) and (orientation: landscape) {
  .lightbox-info-panel {
    height: 80vh;
    max-height: none;
  }
  
  .lightbox-image-section {
    padding: 50px 10px 10px;
  }
  
  .info-toggle-btn {
    bottom: 10px;
    right: 10px;
  }
}

/* ============================================
   ACCESSIBILITY & ANIMATIONS
   ============================================ */

/* Keyboard focus styles */
.lightbox-nav:focus,
.lightbox-close:focus,
.info-toggle-btn:focus,
.info-panel-close:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lightbox,
  .lightbox-info-panel,
  .lightbox-nav,
  .lightbox-close,
  .info-toggle-btn {
    transition: none;
  }
}

/* Loading state */
.lightbox-image[src=""],
.lightbox-image:not([src]) {
  opacity: 0;
}

.lightbox-image {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}








 /* ========================
   LINKS SECTION
   ======================== */
 .links {

     background: #1a1a1a;
     padding: 80px 0;
 }

 .links-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 50px;
 }

 .links-column h3 {
     color: #d4a574;
     font-size: 1.3rem;
     margin-bottom: 25px;
     padding-left: 10px;
 }

 .links-column ul li {
     margin-bottom: 15px;
     padding-left: 10px;
 }

 .links-column ul li a {
     color: rgba(255, 255, 255, 0.8);
     font-size: 0.95rem;
     transition: var(--transition);
     display: inline-block;
     padding-left: 10px;
 }

 .links-column ul li a:hover {
     color: #ffffff;
     transform: translateX(5px);
 }

 .links-column-legal h3 {
     color: #d4a574;
     font-size: 1.3rem;
     margin-bottom: 25px;
     padding-left: 10px;

 }

 .links-column-legal ul li {
     margin-bottom: 15px;
     padding-left: 10px;
     display: block;

 }

 .links-column-legal ul li a {
     color: rgba(255, 255, 255, 0.8);
     font-size: 0.95rem;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     display: inline-block;
     margin-left: 5px;
 }

 .links-column-legal ul li a:hover {
     color: #ffffff;
     transform: translateX(5px);
 }




 /*===========
   Footer
 ============*/
 .footer {
     background: #0f0f0f;
     padding: 50px 0 30px;
 }

 .footer-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-bottom: 30px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     margin-bottom: 20px;
 }

 .footer-brand h2 {
     color: white;
     font-size: 1.8rem;
     margin-bottom: 10px;
 }

 .footer-brand span {
     color: #d4a574;
 }

 .footer-brand p {
     color: rgba(255, 255, 255, 0.6);
     font-size: 0.95rem;
 }

 .footer-brand h2 {
     color: #ffffff;
     font-size: 1.8rem;
     margin-bottom: 10px;
 }

 .footer-brand span {
     color: #d4a574;
 }

 .footer-brand p {
     color: rgba(255, 255, 255, 0.6);
     font-size: 0.95rem;
 }

 .footer-social {
     display: flex;
     gap: 15px;
     justify-content: center;
     align-items: center;
     margin-top: 20px;
 }

 .footer-social a {
     color: #fff;
     font-size: 22px;
     transition: transform 0.3s ease, color 0.3s ease;
 }

 .footer-social a:hover {
     color: #d4a574;
     transform: scale(1.2);
 }


 .footer-bottom {
     text-align: center;
 }

 .footer-bottom p {
     color: rgba(255, 255, 255, 0.5);
     font-size: 0.9rem;
 }




/* ============================================
   DARK MODE SYSTEM
   ============================================ */

/* Dark Mode Colors */
/*body.dark-mode {
    --background: hsl(220, 20%, 12%);
    --foreground: hsl(210, 25%, 90%);
    --card: hsl(220, 18%, 20%);
    --card-foreground: hsl(210, 25%, 90%);
    --secondary: hsl(30, 85%, 65%);
    --secondary-foreground: hsl(0, 0%, 100%);
    --muted: hsl(198, 60%, 55%);
    --muted-foreground: hsl(210, 18%, 65%);
    --accent: hsl(160, 55%, 55%);
    --accent-foreground: hsl(0, 0%, 100%);
    --border: hsl(220, 18%, 25%);
    --ring: hsl(220, 18%, 30%);
    
    background-color: hsl(220, 20%, 10%);
    color: hsl(210, 25%, 90%);
}*/

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    position: relative;
    background: transparent;
    border: 2px solid var(--border);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.dark-mode-toggle:hover {
    background: var(--muted);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* Icon Visibility */
.sun-icon {
    display: block;
    color: var(--foreground);
    font-size: 20px;
}

.moon-icon {
    display: none;
    color: var(--foreground);
    font-size: 20px;
}

body.dark-mode .sun-icon {
    display: none;
}

body.dark-mode .moon-icon {
    display: block;
}

/* Dark Mode Specific Adjustments */
body.dark-mode .header {
    background: hsl(220, 18%, 15%);
    border-bottom: 1px solid hsl(220, 18%, 25%);
}

body.dark-mode .gallery-item {
    background: hsl(220, 18%, 18%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

body.dark-mode  .gallery-item:hover,
 .gallery-item:focus-within {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px;
     border-color: var(--horizon);
     color: var(--horizon);
 }

body.dark-mode .hero::before,
body.dark-mode .hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

body.dark-mode img {
    opacity: 0.92;
}

body.dark-mode img:hover {
    opacity: 1;
}

body.dark-mode .footer {
    background: hsl(220, 20%, 8%);
}

body.dark-mode .links {
    background: hsl(220, 18%, 12%);
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background: hsl(220, 18%, 18%);
    color: hsl(210, 25%, 90%);
    border-color: hsl(220, 18%, 30%);
}

/* Smooth Transitions */
body, .header, .gallery-item, .footer, .links, input, textarea, select {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .dark-mode-toggle {
        width: 40px;
        height: 40px;
        margin-left: 0.5rem;
    }
}




 @media (max-width:768px) {
     html {
         scroll-behavior: smooth;
     }
 }

 @media (max-width:768px) {
     .nav-links {
         display: none;
     }

     .mobile-menu-btn {
         display: flex;
     }
 }




 @media (max-width:768px) {

     .footer-social {
         display: contents;
         padding: auto;
     }


 }