
body {
  margin:0;
  font-family: 'Nunito Sans', sans-serif;
  color:white;
}

/* NAV */
.nav {
  position:absolute;
  top:0;
  left:0;
  width:94%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 50px;
  z-index:100;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.25);
  border-bottom:1px solid rgba(255,255,255,0.1);
}

.logo {
  font-family:'Zalando Sans', sans-serif;
  font-size:1.4rem;
  font-weight:600;
  color:white;
}

.nav nav {
  display:flex;
  gap:30px;
}

.nav nav a {
  position:relative;
  text-decoration:none;
  color:rgba(255,255,255,0.85);
  font-weight:500;
  transition:all 0.25s ease;
}

.nav nav a::after {
  content:"";
  position:absolute;
  bottom:-6px;
  left:0;
  width:0%;
  height:2px;
  background:#D493F7;
  transition:width 0.25s ease;
}

.nav nav a:hover {
  color:white;
}

.nav nav a:hover::after {
  width:100%;
}

/* CTA */
.btn-primary {
  background:linear-gradient(135deg,#53097B,#3F6C51);
  color:white;
  padding:10px 20px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  transition:all 0.25s ease;
}

.btn-primary:hover {
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(0,0,0,0.3);
}

/* HERO */
.hero {
  position:relative;
  height:100vh;
  background:url('../assets/hero.png') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-top:100px;
}

.overlay {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
}

.hero-content {
  position:relative;
  text-align:center;
  max-width:900px;
}

.service-boxes {
  display:flex;
  gap:20px;
  margin-top:40px;
}

.box {
  background:rgb(182, 178, 230);
  color:black;
  padding:20px;
  text-decoration:none;
  flex:1;
  border-radius:8px;
}

/* PAGE */
.page {
  padding:60px;
  color:black;
  background:#f5f5f5;
}

.cta-section {
  margin-top:40px;
}

.page-hero{
  height:100vh;
  background:/*linear-gradient(rgba(83,9,123,.6),rgba(23,48,28,.6)),*/
  url('../assets/page-bg.png') center/cover no-repeat;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center}

  .contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row.full {
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 120px;
}
