/* [project]/src/app/projects/completed/Projects.css [app-client] (css) */
body {
  color: #333;
  background-image: url("/img/bg2.png");
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #fdf4db !important;
  background-repeat: repeat !important;
}

.container {
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.section-header {
  text-align: center;
  padding: 20px 0;
  position: relative;
}

.section-subtitle {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  animation: .8s forwards fadeInUp;
}

.section-title {
  color: #2c3e50;
  opacity: 0;
  margin-bottom: 24px;
  font-family: Playfair Display, serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  animation: .8s .2s forwards fadeInUp;
  position: relative;
}

.section-title:after {
  content: "";
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transform-origin: center;
  border-radius: 2px;
  width: 80px;
  height: 3px;
  animation: 1s 1s forwards expandWidth;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%)scale3d(0, 1, 1);
}

.section-description {
  color: #6b7280;
  opacity: 0;
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  animation: .8s .4s forwards fadeInUp;
}

.projects-grid {
  z-index: 5;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
  display: grid;
  position: relative;
}

.project-card {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  background: #fffffff2;
  border: 2px solid #c59e723a;
  border-radius: 20px;
  transition: all .5s cubic-bezier(.25, .46, .45, .94);
  animation: .6s forwards cardSlideIn;
  position: relative;
  overflow: hidden;
  transform: translateY(30px);
  box-shadow: 0 8px 32px #0000001a;
}

.project-card:first-child {
  animation-delay: .1s;
}

.project-card:nth-child(2) {
  animation-delay: .2s;
}

.project-card:nth-child(3) {
  animation-delay: .3s;
}

.project-card:nth-child(4) {
  animation-delay: .4s;
}

.project-card:nth-child(5) {
  animation-delay: .5s;
}

.project-card:nth-child(6) {
  animation-delay: .6s;
}

.project-card:before {
  content: "";
  opacity: 0;
  z-index: 1;
  background: linear-gradient(135deg, #c5a1720d 0%, #0000 50%);
  transition: opacity .3s;
  position: absolute;
  inset: 0;
}

.project-card:hover:before {
  opacity: 1;
}

.project-card:hover {
  transform: translateY(-12px)scale(1.02);
  box-shadow: 0 25px 50px #85c57233;
}

.project-image {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.project-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .6s;
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-status {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px var(--secondary-color);
  z-index: 2;
  border-radius: 25px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  animation: 2s infinite pulse;
  position: absolute;
  top: 20px;
  right: 20px;
}

.project-content {
  z-index: 2;
  padding: 32px;
  position: relative;
}

.project-name {
  color: var(--primary-color-M);
  margin-bottom: 12px;
  font-family: Playfair Display, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  transition: color .3s;
}

.project-card:hover .project-name {
  color: var(--primary-color);
}

.project-location {
  color: #6b7280;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
}

.location-icon {
  width: 16px;
  height: 16px;
  fill: var(--primary-color);
  transition: fill .3s;
}

.project-card:hover .location-icon {
  fill: var(--primary-color);
}

.project-features {
  margin-bottom: 24px;
}

.features-title {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

.features-list {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.feature-tag {
  color: var(--primary-color-M);
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  transition: all .3s;
}

.project-card:hover .feature-tag {
  border-color: #2f180467;
  transform: translateY(-1px);
}

.project-footer {
  border-top: 1px solid #e5e7eb;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  display: flex;
}

.completion-year {
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
}

.view-details {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  background: linear-gradient(135deg, var(--primary-color-M), var(--primary-color-M));
  color: #fff;
  border-radius: 30px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px #c5a5724d;
}

.view-details:before {
  content: "";
  background: linear-gradient(90deg, #0000, #fff3, #0000);
  width: 100%;
  height: 100%;
  transition: left .5s;
  position: absolute;
  top: 0;
  left: -100%;
}

.view-details:hover:before {
  left: 100%;
}

.view-details:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px #c5a57280;
}

.roman-bg {
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.roman-column {
  opacity: .08;
  animation: 20s ease-in-out infinite floatColumn;
  position: absolute;
}

.roman-column-1 {
  width: 150px;
  height: 400px;
  animation-delay: 0s;
  top: 10%;
  left: -5%;
}

.roman-column-2 {
  width: 120px;
  height: 350px;
  animation-delay: -5s;
  top: 60%;
  right: -3%;
}

.roman-column-3 {
  width: 100px;
  height: 300px;
  animation-delay: -10s;
  top: 30%;
  left: 80%;
}

.roman-arch {
  opacity: .06;
  animation: 25s ease-in-out infinite archFloat;
  position: absolute;
}

.roman-arch-1 {
  width: 200px;
  height: 150px;
  animation-delay: -3s;
  top: 20%;
  left: 60%;
}

.roman-arch-2 {
  width: 180px;
  height: 130px;
  animation-delay: -8s;
  bottom: 20%;
  left: 10%;
}

.roman-dome {
  opacity: .05;
  animation: 30s linear infinite domeRotate;
  position: absolute;
}

.roman-dome-1 {
  width: 250px;
  height: 200px;
  animation-delay: -2s;
  top: 5%;
  right: 15%;
}

.roman-dome-2 {
  width: 200px;
  height: 160px;
  animation-delay: -15s;
  bottom: 10%;
  right: 70%;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  to {
    scale: 1;
  }
}

@keyframes cardSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  50% {
    transform: scale(1.05);
  }
}

@keyframes floatColumn {
  0%, 100% {
    transform: translateY(0)rotate(0);
  }

  25% {
    transform: translateY(-20px)rotate(2deg);
  }

  50% {
    transform: translateY(-10px)rotate(-1deg);
  }

  75% {
    transform: translateY(-15px)rotate(1deg);
  }
}

@keyframes archFloat {
  0%, 100% {
    transform: translateX(0)scale(1);
  }

  25% {
    transform: translateX(10px)scale(1.02);
  }

  50% {
    transform: translateX(-5px)scale(.98);
  }

  75% {
    transform: translateX(8px)scale(1.01);
  }
}

@keyframes domeRotate {
  0% {
    transform: rotate(0)scale(1);
  }

  25% {
    transform: rotate(90deg)scale(1.05);
  }

  50% {
    transform: rotate(180deg)scale(.95);
  }

  75% {
    transform: rotate(270deg)scale(1.02);
  }

  100% {
    transform: rotate(360deg)scale(1);
  }
}

@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .roman-column, .roman-arch, .roman-dome {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-content {
    padding: 24px;
  }

  .container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .project-image {
    height: 220px;
  }
}

.foggy-section {
  background: #1a1a1a;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px #1433042b;
}

.foggy-section img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.fog-overlay {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.fog-overlay:before {
  content: "";
  opacity: .7;
  background: radial-gradient(800px 400px, #fff6 0%, #fff3 30%, #ffffff1a 60%, #0000 100%);
  width: 200%;
  height: 200%;
  animation: 12s ease-in-out infinite fogMove1;
  position: absolute;
  top: -50%;
  left: -50%;
}

.fog-overlay:after {
  content: "";
  opacity: .8;
  background: radial-gradient(600px 300px at 30% 70%, #c8c8ff4d 0%, #c8ffcd26 40%, #c8c8ff0d 70%, #0000 100%);
  width: 150%;
  height: 150%;
  animation: 15s ease-in-out infinite reverse fogMove2;
  position: absolute;
  top: -30%;
  right: -50%;
}

.fog-layer-1, .fog-layer-2, .fog-layer-3 {
  background: radial-gradient(circle, #ffffff4d 0%, #ffffff1a 50%, #0000 100%);
  border-radius: 50%;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  position: absolute;
}

.fog-layer-1 {
  opacity: .4;
  width: 300px;
  height: 150px;
  animation: 18s infinite fogDrift1;
  top: 20%;
  left: -100px;
}

.fog-layer-2 {
  opacity: .3;
  background: radial-gradient(#dcdcff40 0%, #dcdcff1a 40%, #0000 100%);
  width: 400px;
  height: 200px;
  animation: 22s infinite fogDrift2;
  top: 60%;
  right: -150px;
}

.fog-layer-3 {
  opacity: .5;
  background: radial-gradient(circle, #fff3 0%, #ffffff14 60%, #0000 100%);
  width: 250px;
  height: 125px;
  animation: 16s infinite fogDrift3;
  top: 40%;
  left: 50%;
}

@keyframes fogMove1 {
  0%, 100% {
    opacity: .7;
    transform: translate(0)scale(1)rotate(0);
  }

  25% {
    opacity: .5;
    transform: translate(20px, -30px)scale(1.1)rotate(2deg);
  }

  50% {
    opacity: .8;
    transform: translate(-15px, 20px)scale(.9)rotate(-1deg);
  }

  75% {
    opacity: .6;
    transform: translate(30px, 10px)scale(1.05)rotate(1.5deg);
  }
}

@keyframes fogMove2 {
  0%, 100% {
    opacity: .8;
    transform: translate(0)scale(1)rotate(0);
  }

  33% {
    opacity: .6;
    transform: translate(-25px, 15px)scale(1.15)rotate(-2deg);
  }

  66% {
    opacity: .9;
    transform: translate(20px, -20px)scale(.95)rotate(1deg);
  }
}

@keyframes fogDrift1 {
  0%, 100% {
    opacity: .4;
    transform: translateX(-100px);
  }

  50% {
    opacity: .2;
    transform: translateX(calc(100vw + 100px));
  }
}

@keyframes fogDrift2 {
  0%, 100% {
    opacity: .3;
    transform: translateX(50px);
  }

  50% {
    opacity: .1;
    transform: translateX(-450px);
  }
}

@keyframes fogDrift3 {
  0%, 100% {
    opacity: .5;
    transform: translate(-50%, -50%)scale(1);
  }

  25% {
    opacity: .3;
    transform: translate(-30%, -60%)scale(1.2);
  }

  50% {
    opacity: .6;
    transform: translate(-70%, -40%)scale(.8);
  }

  75% {
    opacity: .4;
    transform: translate(-40%, -70%)scale(1.1);
  }
}

.particle {
  opacity: 0;
  background: #ffffff1a;
  border-radius: 50%;
  animation: 20s linear infinite float;
  position: absolute;
}

.particle:first-child {
  width: 4px;
  height: 4px;
  animation-delay: 0s;
  left: 10%;
}

.particle:nth-child(2) {
  width: 6px;
  height: 6px;
  animation-delay: 2s;
  left: 20%;
}

.particle:nth-child(3) {
  width: 3px;
  height: 3px;
  animation-delay: 4s;
  left: 30%;
}

.particle:nth-child(4) {
  width: 5px;
  height: 5px;
  animation-delay: 6s;
  left: 40%;
}

.particle:nth-child(5) {
  width: 4px;
  height: 4px;
  animation-delay: 8s;
  left: 50%;
}

.particle:nth-child(6) {
  width: 7px;
  height: 7px;
  animation-delay: 10s;
  left: 60%;
}

.particle:nth-child(7) {
  width: 3px;
  height: 3px;
  animation-delay: 12s;
  left: 70%;
}

.particle:nth-child(8) {
  width: 5px;
  height: 5px;
  animation-delay: 14s;
  left: 80%;
}

.particle:nth-child(9) {
  width: 4px;
  height: 4px;
  animation-delay: 16s;
  left: 90%;
}

@keyframes float {
  0% {
    opacity: 0;
    transform: translateY(100vh)translateX(0);
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-100px)translateX(50px);
  }
}

.foggy-section:hover .fog-overlay:before {
  animation-duration: 8s;
}

.foggy-section:hover .fog-overlay:after {
  animation-duration: 10s;
}

@media (max-width: 900px) {
  .foggy-section {
    width: 100vw;
    height: 60vh;
  }
}

/* [project]/src/components/FoggySection.css [app-client] (css) */
.foggy-section {
  background: #1a1a1a;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px #1433042b;
}

.fog-overlay {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.fog-overlay:before {
  content: "";
  opacity: .7;
  background: radial-gradient(800px 400px, #fff6 0%, #fff3 30%, #ffffff1a 60%, #0000 100%);
  width: 200%;
  height: 200%;
  animation: 12s ease-in-out infinite fogMove1;
  position: absolute;
  top: -50%;
  left: -50%;
}

.fog-overlay:after {
  content: "";
  opacity: .8;
  background: radial-gradient(600px 300px at 30% 70%, #c8c8ff4d 0%, #c8ffcd26 40%, #c8c8ff0d 70%, #0000 100%);
  width: 150%;
  height: 150%;
  animation: 15s ease-in-out infinite reverse fogMove2;
  position: absolute;
  top: -30%;
  right: -50%;
}

.fog-layer-1, .fog-layer-2, .fog-layer-3 {
  background: radial-gradient(circle, #ffffff4d 0%, #ffffff1a 50%, #0000 100%);
  border-radius: 50%;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  position: absolute;
}

.fog-layer-1 {
  opacity: .4;
  width: 300px;
  height: 150px;
  animation: 18s infinite fogDrift1;
  top: 20%;
  left: -100px;
}

.fog-layer-2 {
  opacity: .3;
  background: radial-gradient(#dcdcff40 0%, #dcdcff1a 40%, #0000 100%);
  width: 400px;
  height: 200px;
  animation: 22s infinite fogDrift2;
  top: 60%;
  right: -150px;
}

.fog-layer-3 {
  opacity: .5;
  background: radial-gradient(circle, #fff3 0%, #ffffff14 60%, #0000 100%);
  width: 250px;
  height: 125px;
  animation: 16s infinite fogDrift3;
  top: 40%;
  left: 50%;
}

@keyframes fogMove1 {
  0%, 100% {
    opacity: .7;
    transform: translate(0)scale(1)rotate(0);
  }

  25% {
    opacity: .5;
    transform: translate(20px, -30px)scale(1.1)rotate(2deg);
  }

  50% {
    opacity: .8;
    transform: translate(-15px, 20px)scale(.9)rotate(-1deg);
  }

  75% {
    opacity: .6;
    transform: translate(30px, 10px)scale(1.05)rotate(1.5deg);
  }
}

@keyframes fogMove2 {
  0%, 100% {
    opacity: .8;
    transform: translate(0)scale(1)rotate(0);
  }

  33% {
    opacity: .6;
    transform: translate(-25px, 15px)scale(1.15)rotate(-2deg);
  }

  66% {
    opacity: .9;
    transform: translate(20px, -20px)scale(.95)rotate(1deg);
  }
}

@keyframes fogDrift1 {
  0%, 100% {
    opacity: .4;
    transform: translateX(-100px);
  }

  50% {
    opacity: .2;
    transform: translateX(calc(100vw + 100px));
  }
}

@keyframes fogDrift2 {
  0%, 100% {
    opacity: .3;
    transform: translateX(50px);
  }

  50% {
    opacity: .1;
    transform: translateX(-450px);
  }
}

@keyframes fogDrift3 {
  0%, 100% {
    opacity: .5;
    transform: translate(-50%, -50%)scale(1);
  }

  25% {
    opacity: .3;
    transform: translate(-30%, -60%)scale(1.2);
  }

  50% {
    opacity: .6;
    transform: translate(-70%, -40%)scale(.8);
  }

  75% {
    opacity: .4;
    transform: translate(-40%, -70%)scale(1.1);
  }
}

.particle {
  opacity: 0;
  background: #ffffff1a;
  border-radius: 50%;
  animation: 20s linear infinite float;
  position: absolute;
}

.particle:first-child {
  width: 4px;
  height: 4px;
  animation-delay: 0s;
  left: 10%;
}

.particle:nth-child(2) {
  width: 6px;
  height: 6px;
  animation-delay: 2s;
  left: 20%;
}

.particle:nth-child(3) {
  width: 3px;
  height: 3px;
  animation-delay: 4s;
  left: 30%;
}

.particle:nth-child(4) {
  width: 5px;
  height: 5px;
  animation-delay: 6s;
  left: 40%;
}

.particle:nth-child(5) {
  width: 4px;
  height: 4px;
  animation-delay: 8s;
  left: 50%;
}

.particle:nth-child(6) {
  width: 7px;
  height: 7px;
  animation-delay: 10s;
  left: 60%;
}

.particle:nth-child(7) {
  width: 3px;
  height: 3px;
  animation-delay: 12s;
  left: 70%;
}

.particle:nth-child(8) {
  width: 5px;
  height: 5px;
  animation-delay: 14s;
  left: 80%;
}

.particle:nth-child(9) {
  width: 4px;
  height: 4px;
  animation-delay: 16s;
  left: 90%;
}

@keyframes float {
  0% {
    opacity: 0;
    transform: translateY(100vh)translateX(0);
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-100px)translateX(50px);
  }
}

.foggy-section:hover .fog-overlay:before {
  animation-duration: 8s;
}

.foggy-section:hover .fog-overlay:after {
  animation-duration: 10s;
}

@media (max-width: 900px) {
  .foggy-section {
    width: 100vw;
    height: 60vh;
  }
}

/*# sourceMappingURL=src_5e90126e._.css.map*/