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


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

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(
    180deg,
    #faf8f6 0%,
    #f3f1ef 100%
  );
  color: #111;
}


/* --------------------------
   Layout
--------------------------- */
.landing {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.card {
  width: 100%;
  max-width: 650px;
  background: #fff;
  padding: 40px 28px;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  text-align: center;
  animation: fadeUp 0.8s ease-out both;
  border: 1px solid rgba(201, 184, 168, 0.25);

}

/* --------------------------
   Logo
--------------------------- */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

/* Champagne hover */
.logo:hover {
  color: #C9B8A8; /* champagne */
  cursor: default; /* keeps it feeling like a title, not a link */
  transition: color 0.4s ease, transform 0.4s ease;
}

.accent-line {
  width: 80px;
  height: 3px;
  background: #C9B8A8;
  margin: 12px auto 30px;
  border-radius: 10px;
}

/* --------------------------
   Message
--------------------------- */
.message {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* --------------------------
   Icons
--------------------------- */
.icon-row {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-bottom: 38px;
}

.icon {
  text-decoration: none;
}

.icon svg {
  width: 28px;
  height: 28px;
  color: #111;
  opacity: 0.9;
  transition: 0.3s ease;
}

.icon:hover svg {
  color: #C9B8A8;
  opacity: 1;
  transform: scale(1.1);
  transition: 0.25s ease-out;
}

/* --------------------------
   Portfolio Preview Section
--------------------------- */
.preview-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #9a948f;
  margin-bottom: 18px;
}

/* Carousel wrapper */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #eee;
}

/* Track that moves */
.carousel-track {
  display: flex;
  transition: transform 0.7s ease-out;
}

/* Images inside the carousel */
.carousel img {
  width: 100%;
  height: 300px;       /* UNIFORM HEIGHT — FIXED LIKE PEN & SCRIPT */
  object-fit: cover;   /* makes all photos the same shape */
  flex-shrink: 0;
}

/* --------------------------
   Responsive
--------------------------- */
@media (max-width: 600px) {
  .card {
    padding: 28px 20px;
  }

  .logo {
    font-size: 28px;
  }

  .carousel img {
    height: 240px; /* slightly shorter on mobile */
  }
}

.soft-divider {
  width: 60%;
  margin: 40px auto 30px;
  border: none;
  border-top: 1px solid rgba(0,0,0,0.06);
}
