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

:root {
  --primary-color: #284b63;
  --secondary-color: #f5f1eb;
  --accent-color: #284b63;
  --text-color: #2c1810;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --light-gray: #f8f8f8;
  --border-color: #284b63;
  --shadow: 0 2px 20px rgba(44, 24, 16, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo a {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.nav-logo a:hover {
  color: var(--accent-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
}

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

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 50%, #f5f1eb 100%);
  padding-top: 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-color);
  top: 60%;
  right: 15%;
  animation-delay: -5s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: var(--accent-color);
  bottom: 20%;
  left: 20%;
  animation-delay: -10s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  background: var(--primary-color);
  top: 30%;
  right: 40%;
  animation-delay: -15s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
  }
  50% {
    transform: translateY(-40px) rotate(180deg);
  }
  75% {
    transform: translateY(-20px) rotate(270deg);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 185, 150, 0.2);
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(212, 185, 150, 0.3);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  line-height: 1.1;
}

.title-line {
  display: block;
  animation: fadeInUp 1s ease both;
}

.title-line:nth-child(1) {
  animation-delay: 0.4s;
}

.title-line:nth-child(2) {
  animation-delay: 0.6s;
}

.title-line:nth-child(3) {
  animation-delay: 0.8s;
}

.title-line.highlight {
  background: linear-gradient(135deg, var(--accent-color), #e6c79a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 10px;
}

.title-line.highlight::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), #e6c79a);
  border-radius: 2px;
  animation: expandWidth 1s ease 1.2s both;
}

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

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

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 520px;
  animation: fadeInUp 1s ease 1s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 1s ease 1.4s both;
}

.cta-button.primary {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 10px;
  transition: var(--transition);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.cta-button.primary::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;
}

.cta-button.primary:hover::before {
  left: 100%;
}

.cta-button.primary:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(44, 24, 16, 0.3);
}

.cta-button.secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary-color);
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 10px;
  border: 2px solid var(--primary-color);
  transition: var(--transition);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button.secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(44, 24, 16, 0.2);
}

.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease 0.8s both;
}

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

.hero-image-container {
  position: relative;
  display: inline-block;
}

.image-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44, 24, 16, 0.2);
  transition: var(--transition);
}

/* .image-frame:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 30px 80px rgba(44, 24, 16, 0.3);
} */

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(44, 24, 16, 0.1), transparent);
  pointer-events: none;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.paint-splash {
  position: absolute;
  border-radius: 50%;
  animation: pulse 3s infinite ease-in-out;
}

.splash-1 {
  width: 60px;
  height: 60px;
  background: rgba(212, 185, 150, 0.6);
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}

.splash-2 {
  width: 40px;
  height: 40px;
  background: rgba(44, 24, 16, 0.4);
  bottom: -15px;
  left: -15px;
  animation-delay: 1s;
}

.splash-3 {
  width: 30px;
  height: 30px;
  background: rgba(212, 185, 150, 0.5);
  top: 50%;
  right: -25px;
  animation-delay: 2s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 185, 150, 0.2);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
}

.stat-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image {
  position: relative;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: var(--accent-color);
  margin-top: 10px;
  animation: scroll-bounce 2s infinite;
}

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

/* Page Hero */
.page-hero {
  padding: 150px 0 100px;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--white) 100%
  );
}

.page-title {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Featured Works */
.featured-works {
  padding: 100px 0;
  background: var(--white);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 5rem;
}

.work-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(44, 24, 16, 0.15);
}

.work-image {
  height: 300px;
  overflow: hidden;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.work-info {
  padding: 1.5rem;
}

.work-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.work-info p {
  color: var(--text-light);
  margin: 0;
}

/* Artist Statement */
.artist-statement {
  padding: 100px 0;
  background: var(--light-gray);
}

.statement-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.statement-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.statement-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.text-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--accent-color);
  transition: var(--transition);
}

.text-link:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.statement-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

/* Gallery Styles */
.gallery-section {
  padding: 50px 0 100px;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  color: var(--accent-color);
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-color);
  color: var(--white);
}
.filter-btn:hover,
.filter-btn.active h3 {
  color: var(--white) !important;
}
.work-info h3{
  color: #284b63;
}
.filter-btn:hover
.work-info h3 {
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

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

.item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: var(--transition);
}

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

.item-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.item-overlay p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox-info {
  color: var(--white);
  padding: 1rem;
}

.lightbox-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.lightbox-info p {
  margin: 0;
  opacity: 0.8;
}

.close {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.close:hover {
  opacity: 0.7;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  pointer-events: auto;
}

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

/* About Page Styles */
.about-intro {
  padding: 50px 0 100px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.artistic-process {
  padding: 100px 0;
  background: var(--light-gray);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-5px);
}

.process-icon {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.process-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.process-card p {
  color: var(--text-light);
  margin: 0;
}

.exhibitions {
  padding: 100px 0;
}

.exhibitions-list {
  max-width: 800px;
  margin: 0 auto;
}

.exhibition-item {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
}

.exhibition-item:last-child {
  border-bottom: none;
}

.exhibition-year {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-color);
  min-width: 100px;
}

.exhibition-details h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.exhibition-details p {
  color: var(--text-light);
  margin: 0;
}

.awards {
  padding: 100px 0;
  background: var(--light-gray);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.award-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.award-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.award-item p {
  color: var(--text-light);
  margin: 0;
}

/* Contact Page Styles */
.contact-section {
  padding: 50px 0 100px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.contact-details {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  color: var(--accent-color);
  margin-top: 0.2rem;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-item p {
  color: var(--text-light);
  margin: 0;
}

.social-links h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  color: var(--accent-color);
}

/* Contact Form */
.contact-form {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 15px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.submit-button {
  background: var(--primary-color);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
}

.submit-button:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

/* Map Section */
.map-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.map-container {
  margin-top: 2rem;
}

.map-placeholder {
  height: 400px;
  background: var(--white);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

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

.map-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.map-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.map-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--accent-color);
  transition: var(--transition);
}

.map-link:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: var(--transition);
    padding-top: 2rem;
    box-shadow: var(--shadow);
  }

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

  .nav-menu li {
    margin: 1rem 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-item {
    padding: 0.8rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

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

  .statement-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .journey-timeline::before {
    left: 30px;
  }

  .timeline-item {
    padding-left: 80px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .timeline-marker {
    left: 30px !important;
    transform: translateX(-50%);
  }

  .timeline-content {
    margin-left: 0;
    margin-right: 0;
  }

  .timeline-content::before {
    left: -20px !important;
    right: auto !important;
    border-right-color: var(--white) !important;
    border-left-color: transparent !important;
  }

  .gallery-filters {
    justify-content: center;
  }

  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .exhibition-item {
    flex-direction: column;
    gap: 1rem;
  }

  .exhibition-year {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 0.8rem;
  }

  .cta-button.primary,
  .cta-button.secondary {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .stat-item {
    width: 120px;
  }

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

  .works-grid {
    grid-template-columns: 1fr;
  }

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

  .process-grid {
    grid-template-columns: 1fr;
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }

  .gallery-filters {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

.video-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  transition: 0.3s;
}
.video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(70%) contrast(105%) blur(8px);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  font-size: 2rem;
  font-weight: bold;
}

.video-section:hover .video-overlay {
  display: none;
}

.project-item{
  width: 100px;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  border-radius: 10px;
  background-image: url('../public/image00007.jpeg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.d-flex{
  display: flex;
}
.project-container{
  margin: auto;
  margin-bottom: 100px;
}
.project-container .work-card{
  margin-right: 20px;
}
.project-container .work-image{
  height: 100px;
}
.projects{
  margin: auto;
  margin-bottom: 50px;
}

.projects .work-info{
  padding: 0.5rem;
}
.projects .work-image{
  height: 200px;
}
.all-btn{
  font-size: 30px;
  font-family: "Playfair Display", serif;
  border: 2px solid #284b63;
}
.hr{
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), #e6c79a);
  margin-bottom: 50px;
}
.photos-grid{
  margin-top: 50px;
}
.work-info h3{
  padding-left: 7px;
  font-size: 1.3rem;
}