
body {
  margin: 0;
  background-color: #0e1e1e;
  font-family: 'Inter', sans-serif;
  color: #f5f5f5;
}

.intro {
  position: fixed;
  background: #0e1e1e;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: opacity 1.5s ease;
}
.intro-logo {
  max-width: 300px;
}
.intro.fade-out {
  opacity: 0;
}
.hidden {
  display: none;
}
.fade-in {
  animation: fadeIn 1s ease forwards;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.container {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: #0e1e1e;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sidebar img {
  width: 100%;
  max-width: 200px;
}
.motto-big {
  font-family: 'Unica One', sans-serif;
  color: #b8a995;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin: 1rem 0;
}
.nav a {
  display: block;
  color: #d8c9b6;
  text-decoration: none;
  margin: 1rem 0;
  font-size: 1rem;
}
.footer {
  font-style: italic;
  color: #aaa;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Ascundem caruselul inițial */
#carouselSection {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Îl afișăm cu fade-in când se apasă pe Proiecte */
#carouselSection.active {
  display: block;
  opacity: 1;
}

/* ===== Swiper styling core ===== */
/* === Wrapper pentru control suplimentar (opțional) === */
.swiper-container-wrapper {
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-wrapper {
  display: flex;  
  perspective: 1200px;
  transform-style: preserve-3d;
}

.swiper-slide {
  width: auto;
  max-width: 90vw;
  margin: 0 auto;
  height: auto;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 0.6s ease;
  box-shadow: 4px 10px 18px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

/* ===== Navigation arrows ===== */
.swiper-button-next,
.swiper-button-prev {
  color: #d4c3a4;
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  opacity: 1;
}
/* ===== Slide-uri blurate pe lateral ===== */
.swiper-slide-prev,
.swiper-slide-next {
  filter: blur(3px) grayscale(70%) saturate(50%) brightness(0.7);
  transition: filter 0.4s ease, transform 0.4s ease;
}

/* Slide-ul central activ - fără blur */
.swiper-slide-active {
  filter: none;
  z-index: 20;
  transform: scale(1.05);
}

/* Opțional: stilizare când ești pe mobil */
@media (max-width: 768px) {
  .swiper-slide {
    width: 80%;
    margin: auto;
  }
}

