:root {
  --accent-color: #a89080;
  --accent-color-hover: #bfa896;
  --accent-color-dark: #8d7567;
  --accent-color-transparent: rgba(168, 144, 128, 0.1);
  --accent-color-transparent-light: rgba(168, 144, 128, 0.05);
  --accent-color-border: rgba(168, 144, 128, 0.2);
  --accent-color-border-hover: rgba(168, 144, 128, 0.4);
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: #111;
  color: #fff;
  font-family: 'Outfit', Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}
.video-background iframe {
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.logo {
  width: 180px;
  height: auto;
  /* Remove background and border for cleaner look */
  background: none;
  border-radius: 0;
  padding: 0;
}

.about-me {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 32px;
}

.about-me h2 {
  color: var(--accent-color);
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 60px;
  text-shadow: 0 2px 8px #000;
}

/* About Intro Section */
.about-intro {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(168, 144, 128, 0.15);
}

.about-profile {
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-link {
  display: inline-block;
  position: relative;
}

.profile-link::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.profile-link:hover::after {
  opacity: 1;
  inset: -12px;
}

.about-profile-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-color);
  box-shadow: 0 8px 32px rgba(168, 144, 128, 0.3);
  transition: all 0.3s ease;
}

.profile-link:hover .about-profile-image {
  transform: scale(1.05);
  box-shadow: 0 12px 48px rgba(168, 144, 128, 0.5);
}

.about-description h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.about-title {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 20px 0;
}

.about-bio {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* CV Grid */
.cv-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

.section-header {
  color: var(--accent-color);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(168, 144, 128, 0.3);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-color) 0%, rgba(168, 144, 128, 0.3) 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

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

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--accent-color);
  border: 3px solid #111;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(168, 144, 128, 0.2);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  background: var(--accent-color-hover);
  box-shadow: 0 0 0 6px rgba(168, 144, 128, 0.3);
  transform: scale(1.2);
}

.timeline-content {
  background: rgba(0, 0, 0, 0.3);
  padding: 24px;
  border-radius: 8px;
  border-left: 3px solid rgba(168, 144, 128, 0.3);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  background: rgba(0, 0, 0, 0.4);
  border-left-color: var(--accent-color);
  transform: translateX(4px);
}

.timeline-date {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.timeline-content h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.timeline-company {
  color: #aaa;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 12px 0;
}

.timeline-desc {
  color: #ccc;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* Skills Box */
.skills-box {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(168, 144, 128, 0.15);
  position: sticky;
  top: 100px;
}

.skill-category {
  margin-bottom: 32px;
}

.skill-category:last-child {
  margin-bottom: 0;
}

.skill-category h4 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(168, 144, 128, 0.2);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  background: rgba(168, 144, 128, 0.15);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(168, 144, 128, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.skill-tag:hover {
  background: rgba(168, 144, 128, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 144, 128, 0.2);
  color: var(--accent-color-hover);
}

/* About Me Responsive */
@media (max-width: 968px) {
  .cv-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .skills-box {
    position: static;
  }
}

@media (max-width: 768px) {
  .about-me h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 24px;
    text-align: center;
  }

  .about-profile-image {
    width: 150px;
    height: 150px;
  }

  .about-description h3 {
    font-size: 1.6rem;
  }

  .about-title {
    font-size: 1.1rem;
  }

  .about-bio {
    font-size: 0.95rem;
    text-align: left;
  }

  .timeline {
    padding-left: 32px;
  }

  .timeline-dot {
    left: -26px;
    width: 12px;
    height: 12px;
  }

  .timeline-content {
    padding: 20px;
  }

  .timeline-content h4 {
    font-size: 1.05rem;
  }

  .skills-box {
    padding: 24px;
  }

  .skill-category {
    margin-bottom: 24px;
  }

  .skill-tag {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

.gallery {
  max-width: 900px;
  margin: 40px auto;
  /* Remove background and shadow for minimal look */
  background: none;
  border-radius: 0;
  padding: 32px 0 0 0;
  box-shadow: none;
}
.gallery h2 {
  color: var(--accent-color);
  margin-bottom: 24px;
  text-align: center;
  text-shadow: 0 2px 8px #000;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.gallery-grid img, .gallery-grid video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  background: #222;
  display: block;
}

footer {
  margin-top: 40px;
  padding: 24px 0;
  background: none;
  text-align: center;
}
.social-links a {
  color: var(--accent-color);
  margin: 0 18px;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.2s;
}
.social-links a:hover {
  color: #fff;
  text-shadow: 0 0 8px var(--accent-color);
}

/* Header Menu */
.header-menu {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100vw;
  background: transparent;
  z-index: 10;
  box-shadow: none;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-menu nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  background: transparent;
  border-radius: 60px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-center {
  display: flex;
  align-items: center;
  gap: 48px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-menu.scrolled nav {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.logo-header-left {
  display: flex;
  align-items: center;
}
.logo-header {
  height: 70px;
  width: auto;
  margin-right: 24px;
  background: none;
  border-radius: 0;
  padding: 0;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 60px;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links li a:hover {
  color: var(--accent-color);
  text-shadow: 0 0 8px var(--accent-color);
}
/* Language Switcher - Sticky on Right Side */
.language-switcher-sticky {
  position: fixed;
  top: 48px;
  right: calc((100vw - 1200px) / 4 - 50px);
  z-index: 1001;
  display: flex;
  gap: 8px;
  align-items: center;
  background: transparent;
  backdrop-filter: blur(10px);
  padding: 8px 12px;
  border-radius: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(168, 144, 128, 0.2);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Match header's scrolled state */
.header-menu.scrolled ~ .language-switcher-sticky {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(20px);
  border-color: rgba(168, 144, 128, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.language-switcher-sticky:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(168, 144, 128, 0.4);
  border-color: rgba(168, 144, 128, 0.5);
}

.header-menu.scrolled ~ .language-switcher-sticky:hover {
  box-shadow: 0 10px 35px rgba(168, 144, 128, 0.5);
}

.lang-btn {
  background: transparent;
  border: none;
  color: #fff;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Outfit', Arial, sans-serif;
}

.lang-btn.active {
  background: var(--accent-color);
  color: #fff;
}

.lang-btn:hover {
  background: var(--accent-color-hover);
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 30px;
  padding: 0;
}

.logo-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}
.social-icons a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.2s;
}
.social-icons a:hover {
  color: var(--accent-color);
  text-shadow: 0 0 8px var(--accent-color);
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-video-wrapper iframe {
  width: 120vw;
  height: 120vh;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  top: -10vh;
  left: -10vw;
}
.hero-fade {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17,17,17,0.8) 70%, #111 100%);
  z-index: 2;
}
.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.placeholder-content {
  text-align: center;
  color: #fff;
  padding: 40px;
}

.placeholder-content i {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  opacity: 0.8;
}

.placeholder-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #fff;
}

.placeholder-content p {
  font-size: 1.1rem;
  color: #ccc;
  margin: 0;
}
.hero-text {
  position: absolute;
  z-index: 3;
  text-align: center;
  width: 100%;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8), 0 0 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-text h1 {
  font-size: 3.5rem;
  margin: 0 0 20px 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-text h2 {
  font-size: 2rem;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Work Section */
.work-section {
  max-width: 1400px;
  margin: 80px auto 0 auto;
  padding: 0 32px;
}
.work-section h2 {
  color: var(--accent-color);
  margin-bottom: 80px;
  text-align: center;
  text-shadow: 0 2px 8px #000;
  font-size: 2.5rem;
  font-weight: 300;
}

/* Category Section */
.category-section {
  margin-bottom: 100px;
  position: relative;
  overflow: visible;
}

.category-section:last-child {
  margin-bottom: 60px;
}

.category-title {
  color: var(--accent-color);
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 70px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-size: 1.5rem;
}

/* Project Stack Container */
.project-stack-container {
  position: relative;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: 600px;
  height: auto;
}

/* Featured Project */
.featured-project {
  position: relative;
  width: 100%;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* Media Slider Container */
.media-slider-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  grid-area: media;
  overflow: visible;
}

/* Media Preview Cards (for overlapping effect) */
.media-preview {
  position: absolute;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  z-index: 1;
  max-width: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-preview.prev {
  left: -100px;
  transform: scale(0.65);
  opacity: 0.5;
  filter: brightness(0.55);
}

.media-preview.next {
  right: -100px;
  transform: scale(0.65);
  opacity: 0.5;
  filter: brightness(0.55);
}

.media-preview .project-media-gallery {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-preview:hover {
  opacity: 0.65;
  filter: brightness(0.7);
}

.media-preview.prev:hover {
  transform: scale(0.68);
}

.media-preview.next:hover {
  transform: scale(0.68);
}

.media-preview .main-image-container {
  pointer-events: none;
  width: auto;
  max-width: 100%;
  display: inline-block;
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 50%, #1a1a1a 100%);
}

.media-preview .main-project-image,
.media-preview .main-project-video {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 450px;
}

.media-preview .image-overlay {
  display: none;
}

.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  z-index: 10;
  pointer-events: none;
  border-radius: 12px;
}

/* Project Showcase */
.project-showcase {
  margin-bottom: 120px;
  position: relative;
}
.project-showcase:last-child {
  margin-bottom: 60px;
}

.project-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 40px;
  transform-origin: center center;
}

/* Alternating layout - Media Left, Text Right */
.project-left .project-content {
  grid-template-areas: "media text";
}

.project-left .project-media-gallery {
  grid-area: media;
}

.project-left .project-text {
  grid-area: text;
}

/* Alternating layout - Text Left, Media Right */
.project-right .project-content {
  grid-template-areas: "text media";
}

.project-right .project-media-gallery {
  grid-area: media;
}

.project-right .project-text {
  grid-area: text;
}

.project-media-gallery {
  position: relative;
  justify-self: center;
  z-index: 2;
}

.media-slider-container .project-media-gallery {
  position: relative;
  z-index: 2;
}

.project-text {
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(168, 144, 128, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  height: fit-content;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 3;
  position: relative;
}

.project-text:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
  border-color: rgba(168, 144, 128, 0.3);
}

.project-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(168, 144, 128, 0.2);
}

.project-header h3, .project-header h4 {
  color: var(--accent-color);
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.project-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.project-meta span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  background: rgba(168, 144, 128, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(168, 144, 128, 0.25);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.project-description {
  margin-bottom: 0;
  max-width: none;
}

.project-description p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.project-description p:last-child {
  margin-bottom: 0;
}

.project-description strong {
  color: var(--accent-color);
  font-weight: 600;
}

/* Media Gallery */
.project-media-gallery {
  position: relative;
  justify-self: center;
  z-index: 2;
}

.project-media-gallery.fade-out {
  animation: fadeOut 0.3s ease-out forwards;
}

.project-media-gallery.fade-in {
  animation: fadeIn 0.4s ease-in forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.main-image-container {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
  transition: all 0.3s ease;
  width: auto;
  max-width: 100%;
  line-height: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 50%, #1a1a1a 100%);
}

.main-image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 40px rgba(168, 144, 128, 0.2);
}

.main-project-image,
.main-project-video {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 600px;
  display: block;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

/* For portrait videos, limit height and center */
.main-image-container.portrait {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.main-image-container.portrait .main-project-image,
.main-image-container.portrait .main-project-video {
  width: auto;
  max-width: 100%;
  max-height: 600px;
}

.main-image-container:hover .main-project-image {
  transform: scale(1.02);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  gap: 12px;
  z-index: 10;
  cursor: pointer;
}

.main-image-container:hover .image-overlay {
  opacity: 1;
}

.image-overlay i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.image-overlay span {
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.hidden-gallery {
  display: none;
}

/* Show More Button */
/* Project Carousel Navigation */
.project-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  padding: 20px 0;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color-transparent-light);
  border: 1px solid var(--accent-color-border);
  color: var(--accent-color);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover:not(:disabled) {
  background: var(--accent-color-transparent);
  border-color: var(--accent-color-hover);
  transform: scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-indicators {
  display: flex;
  gap: 12px;
  align-items: center;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(168, 144, 128, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.carousel-indicator:hover {
  background: rgba(168, 144, 128, 0.6);
  transform: scale(1.2);
}

.carousel-indicator.active {
  background: var(--accent-color);
  width: 32px;
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .work-section {
    padding: 0 24px;
  }
  .main-image-container {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .work-section {
    padding: 0 16px;
  }
  .work-section h2 {
    font-size: 2rem;
    margin-bottom: 60px;
  }
  .project-showcase {
    margin-bottom: 80px;
  }
  
  .project-content {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }
  
  .project-left .project-content,
  .project-right .project-content {
    grid-template-areas: 
      "media"
      "text";
  }

  .project-text {
    padding: 32px 24px;
  }

  .project-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }
  .project-header h3 {
    font-size: 1.6rem;
  }
  .project-meta {
    gap: 8px;
  }
  
  .project-carousel-nav {
    gap: 20px;
    margin-top: 30px;
  }
  
  .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  
  .carousel-indicators {
    gap: 8px;
  }
  
  /* Hide preview cards on mobile */
  .media-preview {
    display: none;
  }
  
  .project-stack-container {
    padding: 0 20px;
    min-height: auto;
  }
  
  .media-slider-container {
    min-height: auto;
  }
  
  .project-meta span {
    font-size: 0.8rem;
    padding: 3px 8px;
  }
  .main-image-container {
    max-width: 100%;
  }
  .main-project-image {
    min-height: 250px;
  }
  .image-overlay i {
    font-size: 2rem;
  }
  .image-overlay span {
    font-size: 1rem;
  }
  .project-description {
    margin-bottom: 0;
  }
}

@media (max-width: 600px) {
  .about-me, .gallery {
    padding: 16px 16px 0 16px;
  }
  
  .about-profile-image {
    width: 150px;
    height: 150px;
  }
  
  .about-content {
    gap: 20px;
  }
  .logo {
    width: 120px;
    padding: 0;
  }
  .gallery-grid {
    gap: 12px;
  }
}

@media (max-width: 700px) {
  .header-menu nav {
    flex-direction: column;
    gap: 15px;
    padding: 15px 16px;
  }
  .nav-links {
    gap: 32px;
    padding: 0;
  }
  .header-center {
    gap: 24px;
  }
  
  .social-icons {
    gap: 20px;
    padding: 0;
  }
  
  .language-switcher-sticky {
    top: 42px;
    right: 20px;
    padding: 6px 10px;
  }
  
  .lang-btn {
    padding: 4px 8px;
    font-size: 0.8rem;
  }
  
  .header-menu nav {
    padding: 12px 20px;
  }
  .logo-header {
    height: 50px;
    width: auto;
    margin-right: 10px;
  }
  .hero-section {
    height: 100vh;
  }
  .hero-video-wrapper iframe {
    height: 100vh;
  }
  .placeholder-content {
    padding: 20px;
  }
  .placeholder-content i {
    font-size: 3rem;
  }
  .placeholder-content h3 {
    font-size: 1.4rem;
  }
  .placeholder-content p {
    font-size: 1rem;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }
  .hero-text h2 {
    font-size: 1.3rem;
  }
}

/* Contact Section */
.contact-section {
  max-width: 1200px;
  margin: 120px auto 0 auto;
  padding: 0 32px 80px 32px;
}

.contact-section h2 {
  color: var(--accent-color);
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 60px;
  text-shadow: 0 2px 8px #000;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-wrapper h3 {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--accent-color-transparent-light);
  border-radius: 12px;
  border: 1px solid var(--accent-color-border);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.contact-item:hover {
  background: var(--accent-color-transparent);
  border-color: var(--accent-color-border-hover);
  transform: translateX(4px);
}

.contact-item i {
  color: var(--accent-color);
  font-size: 1rem;
  margin-top: 2px;
  min-width: 18px;
}

.contact-details h4 {
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-details p {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.contact-details a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-details a:hover {
  color: var(--accent-color);
}

.contact-social {
  margin-top: 10px;
}

.contact-social h4 {
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-links-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--accent-color-transparent-light);
  border: 1px solid var(--accent-color-border);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.social-links-contact a:hover {
  background: var(--accent-color-transparent);
  border-color: var(--accent-color-border-hover);
  color: var(--accent-color);
  transform: translateX(6px);
}

.social-links-contact a i {
  font-size: 1rem;
  min-width: 18px;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--accent-color-transparent-light);
  border: 1px solid var(--accent-color-border);
  border-radius: 20px;
  padding: 40px;
}

.contact-form-wrapper h3 {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--accent-color-border);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(168, 144, 128, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Outfit', Arial, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: var(--accent-color-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 144, 128, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Contact Section Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 0 16px 60px 16px;
    margin-top: 80px;
  }
  
  .contact-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-wrapper {
    padding: 30px 24px;
  }
  
  .contact-info-wrapper h3,
  .contact-form-wrapper h3 {
    font-size: 1.3rem;
  }
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 20px;
  box-sizing: border-box;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--accent-color);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 10001;
  pointer-events: none;
  transform: translateY(-50%);
}

.lightbox-prev, .lightbox-next {
  background: rgba(168, 144, 128, 0.8);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  pointer-events: all;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}

.lightbox-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}

.lightbox-media-container {
  max-width: 100%;
  max-height: calc(100vh - 280px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1;
}

.lightbox-media {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.8);
}

/* Thumbnail Strip Styling */
.thumbnail-strip-container {
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 16px 20px;
  border-top: 1px solid var(--accent-color-border);
}

.thumbnail-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 8px 0;
  max-width: 100%;
}

.thumbnail-strip::-webkit-scrollbar {
  height: 8px;
}

.thumbnail-strip::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.thumbnail-strip::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 4px;
}

.thumbnail-strip::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color-hover);
}

.thumbnail-strip-item {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.thumbnail-strip-item:hover {
  border-color: var(--accent-color-hover);
  transform: scale(1.05);
}

.thumbnail-strip-item.active {
  border-color: var(--accent-color);
  box-shadow: 0 0 20px rgba(168, 144, 128, 0.6);
}

.thumbnail-strip-item img,
.thumbnail-strip-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Thumbnail Overview */
.thumbnail-overview {
  text-align: center;
  max-width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
}

.thumbnail-overview h3 {
  color: var(--accent-color);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 30px auto;
}

.thumbnail-item {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  background: #222;
  transition: all 0.3s ease;
  aspect-ratio: 16/10;
}

.thumbnail-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(168, 144, 128, 0.3);
}

.thumbnail-item img,
.thumbnail-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumbnail-item .thumbnail-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.overview-instruction {
  color: #ccc;
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.8;
}

/* Full View */
.full-view {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lightbox-counter {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.9);
  padding: 10px 24px;
  border-radius: 25px;
  border: 1px solid var(--accent-color-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

/* Lightbox Responsive */
@media (max-width: 768px) {
  .lightbox-close {
    top: 10px;
    right: 15px;
    font-size: 30px;
  }
  
  .lightbox-nav {
    padding: 0 20px;
  }
  
  .lightbox-prev, .lightbox-next {
    font-size: 18px;
    padding: 10px 15px;
    width: 45px;
    height: 45px;
  }
  
  .lightbox-main-content {
    padding: 10px;
  }
  
  .lightbox-media-container {
    max-width: 100%;
    max-height: calc(100vh - 240px);
  }
  
  .lightbox-counter {
    font-size: 0.95rem;
    padding: 6px 14px;
  }
  
  .thumbnail-strip-container {
    padding: 12px 10px;
  }
  
  .thumbnail-strip-item {
    width: 90px;
    height: 60px;
  }
  
  .thumbnail-overview h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .thumbnail-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
  }
  
  .overview-instruction {
    font-size: 1rem;
  }
}

/* Legal Page Styles */
.legal-page {
  background: #111;
  min-height: 100vh;
  padding-top: 120px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 32px 80px 32px;
}

.legal-container {
  background: var(--accent-color-transparent-light);
  border-radius: 20px;
  border: 1px solid var(--accent-color-transparent);
  padding: 60px;
}

.legal-section {
  margin-bottom: 60px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h1 {
  color: var(--accent-color);
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 40px;
  text-shadow: 0 2px 8px #000;
}

.legal-section h2 {
  color: var(--accent-color);
  font-size: 1.8rem;
  font-weight: 400;
  margin: 40px 0 20px 0;
  text-shadow: 0 2px 8px #000;
}

.legal-section h3 {
  color: var(--accent-color);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 30px 0 15px 0;
}

.legal-section h4 {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 20px 0 10px 0;
}

.legal-section p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px #000;
}

.legal-section .contact-details {
  background: var(--accent-color-transparent-light);
  border-radius: 12px;
  border: 1px solid var(--accent-color-border);
  padding: 20px;
  margin: 20px 0;
}

.contact-details p {
  margin-bottom: 8px;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

.nav-links a.active {
  color: var(--accent-color);
  text-shadow: 0 0 8px var(--accent-color);
}

/* Legal Page Responsive */
@media (max-width: 768px) {
  .legal-page {
    padding-top: 100px;
  }
  
  .legal-content {
    padding: 20px 16px 60px 16px;
  }
  
  .legal-container {
    padding: 40px 24px;
  }
  
  .legal-section h1 {
    font-size: 2rem;
  }
  
  .legal-section h2 {
    font-size: 1.5rem;
  }
  
  .legal-section h3 {
    font-size: 1.2rem;
  }
  
  .legal-section p {
    font-size: 1rem;
  }
}

/* Footer */
.site-footer {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid var(--accent-color-border);
  padding: 60px 32px 30px 32px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  width: 50px;
  height: auto;
}

.footer-tagline {
  color: #ccc;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
  line-height: 1.3;
}

.footer-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-social {
  display: flex;
  gap: 24px;
}

.footer-social a {
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.footer-links a:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.footer-copyright {
  color: #888;
  font-size: 0.85rem;
  margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 16px 24px 16px;
    margin-top: 60px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-left {
    align-items: center;
  }
  
  .footer-logo {
    width: 40px;
  }
  
  .footer-tagline {
    font-size: 0.75rem;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .footer-right {
    align-items: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

/* ==========================================
   COMING SOON / PROJECT STATUS STYLES
   ========================================== */

.coming-soon-container {
  position: relative;
  width: 100% !important;
  min-width: 300px;
  min-height: 500px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default !important;
  flex: 1;
}

.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.coming-soon-content {
  text-align: center;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  z-index: 10;
  position: relative;
}

.coming-soon-content i {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

.coming-soon-content h3 {
  font-size: 2.5rem;
  margin: 0 0 15px 0;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}

.coming-soon-content p {
  font-size: 1.1rem;
  color: #bbb;
  margin: 0;
  line-height: 1.6;
  padding: 0 20px;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .coming-soon-content h3 {
    font-size: 2rem;
  }
  
  .coming-soon-content i {
    font-size: 3rem;
  }
  
  .coming-soon-content p {
    font-size: 1rem;
  }
}
