/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

/* Navigation */
nav {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0 30px;
}

nav ul li a {
  color: #333;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #8B4513;
}

/* Header Styles */
header {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

header h1 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 10px;
  color: #2c2c2c;
  letter-spacing: 2px;
  animation: fadeInScale 1.5s ease-out;
}

.typewriter {
  overflow: hidden;
  border-right: 3px solid #8B4513;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 2px;
  animation: typing 3s steps(14, end), blink-caret 0.75s step-end infinite;
  max-width: 100%;
  display: inline-block;
}

@media (max-width: 768px) {
  .typewriter {
    letter-spacing: 1px;
    font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
  }
}

@media (max-width: 480px) {
  .typewriter {
    letter-spacing: 0.5px;
    font-size: clamp(1.5rem, 10vw, 2rem) !important;
  }
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: #8B4513; }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

header p {
  font-size: 1.1rem;
  color: #666;
  font-style: italic;
}

/* Hero Section */
.hero-section {
  padding: 60px 20px;
}

.hero-section h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 200;
  margin-bottom: 20px;
}

.subtitle {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #8B4513;
  margin-bottom: 15px;
  font-weight: 400;
}

.tagline {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  height: clamp(50vh, 70vh, 80vh);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(139,69,19,0.3));
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: slideInFromLeft 1.2s ease-out;
}

.hero-section .typewriter {
  color: #2c2c2c;
  text-shadow: none;
  display: inline-block;
  width: auto;
  max-width: fit-content;
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 40px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  padding: 0 10px;
}

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

.btn-primary, .btn-secondary {
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: #8B4513;
  color: #fff;
}

.btn-primary:hover {
  background: #654321;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: #fff;
  color: #8B4513;
  transform: translateY(-2px);
}

/* Artist Intro Section */
.artist-intro {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff 0%, #f9f6f1 100%);
  position: relative;
  overflow: hidden;
}

.artist-intro::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(45deg, rgba(139,69,19,0.03) 0%, transparent 70%);
  transform: rotate(15deg);
  pointer-events: none;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.title-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.animated-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: #2c2c2c;
  line-height: 1.2;
  margin: 0;
  background: linear-gradient(45deg, #2c2c2c, #8B4513);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.location-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(145deg, #DAA520, #8B4513, #654321);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(139,69,19,0.4), 
              inset 0 1px 2px rgba(255,255,255,0.2),
              inset 0 -1px 2px rgba(0,0,0,0.2);
  animation: float 3s ease-in-out infinite, locationGlow 2s ease-in-out infinite alternate;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}

.location-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s linear infinite;
}

.location-badge:hover {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 12px 35px rgba(139,69,19,0.6), 
              inset 0 3px 6px rgba(255,255,255,0.3),
              inset 0 -3px 6px rgba(0,0,0,0.3);
}

.location-icon {
  font-size: 1rem;
  animation: bounce 2s ease-in-out infinite;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.location-text {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.intro-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 50px;
  position: relative;
  padding-left: 20px;
}

.intro-description::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #8B4513, #654321);
  border-radius: 2px;
}

.stats {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B4513, #654321);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 8px 25px rgba(139,69,19,0.3);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-circle::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  animation: shimmer 2s linear infinite;
}

.stat-circle:hover {
  transform: scale(1.1) rotate(5deg);
}

.stat-item .number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  z-index: 1;
  position: relative;
}

.stat-item .label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.intro-image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.image-frame:hover {
  transform: translateY(-10px) rotate(2deg);
}

.image-frame img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.image-frame:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.image-frame:hover .image-overlay {
  transform: translateY(0);
}

.overlay-text {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
}

@keyframes titleGlow {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.2); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Animated Art Background */
.art-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.floating-art {
  position: absolute;
  opacity: 0.3;
  animation: floatArt 20s linear infinite;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border: 2px solid rgba(139,69,19,0.3);
}

.art-1 {
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: url('images/Holy Dream_1.jpg') center/cover;
  border-radius: 50%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.art-2 {
  top: 60%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: url('images/Nava Durga.jpg') center/cover;
  border-radius: 20px;
  animation-delay: -5s;
  animation-duration: 30s;
  transform: rotate(45deg);
}

.art-3 {
  top: 30%;
  left: 80%;
  width: 120px;
  height: 120px;
  background: url('images/Dashamahavidya_Anwesha Mallik.jpg') center/cover;
  border-radius: 15px;
  animation-delay: -10s;
  animation-duration: 35s;
}

.art-4 {
  top: 80%;
  left: 70%;
  width: 100px;
  height: 100px;
  background: url('images/IMG-20220618-WA0011.jpg') center/cover;
  border-radius: 50%;
  animation-delay: -15s;
  animation-duration: 28s;
}

.art-5 {
  top: 5%;
  right: 30%;
  width: 130px;
  height: 130px;
  background: url('images/Chaturveda_Anwesha Mallik.jpg') center/cover;
  border-radius: 25px;
  animation-delay: -20s;
  animation-duration: 32s;
  transform: rotate(-30deg);
}

@keyframes floatArt {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateX(50px) translateY(-30px) rotate(90deg) scale(1.1);
  }
  50% {
    transform: translateX(-30px) translateY(40px) rotate(180deg) scale(0.9);
  }
  75% {
    transform: translateX(40px) translateY(-20px) rotate(270deg) scale(1.05);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(360deg) scale(1);
  }
}

@media (max-width: 768px) {
  .floating-art {
    opacity: 0.05;
  }
  
  .art-1, .art-2, .art-3, .art-4, .art-5 {
    width: 60px;
    height: 60px;
  }
}

/* Artistic Mediums Section */
.artistic-mediums {
  padding: 100px 0;
  background: #f8f8f8;
}

.artistic-mediums h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 60px;
  color: #2c2c2c;
}

.mediums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.medium-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.medium-card:hover {
  transform: translateY(-10px);
}

.medium-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.medium-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #8B4513;
}

.medium-card p {
  color: #666;
  line-height: 1.6;
}

/* Recent Achievements Section */
.recent-achievements {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f5f0 0%, #ede4d3 100%);
  color: #2c2c2c;
  position: relative;
  overflow: hidden;
}

.recent-achievements::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%238B4513" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
}

.achievements-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.recent-achievements h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 60px;
  background: linear-gradient(45deg, #8B4513, #654321);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.recognition-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: start;
}

@media (max-width: 768px) {
  .recognition-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.recognition-card {
  background: linear-gradient(145deg, #fff, #f9f6f1);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid #e0d5c7;
  box-shadow: 0 10px 30px rgba(139,69,19,0.1);
}

.recognition-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(139,69,19,0.3);
  border-color: #8B4513;
}

.recognition-card.featured {
  background: linear-gradient(145deg, #8B4513, #654321);
  transform: scale(1.05);
  color: #fff;
}

.recognition-card.featured:hover {
  transform: translateY(-15px) scale(1.07);
}

.award-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.award-year {
  display: inline-block;
  background: rgba(139,69,19,0.2);
  color: #8B4513;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  border: 1px solid #8B4513;
}

.recognition-card.featured .award-year {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-color: #fff;
}

.recognition-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 500;
  color: #2c2c2c;
}

.recognition-card.featured h3 {
  color: #fff;
}

.recognition-card p {
  color: #666;
  line-height: 1.5;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.recognition-card.featured p {
  color: #f0f0f0;
}

.recognition-card .venue {
  display: block;
  color: #8B4513;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 10px;
}

.recognition-card.featured .venue {
  color: #fff;
  opacity: 0.9;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Artistic Elements */
.artistic-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.03;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="1" stitchTiles="stitch"/><feColorMatrix values="0 0 0 0 0.55 0 0 0 0 0.27 0 0 0 0 0.07 0 0 0 1 0"/></filter></defs><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>') repeat;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(139,69,19,0.05) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(139,69,19,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Intro Section */
.intro-section {
  padding: 80px 0;
  text-align: center;
  background: #fff;
  margin: 40px 0;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 30px;
  color: #2c2c2c;
}

.intro-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #555;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: #8B4513;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #654321;
}

/* Featured Works */
.featured-works {
  padding: 80px 0;
  position: relative;
}

.featured-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(139,69,19,0.02) 50%, transparent 70%);
  transform: rotate(-3deg);
  pointer-events: none;
}

.featured-works h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 60px;
  color: #2c2c2c;
}

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

@media (max-width: 768px) {
  .works-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.work-item:hover {
  transform: translateY(-10px);
}

.work-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.work-item:hover img {
  transform: scale(1.05);
}

.work-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.work-overlay h3 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.work-overlay p {
  color: #ccc;
  font-style: italic;
}

.work-item h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: #2c2c2c;
}

.work-item p {
  color: #666;
  font-style: italic;
}

.view-all {
  text-align: center;
}

.view-gallery-btn {
  display: inline-block;
  padding: 12px 25px;
  border: 2px solid #8B4513;
  color: #8B4513;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.view-gallery-btn:hover {
  background: #8B4513;
  color: #fff;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.filter-btn {
  padding: 12px 30px;
  background: transparent;
  border: 2px solid #8B4513;
  color: #8B4513;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: #8B4513;
  color: #fff;
}

.filter-btn.active {
  background: #8B4513;
  color: #fff;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  padding: 40px 0;
}

.artwork-item {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.artwork-item:hover {
  transform: translateY(-5px);
}

.artwork-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.artwork-info {
  padding: 25px;
}

.artwork-info h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: #2c2c2c;
}

.medium {
  color: #666;
  font-style: italic;
  margin-bottom: 15px;
}

.price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #8B4513;
  margin-bottom: 20px;
}

.inquire-btn {
  background: linear-gradient(45deg, #8B4513, #654321);
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 0.5px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139,69,19,0.3);
  font-weight: 600;
}

.inquire-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: left 0.5s;
}

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

.inquire-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139,69,19,0.4);
  background: linear-gradient(45deg, #654321, #8B4513);
}

.inquire-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(139,69,19,0.3);
}

/* About Page */
.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: 60px 0;
  align-items: start;
}

.artist-photo img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.bio-text h2 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 25px;
  color: #2c2c2c;
}

.bio-text h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 35px 0 15px 0;
  color: #8B4513;
}

.bio-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

.bio-text ul {
  list-style: none;
  padding-left: 0;
}

.bio-text li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: #555;
}

/* Contact Page */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 0;
}

.contact-info h2,
.contact-form h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 30px;
  color: #2c2c2c;
}

.info-item {
  margin-bottom: 30px;
}

.info-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #8B4513;
}

.info-item p {
  color: #555;
  line-height: 1.6;
}

/* Form Styles */
.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8B4513;
}

.submit-btn {
  background: #8B4513;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #654321;
}

/* Email Fallback Modal */
.email-fallback-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.email-fallback-modal .modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  max-width: 500px;
  margin: 20px;
  text-align: center;
}

.email-fallback-modal h3 {
  color: #8B4513;
  margin-bottom: 20px;
}

.email-fallback-modal p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.copy-btn {
  background: #8B4513;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin: 5px;
}

.copy-btn:hover {
  background: #654321;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 20px;
  background: #2c2c2c;
  color: #fff;
  margin-top: 80px;
}

/* Timeline Section */
.journey-timeline {
  padding: 80px 0;
  background: #f8f8f8;
}

.journey-timeline h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 60px;
  color: #2c2c2c;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.journey-timeline h2.animate {
  opacity: 1;
  transform: translateY(0);
}

.timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #8B4513;
  transform: translateX(-50%);
  animation: drawLine 2s ease-in-out;
}

.timeline-item {
  display: flex;
  margin-bottom: 60px;
  position: relative;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.timeline-item.animate {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item:nth-child(1).animate { transition-delay: 0.1s; }
.timeline-item:nth-child(2).animate { transition-delay: 0.2s; }
.timeline-item:nth-child(3).animate { transition-delay: 0.3s; }
.timeline-item:nth-child(4).animate { transition-delay: 0.4s; }

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  width: 20px;
  height: 20px;
  background: #8B4513;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  border: 4px solid #fff;
  box-shadow: 0 0 0 4px #8B4513;
  animation: pulse 2s infinite;
}

.timeline-content {
  width: 45%;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 55%;
}

.timeline-content h3 {
  font-size: 1.5rem;
  color: #8B4513;
  margin-bottom: 20px;
  font-weight: 500;
}

.timeline-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.detail-item .year {
  background: #8B4513;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 80px;
  text-align: center;
}

.detail-item p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}

/* Artistic Philosophy Section */
.artistic-philosophy {
  padding: 80px 0;
  background: #fff;
}

.philosophy-content h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 60px;
  color: #2c2c2c;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.philosophy-item {
  text-align: center;
  padding: 30px 20px;
  background: #f8f8f8;
  border-radius: 15px;
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(30px);
}

.philosophy-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.philosophy-item:nth-child(1).animate { transition-delay: 0.1s; }
.philosophy-item:nth-child(2).animate { transition-delay: 0.2s; }
.philosophy-item:nth-child(3).animate { transition-delay: 0.3s; }
.philosophy-item:nth-child(4).animate { transition-delay: 0.4s; }

.philosophy-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.philosophy-item .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

.philosophy-item h3 {
  font-size: 1.3rem;
  color: #8B4513;
  margin-bottom: 15px;
  font-weight: 500;
}

.philosophy-item p {
  color: #666;
  line-height: 1.6;
}

/* Exhibition Gallery Section */
.exhibition-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

.exhibition-item {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

.exhibition-item:hover {
  transform: translateY(-5px);
}

.exhibition-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.exhibition-info {
  padding: 20px;
}

.exhibition-info h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: #2c2c2c;
}

.exhibition-info .venue {
  color: #8B4513;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Sold Gallery Section */
.sold-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  padding: 40px 0;
}

.sold-item {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

.sold-item:hover {
  transform: translateY(-5px);
}

.sold-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.sold-info {
  padding: 25px;
}

.sold-info h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: #2c2c2c;
}

.sold-info .medium {
  color: #666;
  font-style: italic;
  margin-bottom: 10px;
}

.sold-info .status {
  font-size: 1rem;
  font-weight: 600;
  color: #8B4513;
  margin-bottom: 8px;
}

.sold-info .year {
  color: #999;
  font-size: 0.9rem;
}

/* Latest Works Section */
.latest-works {
  padding: 80px 0;
  background: #f8f8f8;
}

.latest-works h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 60px;
  color: #2c2c2c;
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.latest-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(30px);
}

.latest-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.latest-item:nth-child(1).animate { transition-delay: 0.1s; }
.latest-item:nth-child(2).animate { transition-delay: 0.2s; }
.latest-item:nth-child(3).animate { transition-delay: 0.3s; }
.latest-item:nth-child(4).animate { transition-delay: 0.4s; }
.latest-item:nth-child(5).animate { transition-delay: 0.5s; }
.latest-item:nth-child(6).animate { transition-delay: 0.6s; }

.latest-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.latest-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.latest-item h4 {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 20px 20px 10px 20px;
  color: #2c2c2c;
}

.latest-item p {
  color: #8B4513;
  font-style: italic;
  margin: 0 20px 20px 20px;
  font-weight: 500;
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes drawLine {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.1);
  }
}

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

/* Image Popup Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.close:hover {
  color: #ccc;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: none;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  z-index: 1001;
}

.nav-btn:hover {
  background: rgba(255,255,255,0.4);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Navigation */
  nav {
    padding: 10px 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 10px;
    padding: 0 10px;
  }
  
  nav ul li {
    margin: 0;
  }
  
  nav ul li a {
    font-size: 14px;
    padding: 8px 0;
    display: block;
  }
  
  /* Hero Section */
  .hero-section {
    padding: 40px 15px;
  }
  
  .hero-banner {
    height: 60vh;
  }
  
  .hero-content {
    padding: 0 15px;
  }
  
  /* Artist Intro */
  .artist-intro {
    padding: 60px 0;
  }
  
  .title-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }
  
  .intro-description {
    font-size: 1.1rem;
    padding-left: 15px;
    margin-bottom: 30px;
  }
  
  .stats {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .stat-circle {
    width: 70px;
    height: 70px;
  }
  
  .stat-item .number {
    font-size: 1.5rem;
  }
  
  /* Featured Works */
  .featured-works {
    padding: 60px 0;
  }
  
  .section-title-fancy {
    font-size: 1.6rem !important;
    padding: 0 10px;
  }
  
  .section-title-fancy::after {
    width: 60px;
    height: 2px;
  }
  
  .work-item img {
    height: 250px !important;
    object-fit: cover !important;
    width: 100% !important;
  }
  
  .work-item {
    border-radius: 10px;
  }
  
  /* Recent Achievements */
  .recent-achievements {
    padding: 60px 0;
  }
  
  .achievements-title {
    font-size: 1.6rem !important;
  }
  
  .recognition-card {
    padding: 30px 20px;
  }
  
  .recognition-card.featured {
    transform: scale(1);
  }
  
  .recognition-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
  }
  
  /* Hero Buttons */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn-primary, .btn-secondary {
    width: 200px;
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cta-button {
    width: 160px;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  /* General Grid Layouts */
  .gallery-grid,
  .latest-grid,
  .philosophy-grid,
  .mediums-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Timeline */
  .timeline::before {
    left: 30px;
  }
  
  .timeline-marker {
    left: 30px;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
    margin-right: 0;
  }
  
  .timeline-content {
    padding: 20px;
  }
  
  .detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  /* About and Contact */
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Floating Art */
  .floating-art {
    opacity: 0.03;
  }
  
  .art-1, .art-2, .art-3, .art-4, .art-5 {
    width: 50px;
    height: 50px;
  }
  
  /* Modal */
  .modal-content {
    max-width: 95%;
    max-height: 80%;
  }
  
  .close {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }
  
  .nav-btn {
    font-size: 20px;
    padding: 6px 10px;
  }
  
  /* Spacing Adjustments */
  main {
    padding: 0 15px;
  }
  
  .achievements-content,
  .intro-grid {
    padding: 0 15px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .hero-section {
    padding: 30px 10px;
  }
  
  .hero-content {
    padding: 0 10px;
  }
  
  .cta-button {
    width: 200px;
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .btn-primary, .btn-secondary {
    width: 180px;
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .stats {
    gap: 15px;
  }
  
  .stat-circle {
    width: 60px;
    height: 60px;
  }
  
  .stat-item .number {
    font-size: 1.3rem;
  }
  
  .recognition-card {
    padding: 25px 15px;
  }
  
  .work-item img {
    height: 250px;
  }
  
  main {
    padding: 0 10px;
  }
}
/* Enhanced Catchy Styles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(139,69,19,0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(139,69,19,0.08) 0%, transparent 50%);
  animation: particleFloat 8s ease-in-out infinite;
}

.glowing-text {
  text-shadow: 0 0 20px rgba(139,69,19,0.3), 0 0 40px rgba(139,69,19,0.2);
  animation: glow 3s ease-in-out infinite alternate;
}

.pulse-text {
  animation: pulse-glow 2s ease-in-out infinite;
}

.fade-in {
  animation: fadeInUp 1.5s ease-out 0.5s both;
}

.hero-cta {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.4s ease;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.primary-glow {
  background: linear-gradient(45deg, #8B4513, #654321);
  color: #fff;
  box-shadow: 0 8px 25px rgba(139,69,19,0.4);
}

.primary-glow:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(139,69,19,0.6);
}

.secondary-glow {
  background: transparent;
  color: #8B4513;
  border: 2px solid #8B4513;
  box-shadow: 0 8px 25px rgba(139,69,19,0.2);
}

.secondary-glow:hover {
  background: #8B4513;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(139,69,19,0.4);
}

.hero-title-animated {
  animation: slideInFromTop 1.2s ease-out;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-description-animated {
  animation: slideInFromBottom 1.2s ease-out 0.3s both;
  font-size: 1.4rem;
}

.gradient-text {
  background: linear-gradient(45deg, #8B4513, #DAA520, #8B4513);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-fancy {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 15px;
  color: #2c2c2c;
  position: relative;
  display: inline-block;
}

.section-title-fancy::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(45deg, #8B4513, #DAA520);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  font-style: italic;
}

.achievements-title {
  background: linear-gradient(45deg, #8B4513, #DAA520, #8B4513);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}

.achievements-subtitle {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
  font-style: italic;
}

/* Keyframe Animations */
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes glow {
  0% { text-shadow: 0 0 20px rgba(139,69,19,0.3), 0 0 40px rgba(139,69,19,0.2); }
  100% { text-shadow: 0 0 30px rgba(139,69,19,0.5), 0 0 60px rgba(139,69,19,0.3); }
}

@keyframes pulse-glow {
  0%, 100% { 
    transform: scale(1);
    color: #8B4513;
  }
  50% { 
    transform: scale(1.05);
    color: #DAA520;
  }
}

@keyframes slideInFromTop {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Mobile Responsive for Catchy Elements */
@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 250px;
    text-align: center;
  }
  
  .section-title-fancy {
    font-size: 1.8rem;
  }
  
  .glowing-text {
    font-size: 2.5rem;
  }
}
@keyframes locationGlow {
  0% { 
    box-shadow: 0 8px 25px rgba(139,69,19,0.4), 
                inset 0 2px 4px rgba(255,255,255,0.2),
                inset 0 -2px 4px rgba(0,0,0,0.2);
  }
  100% { 
    box-shadow: 0 12px 35px rgba(218,165,32,0.5), 
                inset 0 3px 6px rgba(255,255,255,0.3),
                inset 0 -3px 6px rgba(0,0,0,0.3);
  }
}

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