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

body{
  font-family:Arial,sans-serif;
  background:#5c1a9c;
  color:white;
  line-height:1.6;
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 8%;
  background:rgba(0,0,0,0.35);
  position:sticky;
  top:0;
  z-index:1000;
}

nav ul{
  display:flex;
  gap:20px;
  list-style:none;
}

nav a{
  color:white;
  text-decoration:none;
  font-weight:bold;
}

.logo-title h1{
  font-size:1.7rem;
}

.hero{
  min-height:100vh;
  background:linear-gradient(180deg,#6f2dbd,#3c096c);
}

.hero-content{
  padding:40px 8%;
  text-align:center;
}

.hero-image{
  width:100%;
  max-width:1100px;
  border-radius:18px;
  border:4px solid white;
  box-shadow:0 0 30px rgba(0,0,0,0.4);
}

.overlay-card{
  margin:40px auto;
  max-width:800px;
  background:rgba(255,255,255,0.08);
  padding:40px;
  border-radius:18px;
  backdrop-filter:blur(8px);
}

.overlay-card h2{
  font-size:3rem;
  margin-bottom:20px;
}

.overlay-card p{
  font-size:1.2rem;
  margin-bottom:30px;
}

.btn{
  display:inline-block;
  padding:15px 28px;
  background:white;
  color:#5c1a9c;
  border-radius:10px;
  text-decoration:none;
  font-weight:bold;
}

.section{
  padding:80px 8%;
}

.section h2{
  font-size:2.3rem;
  margin-bottom:25px;
}

.darker{
  background:rgba(0,0,0,0.18);
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:25px;
}

.card{
  background:rgba(255,255,255,0.1);
  padding:30px;
  border-radius:15px;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:20px;
}

.gallery img{
  width:100%;
  border-radius:15px;
  border:3px solid white;
}

.center{
  text-align:center;
}

form{
  max-width:700px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

input, textarea{
  padding:16px;
  border:none;
  border-radius:10px;
}

textarea{
  min-height:150px;
}

button{
  background:white;
  color:#5c1a9c;
  border:none;
  padding:16px;
  border-radius:10px;
  font-weight:bold;
  cursor:pointer;
}

footer{
  text-align:center;
  padding:30px;
  background:rgba(0,0,0,0.35);
}

@media(max-width:768px){
  nav{
    flex-direction:column;
    gap:15px;
  }

  nav ul{
    flex-wrap:wrap;
    justify-content:center;
  }

  .overlay-card h2{
    font-size:2rem;
  }
}
