* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body, html {
    height: auto;
    background-color: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
  }

  
  
  .head {
    text-align: center;
    background-color: #444;
    padding: 7px 0;
    font-size: 10px;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
  .navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #111;
    padding: 30px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding 0.3s ease, gap 0.3s ease;
    gap: 28px;
  }
  
  .navbar.shrink {
    padding: 15px 40px;
    gap: 20px;
  }
  
  .navbar.shrink .logo {
    height: 90px;
  }

  .navbar-brand {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
  }
  
  .menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: transparent;
    color: #1e90ff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  }

  .menu-toggle:hover {
    background: rgba(30, 144, 255, 0.12);
    border-color: rgba(30, 144, 255, 0.35);
  }

  .menu-toggle:focus-visible {
    outline: 2px solid #1e90ff;
    outline-offset: 4px;
  }
  
  .logo-link {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
  }

  .logo-link:hover {
    transform: scale(1.03);
  }

  .logo {
    height: 130px;
    transition: height 0.3s ease;
    max-width: 250px;
    object-fit: contain;
    display: block;
  }

  .nav-drawer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .nav-drawer-header,
  .nav-drawer-footer {
    display: none;
  }

  .nav-close {
    display: none;
  }

  .nav-drawer-subtitle {
    color: #a0acc3;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .nav-links a {
    color: #bbb;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: #1e90ff;
    text-decoration: none;
  }
  
  .nav-links a i {
    display: none;
    font-size: 1.1rem;
  }
  
  .nav-links a span {
    display: inline;
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1e90ff, #4da6ff);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(30, 144, 255, 0.32);
  }

  .nav-cta-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
  }

  .nav-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
  }

  .nav-overlay {
    display: none;
  }

  body.no-scroll {
    overflow: hidden;
    touch-action: none;
  }

  @media (max-width: 850px) {
    .navbar {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      gap: 0;
    }

    .navbar-brand {
      position: relative;
      width: 100%;
      justify-content: center;
      gap: 0;
      padding: 0 56px;
    }

    .menu-toggle {
      display: inline-flex;
      z-index: 1030;
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
    }

    .logo-link {
      margin: 0;
    }

    .logo {
      height: 110px;
    }

    .nav-drawer {
      position: fixed;
      top: 0;
      right: 0;
      width: min(340px, 88%);
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: stretch;
      gap: 28px;
      padding: 28px 22px 32px;
      background: linear-gradient(135deg, #050505 0%, #1a1a2e 55%, #16213e 100%);
      box-shadow: -24px 0 48px rgba(0, 0, 0, 0.55);
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      z-index: 1040;
      overflow-y: auto;
    }

    .navbar.is-open .nav-drawer {
      transform: translateX(0);
    }

    .nav-drawer-header,
    .nav-drawer-footer {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .nav-drawer-header {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }

    .nav-drawer-title {
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #6fa4ff;
      font-weight: 600;
    }

    .nav-close {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: #fff;
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .nav-close:hover {
      background: rgba(255, 255, 255, 0.18);
      transform: scale(1.05);
    }

    .nav-links {
      flex-direction: column;
      gap: 16px;
    }
    
    .nav-links li {
      width: 100%;
    }

    .nav-links a {
      width: 100%;
      justify-content: flex-start;
      padding: 16px 18px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.02);
      color: #fff;
      font-size: 1.05rem;
      gap: 18px;
      position: relative;
      overflow: hidden;
    }

    .nav-links a::after {
      content: '\2192';
      position: absolute;
      right: 22px;
      font-size: 1.3rem;
      color: rgba(111, 164, 255, 0.7);
      opacity: 0;
      transform: translateX(-8px);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-links a:hover::after {
      opacity: 1;
      transform: translateX(0);
    }

    .nav-links a i {
      display: inline-flex;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: rgba(30, 144, 255, 0.12);
      align-items: center;
      justify-content: center;
      color: #6fa4ff;
      font-size: 1.25rem;
      flex-shrink: 0;
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .nav-links a span {
      font-weight: 500;
    }

    .nav-links a:hover {
      background: rgba(30, 144, 255, 0.12);
      border-color: rgba(30, 144, 255, 0.28);
    }

    .nav-links a:hover i {
      transform: scale(1.07);
      background: rgba(30, 144, 255, 0.24);
    }

    .nav-drawer-footer {
      margin-top: auto;
    }

    .nav-drawer-footer .nav-cta {
      width: 100%;
    }

    .nav-drawer-footer .nav-cta-secondary {
      color: #c8d7ff;
      border-color: rgba(111, 164, 255, 0.35);
    }

    .nav-drawer-footer .nav-cta-secondary:hover {
      background: rgba(111, 164, 255, 0.12);
    }

    .nav-overlay {
      display: block;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.65);
      backdrop-filter: blur(4px);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      z-index: 1030;
    }

    .navbar.is-open .nav-overlay {
      opacity: 1;
      pointer-events: auto;
    }
  }

 /*hero section*/

 .hero {
  min-height: 650px;
  background: url('../images/background/banner.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s ease;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #1e90ff, #4da6ff);
  color: #fff;
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
}

.hero-btn.primary:hover {
  background: linear-gradient(135deg, #4da6ff, #66b3ff);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(77, 166, 255, 0.5);
}

.hero-btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.hero-btn.secondary:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

@media (max-width: 850px) {
  .hero {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
  
  .hero-tagline {
    font-size: 1.1rem;
  }
  
  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .hero-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
  }
}

/* Section Labels */
.section-label {
  display: inline-block;
  color: #1e90ff;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
  font-weight: 600;
}
  
/* Categories & Gallery Section */
.categories {
  background: #000;
  color: white;
  text-align: center;
  padding: 90px 8% 100px;
}

.categories-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.categories-content h2 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #fff;
}

.categories-content p {
  font-size: 1.05rem;
  color: #999;
  line-height: 1.7;
  font-weight: 300;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  max-width: 1300px;
  margin: 0 auto;
}

.gallery-item {
  background: #0a0a0a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(30, 144, 255, 0.2);
  border-color: rgba(30, 144, 255, 0.3);
}

.gallery-image {
  position: relative;
  overflow: hidden;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.9));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.view-link {
  color: #fff;
  background: #1e90ff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-link:hover {
  background: #4da6ff;
  transform: translateY(-2px);
}

.gallery-info {
  padding: 25px 20px;
  text-align: left;
}

.gallery-info h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.gallery-info p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .categories {
    padding: 60px 5% 70px;
  }

  .categories-content {
    margin-bottom: 50px;
  }

  .categories-content h2 {
    font-size: 2rem;
  }

  .categories-content p {
    font-size: 0.95rem;
  }

  .gallery-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .gallery-image img {
    height: 320px;
  }

  .gallery-info {
    padding: 20px 15px;
  }
}

/* about us section */
.about {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  color: #fff;
  padding: 90px 8%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-content {
  text-align: left;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  font-weight: 600;
  color: #fff;
}

.about-content p {
  font-size: 1rem;
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 18px;
  font-weight: 300;
}

.learn-btn {
  background: linear-gradient(135deg, #1e90ff, #4da6ff);
  color: #fff;
  border: none;
  padding: 13px 32px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.4s ease;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
  display: inline-block;
  margin-top: 10px;
}

.learn-btn:hover {
  background: linear-gradient(135deg, #4da6ff, #66b3ff);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(77, 166, 255, 0.4);
}

/* --- Responsive --- */
@media (max-width: 820px) {
  .about {
    padding: 60px 5%;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-content {
    text-align: center;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-image img {
    max-width: 100%;
  }
}



/* Testimonial section */
.testimonial {
  background: url('../images/background/comment.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.testimonial-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 28px;
  border: 4px solid #1e90ff;
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
}

.testimonial-rating {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 15px;
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.testimonial-text {
  font-size: 1.25rem;
  font-weight: 300;
  color: #eee;
  line-height: 1.7;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-name {
  font-size: 1.05rem;
  font-weight: 500;
  color: #1e90ff;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .testimonial {
    padding: 70px 20px;
  }

  .testimonial-img {
    width: 80px;
    height: 80px;
  }

  .testimonial-text {
    font-size: 1.05rem;
  }

  .testimonial-name {
    font-size: 0.95rem;
  }
}


/* Featured Paintings section */

.artshow-section {
  background: #000;
  color: #fff;
  padding: 90px 8% 100px;
  font-family: 'Outfit', sans-serif;
  position: relative;
}

.artshow-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.artshow-title {
  font-weight: 600;
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #fff;
}

.artshow-subtitle {
  font-size: 1.05rem;
  color: #999;
  font-weight: 300;
}

.artshow-wrapper { 
  position: relative;
  padding-bottom: 20px;
}

/* gallery with gaps */
.artshow-gallery {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0 30px;
}

/* scrollbar styling */
.artshow-gallery::-webkit-scrollbar { 
  height: 6px; 
}

.artshow-gallery::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.artshow-gallery::-webkit-scrollbar-thumb { 
  background: #1e90ff;
  border-radius: 10px;
}

.artshow-gallery::-webkit-scrollbar-thumb:hover { 
  background: #4da6ff;
}

/* cards */
.art-card {
  min-width: 280px;
  flex: 0 0 auto;
  background: #0a0a0a;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.art-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(30, 144, 255, 0.25);
  border-color: rgba(30, 144, 255, 0.4);
}

.art-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.art-card:hover img {
  transform: scale(1.08);
}

.art-card h3 { 
  margin: 20px 15px 10px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

.art-card p { 
  margin: 0 15px 20px;
  color: #1e90ff;
  font-size: 1.15rem;
  font-weight: 600;
}

/* === Dynamic Product Card Styles === */
.art-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.art-card .card-image {
  position: relative;
  overflow: hidden;
  height: 340px;
}

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

.art-card .card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  color: #000;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.art-card .card-info {
  padding: 20px 15px;
  text-align: center;
}

.art-card .card-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(30, 144, 255, 0.15);
  color: #1e90ff;
  border-radius: 15px;
  font-size: 0.75rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.art-card .card-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #fff;
  line-height: 1.3;
}

.art-card .card-artist {
  font-size: 0.9rem;
  color: #4da6ff;
  margin-bottom: 10px;
  font-weight: 500;
}

.art-card .card-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e90ff;
  margin: 0;
}

/* Arrow buttons */
.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 144, 255, 0.2);
  border: 2px solid #1e90ff;
  color: #fff;
  font-size: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 50;
}

.arrow-btn:hover {
  background: #1e90ff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.4);
}

.arrow-left { left: 20px; }
.arrow-right { right: 20px; }

/* show arrows on wider screens only */
@media (min-width: 768px) {
  .arrow-btn { display: flex; }
}

/* mobile/tablet responsive */
@media (max-width: 767px) {
  .artshow-section {
    padding: 60px 5% 70px;
  }

  .artshow-header {
    margin-bottom: 40px;
  }

  .artshow-title {
    font-size: 2rem;
  }

  .artshow-subtitle {
    font-size: 0.95rem;
  }

  .art-card {
    min-width: 85%;
  }
  
  .art-card img {
    height: 300px;
  }

  .art-card .card-image {
    height: 300px;
  }

  .art-card .card-info {
    padding: 15px 12px;
  }

  .art-card .card-info h3 {
    font-size: 1.1rem;
  }

  .art-card .card-price {
    font-size: 1.1rem;
  }
  
  .artshow-gallery {
    gap: 20px;
    padding: 15px 0 25px;
  }
}


/* Footer Section */

.footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  border-top: 2px solid rgba(30, 144, 255, 0.3);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 8% 50px;
}

/* Brand Column */
.footer-brand {
  padding-right: 20px;
}

.footer-logo {
  height: 100px;
  margin-bottom: 20px;
  filter: brightness(1.1);
}

.footer-tagline {
  font-size: 1.1rem;
  color: #1e90ff;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-desc {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.6;
  font-weight: 300;
}

/* Footer Columns */
.footer-column {
  position: relative;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-list a:hover {
  color: #1e90ff;
  transform: translateX(5px);
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 144, 255, 0.1);
  color: #1e90ff;
  font-size: 1.4rem;
  border-radius: 10px;
  transition: all 0.4s ease;
  border: none;
  text-decoration: none !important;
}

.social-link:hover {
  background: #1e90ff;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.4);
  text-decoration: none !important;
}

.social-link i {
  text-decoration: none !important;
}

/* Footer Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item-footer p {
  color: #999;
  font-size: 0.95rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: #1e90ff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.footer-contact a {
  color: #1e90ff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-contact a:hover {
  color: #4da6ff;
}

.footer-email {
  word-break: break-word;
  color: #999;
  font-size: 0.9rem;
  margin: 8px 0 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.artist-name {
  color: #777;
  font-size: 0.8rem;
  font-weight: 300;
  padding-left: 28px;
}

/* Footer Bottom */
.footer-bottom {
  background: #000;
  padding: 25px 8%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: #666;
  font-size: 0.85rem;
  margin: 5px 0;
  font-weight: 300;
}

.footer-credit {
  margin-top: 8px;
}

.footer-credit a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: #4da6ff;
  text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 5% 40px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 6% 40px;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
    padding-right: 0;
  }

  .footer-logo {
    height: 85px;
    margin: 0 auto 20px;
  }

  .footer-heading {
    font-size: 1.1rem;
    display: block;
    text-align: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .footer-list a::before {
    display: none;
  }

  .footer-social {
    justify-content: center;
  }

  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .footer-contact {
    align-items: center;
  }

  .contact-item-footer {
    width: 100%;
    max-width: 350px;
    align-items: center;
    text-align: center;
  }

  .contact-item-footer p {
    justify-content: center;
  }

  .artist-name {
    padding-left: 0;
    text-align: center;
  }

  .footer-email {
    justify-content: center;
    max-width: 350px;
    margin: 10px auto 0;
  }

  .footer-bottom {
    padding: 25px 5%;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }
}

/* End of style.css */

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #005cb9, #0077cc);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 92, 185, 0.3);
  z-index: 999;
  text-decoration: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: linear-gradient(135deg, #4da6ff, #66b3ff);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(77, 166, 255, 0.4);
}

@media (max-width: 768px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 20px;
  }
}

/* Loading Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Image hover zoom effect */
.gallery-item img,
.art-card img {
  transition: transform 0.4s ease;
}

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

/* === Loading Spinner Animation === */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* === Sold Gallery Section === */
.sold-section {
  padding: 80px 8%;
  background: linear-gradient(180deg, #000 0%, #0a0a0a 50%, #000 100%);
  position: relative;
  overflow: hidden;
}

.sold-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30, 144, 255, 0.5), transparent);
}

.sold-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeIn 0.8s ease-out;
}

.sold-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, #1e90ff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sold-header p {
  color: #aaa;
  font-size: 1.1rem;
  font-style: italic;
}

.sold-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.sold-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.sold-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 144, 255, 0.2);
}

.sold-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  backdrop-filter: blur(2px);
  transition: opacity 0.3s ease;
}

.sold-card:hover .sold-overlay {
  opacity: 0.9;
}

.sold-badge {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 3px;
  box-shadow: 0 8px 25px rgba(255, 82, 82, 0.4);
  transform: rotate(-12deg);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: rotate(-12deg) scale(1);
  }
  50% {
    transform: rotate(-12deg) scale(1.05);
  }
}

.sold-card .card-image {
  filter: grayscale(50%);
  opacity: 0.6;
}

.sold-card:hover .card-image {
  filter: grayscale(20%);
  opacity: 0.8;
}

.sold-cta {
  text-align: center;
  margin-top: 50px;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
  border-radius: 20px;
  border: 1px solid rgba(30, 144, 255, 0.2);
}

.sold-cta p {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 20px;
  font-weight: 500;
}

.explore-btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #1e90ff 0%, #0066cc 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.3);
}

.explore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(30, 144, 255, 0.5);
  background: linear-gradient(135deg, #0066cc 0%, #1e90ff 100%);
}

/* Admin Panel - Sold Badge */
.sold-badge-admin {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-status.sold {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.product-status.available {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .sold-section {
    padding: 60px 5%;
  }

  .sold-header h2 {
    font-size: 2rem;
  }

  .sold-header p {
    font-size: 1rem;
  }

  .sold-gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }

  .sold-badge {
    font-size: 1.4rem;
    padding: 12px 30px;
  }

  .sold-cta p {
    font-size: 1.1rem;
  }

  .explore-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}
