body {
  font-family: 'Outfit', sans-serif;
  margin: 0;
  background: white;
  color: #222;
}

header {
  text-align: center;
  padding: 2rem 2rem 2rem;
  background: #f3f3f3;
}

header h1 {
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.spotify-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, font-style 0.2s ease;
  cursor: pointer;
}

.spotify-link:hover {
  font-style: inherit;
  color: #555;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom:0rem;
}

.portfolio {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* max 4 per row */
  gap: 2rem;
  padding: 3rem 2rem;
}

@media (max-width: 1200px) {
  .portfolio {
    grid-template-columns: repeat(3, 1fr); /* 3 per row on medium screens */
  }
}

@media (max-width: 900px) {
  .portfolio {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on smaller screens */
  }
}

@media (max-width: 600px) {
  .portfolio {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}


.portfolio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: inherit;
  text-decoration: none;
  /*justify-content: space-between;*/
}

.portfolio-item img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.portfolio-item img:hover {
  transform: scale(1.05);
}

.portfolio-item h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0rem 0;
  min-height: 2.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-item p {
  font-size: 1rem;
  min-height: 1.8em;
  display: flex;
  align-items: center;
  /*justify-content: center;*/
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  background-color: #000;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}

.marquee-content {
  display: inline-block;
  padding: 1rem 0;
  animation: marquee 60s linear infinite;
  position: relative;
  z-index: 1;
}

.marquee-content span {
  margin: 0 2rem;
  font-family: Inter;
  font-weight: 200;
  font-size: 20px;
  color: #f3f3f3;
}

.marquee-content span::after {
  content: " • ";
  margin-left: 2rem;
  color: #f3f3f3;
}

@keyframes marquee {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.contact {
  background: #f3f3f3;
  padding: 3rem 2rem;
  text-align: center;
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input,
.contact textarea,
.contact button {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact button {
  background: black;
  color: white;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
}

.contact button:hover {
  background: #555;
}

#thankYou {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  margin: 0.75rem;
  color: black;
  font-weight: 500;
}

#thankYou.show {
  opacity: 1;
  visibility: visible;
}

footer {
  background: black;
  color: white;
  text-align: center;
  padding: 1.5rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
}
