/* Base Styles */
:root {
  --primary-color: #e91e63;
  --secondary-color: #673ab7;
  --dark-bg: #000000;
  --hero-bg: rgba(38, 4, 54, 0.75); /* Very subtle purple-black */
  --light-text: #ffffff;
  --gray-accent: #333333;
  --transition-speed: 0.3s;
  --status-available: #4CAF50;
  --status-sold: #f44336;
  --status-gifted: #2196F3;
}

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

html {
  scroll-behavior: smooth;
}

/* Brush stroke animations */
@keyframes brushStrokeMain {
  0% { opacity: 0.2; }
  50% { opacity: 0.3; }
  100% { opacity: 0.2; }
}

@keyframes brushStrokeSecondary {
  0% { opacity: 0.15; }
  50% { opacity: 0.25; }
  100% { opacity: 0.15; }
}

body {
  font-family: 'Cormorant Garamond', serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 300;
  position: relative;
}

/* Main background brush strokes */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: 
    /* Texture overlay */
    url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"),
    /* Dark pastel brush strokes - first layer */
    radial-gradient(ellipse at 10% 20%, rgba(70, 40, 80, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 15%, rgba(40, 60, 90, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 40%, rgba(60, 30, 70, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 60%, rgba(50, 70, 90, 0.25) 0%, transparent 45%);
  animation: brushStrokeMain 8s ease-in-out infinite;
}

/* Secondary animated brush strokes */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: 
    /* Dark pastel brush strokes - second layer */
    radial-gradient(ellipse at 20% 70%, rgba(70, 50, 80, 0.25) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 85%, rgba(40, 50, 70, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 40%, rgba(60, 40, 80, 0.2) 0%, transparent 45%),
    radial-gradient(ellipse at 35% 90%, rgba(50, 60, 80, 0.15) 0%, transparent 55%);
  animation: brushStrokeSecondary 12s ease-in-out infinite;
  animation-delay: 2s;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

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

section {
  padding: 80px 0;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

#header {
  padding: 0;
  justify-content: center;
}

#gallery {
  padding-top: 120px;
  min-height: 100vh;
  justify-content: flex-start;
}

#about, #contact, #social {
  min-height: auto;
  padding: 100px 5%;
}

#social {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-title {
  font-family: 'Indie Flower', cursive;
  font-size: 3rem;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

/* Navbar Styles */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  transition: padding var(--transition-speed), background-color var(--transition-speed);
}

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

.nav-link {
  position: relative;
  font-size: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  transition: color var(--transition-speed);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 5px;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transition: width var(--transition-speed);
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--light-text);
  transition: all var(--transition-speed);
  border-radius: 3px;
}

/* Header Styles */

#header {
  position: relative;
  height: 100vh;
  background: var(--hero-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

#header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10,0,16,0.7); /* Darker purple-black overlay */
  background-image: 
    /* Texture overlay */
    url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"),
    /* Large brush strokes with animation - using more pastel tones */
    radial-gradient(circle at 20% 30%, rgba(90, 50, 110, 0.25) 0%, transparent 70%),
    radial-gradient(circle at 70% 65%, rgba(110, 60, 140, 0.2) 0%, transparent 60%),
    /* Medium brush strokes with animation */
    radial-gradient(ellipse at 40% 15%, rgba(70, 40, 90, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(100, 50, 130, 0.25) 0%, transparent 40%),
    /* Small brush strokes with animation */
    radial-gradient(ellipse at 85% 25%, rgba(80, 45, 100, 0.35) 0%, transparent 30%),
    radial-gradient(ellipse at 30% 50%, rgba(60, 35, 80, 0.3) 0%, transparent 35%),
    radial-gradient(ellipse at 80% 40%, rgba(50, 35, 70, 0.35) 0%, transparent 25%),
    /* Additional textured brush strokes */
    radial-gradient(ellipse at 15% 75%, rgba(70, 40, 90, 0.25) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 85%, rgba(90, 50, 110, 0.2) 0%, transparent 45%);
  z-index: 1;
  animation: brushStrokeMain 8s ease-in-out infinite;
}

/* Additional brush stroke layers with different animations */
#header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(ellipse at 25% 40%, rgba(90, 50, 120, 0.25) 0%, transparent 35%),
    radial-gradient(ellipse at 65% 25%, rgba(70, 45, 90, 0.2) 0%, transparent 40%),
    radial-gradient(ellipse at 75% 55%, rgba(60, 35, 80, 0.15) 0%, transparent 45%);
  z-index: 1;
  animation: brushStrokeSecondary 12s ease-in-out infinite;
  animation-delay: 2s;
}

.header-content {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.title-text {
  font-family: 'Indie Flower', cursive;
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
  color: var(--light-text);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7), 0 4px 15px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 3;
}

.subtext {
  font-size: 1.5rem;
  font-family: 'Indie Flower', cursive;
  font-weight: 300;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 3;
}

.subtext:last-of-type {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

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

#arrow-animation {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-30px) translateX(-50%); }
  60% { transform: translateY(-15px) translateX(-50%); }
}

/* Gallery Styles */
#gallery {
  background-color: transparent;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 50px;
}

/* About Section Styles */
#about {
  background-color: rgba(51, 51, 51, 0.7);
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(ellipse at 30% 30%, rgba(80, 50, 90, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(60, 40, 80, 0.25) 0%, transparent 45%);
  z-index: -1;
}

.about-container {
  max-width: 800px;
  text-align: center;
  padding: 0 20px;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-text.scrolled {
  opacity: 1;
  transform: translateY(0);
}

/* Contact Section Styles */
#contact {
  background-color: rgba(0, 0, 0, 0.7);
  position: relative;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(ellipse at 20% 40%, rgba(70, 40, 100, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(50, 70, 90, 0.2) 0%, transparent 50%);
  z-index: -1;
}

.contact-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-form {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  background-color: rgba(30, 30, 30, 0.6);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form.scrolled {
  opacity: 1;
  transform: translateX(0);
}

.form-group {
  margin-bottom: 1.8rem;
  position: relative;
}

.input-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.form-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  opacity: 0.7;
  transition: opacity var(--transition-speed);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}

.user-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
}

.email-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.message-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z'/%3E%3C/svg%3E");
  top: 20px;
  transform: none;
}

.subject-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z'/%3E%3C/svg%3E");
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 15px 15px 15px 50px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--light-text);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  transition: all var(--transition-speed);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

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

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
  cursor: pointer;
}

.contact-form select option {
  background-color: var(--dark-bg);
  color: var(--light-text);
}

.form-submit {
  text-align: center;
  margin-top: 10px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all var(--transition-speed);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.submit-btn:hover::before {
  left: 100%;
}

.btn-text {
  margin-right: 10px;
}

.btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

.submit-btn:disabled {
  background: var(--gray-accent);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Footer/Social Styles */
#social {
  background-color: rgba(51, 51, 51, 0.8);
  text-align: center;
  position: relative;
}

#social::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(ellipse at 25% 50%, rgba(60, 40, 80, 0.2) 0%, transparent 40%),
    radial-gradient(ellipse at 75% 50%, rgba(70, 50, 90, 0.15) 0%, transparent 45%);
  z-index: -1;
}

.social-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.social-links-wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.social-link svg {
  width: 25px;
  height: 25px;
  fill: var(--light-text);
  transition: fill var(--transition-speed), transform var(--transition-speed);
}

.social-link:hover svg {
  fill: var(--primary-color);
  transform: scale(1.1);
}

#social p {
  font-size: 0.9rem;
  opacity: 0.8;
  color: rgba(255, 255, 255, 0.7);
}

/* Filter Button Styles */
.filter-buttons {
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.filter-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--light-text);
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.filter-btn.active {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-color: transparent;
  color: white;
  font-weight: 500;
}

/* Art Card Styles */
.art-card {
  background-color: var(--gray-accent);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  position: relative;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease, opacity 0.5s ease-out;
  opacity: 0;
  transform: translateY(20px);
}

.art-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.art-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

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

.art-title {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--light-text);
  font-weight: 500;
}

.art-subtitle {
  font-size: 0.85rem;
  opacity: 0.8;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* Status Badge Styles */
.art-status {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 5px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.status-available { background-color: var(--status-available); }
.status-sold { background-color: var(--status-sold); }
.status-gifted { background-color: var(--status-gifted); }

/* "No Results" Message */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 1.1rem;
  padding: 50px 20px;
  color: rgba(255, 255, 255, 0.6);
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  background-color: var(--dark-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform var(--transition-speed) ease;
}

.lightbox[style*="opacity: 1"] .lightbox-content {
  transform: scale(1);
}

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

.lightbox-info {
  padding: 15px 20px;
  background-color: var(--gray-accent);
  text-align: center;
}

.lightbox-info h2 {
  margin-bottom: 8px;
  font-size: 1.4rem;
  color: var(--light-text);
}

.lightbox-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.lightbox-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 30px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  z-index: 2001;
  line-height: 1;
  transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.lightbox-close:hover {
  color: var(--light-text);
  transform: scale(1.1);
}

/* Loading indicator styles */
.loading-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

.spinner {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.fade-in {
  animation: fadeIn 0.5s ease-in forwards;
}

/* Responsive Styles */
@media (max-width: 768px) {
  #navbar {
    padding: 15px 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    max-width: 280px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.5s ease;
    z-index: 999;
    gap: 35px;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links .nav-link {
    font-size: 1.2rem;
    color: var(--light-text);
  }

  .nav-links .nav-link::after {
    background: var(--light-text);
  }

  .menu-toggle {
    display: flex;
    z-index: 1000;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .title-text { 
    font-size: 3.5rem; 
  }

  .subtext { 
    font-size: 1.2rem; 
  }

  .section-title { 
    font-size: 2.2rem; 
  }

  .gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    width: 95%;
    gap: 20px;
  }

  .art-card img { 
    height: 200px; 
  }

  .art-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }

  .about-container, .contact-container { 
    max-width: 90%; 
  }

  .lightbox-content img { 
    max-height: 60vh; 
  }

  .lightbox-info h2 { 
    font-size: 1.2rem; 
  }

  .lightbox-info p { 
    font-size: 0.85rem; 
  }
}

@media (max-width: 480px) {
  .title-text { 
    font-size: 2.8rem; 
  }

  .subtext { 
    font-size: 1rem; 
  }

  .section-title { 
    font-size: 1.8rem; 
  }

  .filter-buttons { 
    gap: 10px; 
  }

  .filter-btn { 
    padding: 6px 15px; 
    font-size: 0.8rem; 
  }

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

  .art-card img { 
    height: 250px; 
  }

  .art-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .submit-btn { 
    width: 100%; 
    text-align: center; 
    font-size: 1rem; 
  }

  #social p { 
    font-size: 0.8rem; 
  }
}
