/* Reset & basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: white;
  color: #111;
  line-height: 1.6;
  overflow-x: hidden;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrapper>*:not(footer) {
  flex-grow: 1;
}

nav {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: black;
  font-size: 0.85rem;
  letter-spacing: 0.05rem;
}

.logo {
  font-weight: bold;
  font-size: 1rem;
}

.hero {
  text-align: center;
  padding: 10rem 2rem 5rem;
  /* background: url('hero-bg.jpg') no-repeat center top/cover; */
  background-color: black no-repeat center top/cover;
  color: black;
  position: relative;
  /* animation: fadeIn 1s ease-in-out; */
  animation: fadeIn 1s ease-in-out 1.3s forwards;
}

.hero h1 {
  font-size: 75px;
  font-weight: 900;
  mix-blend-mode: difference;
}

.hero-text {
  margin-top: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  border-radius: 8px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 4rem 2rem;
  align-items: center;
  animation: fadeIn 1s ease-in-out;
}

.about h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.about::before {
  content: "";
  background: url('designer-portrait.jpg') no-repeat center/cover;
  width: 100%;
  height: 400px;
  grid-column: 1 / -1;
}

.journey {
  background: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.journey h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.timeline {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.timeline li {
  margin-bottom: 1rem;
}

.timeline span {
  font-weight: bold;
  display: inline-block;
  width: 60px;
}

.timeline a {
  text-decoration: none;
  color: #111;
}

.link-demo li{
  transition: transform 0.3s;
}

.link-demo li:hover {
  transform: translateX(5px);
}

.highlight {
  color: black;
  font-weight: bold;
}

.cta {
  text-align: center;
  padding: 2rem;
  background: url('cta-bg.jpg') no-repeat center/cover;
  color: white;
  animation: fadeIn 1s ease-in-out;
}

.cta a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  background: black;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.cta a:hover {
  background: #333;
}

footer {
  background: url('footer-bg.jpg') no-repeat center/cover;
  color: white;
  padding: 2rem;
  animation: fadeIn 1s ease-in-out;
}

.footer-columns {
  margin-bottom: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  color: black;
  /* box-shadow: 0 0 10px lightgray; */
}

.footer-columns div {
  flex: 1;
  min-width: 150px;
}

.footer-columns li {
  list-style: none;
}

.footer-columns a {
  text-decoration: none;
  color: black;
}

footer h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.images {
  display: flex;
  gap: 20px;
}


/* Simple fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .about {
    grid-template-columns: 1fr;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}