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

body{
  font-family:Arial, sans-serif;
  background:#f5f5f5;
  color:#333;
  line-height:1.6;
}

header{
  background:url('../images/ext/P1030145.webp') center/cover no-repeat;
  height:70vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
}

header h1{
  font-size:4rem;
  background:rgba(0,0,0,0.5);
  padding:20px;
  border-radius:10px;
}

nav{
  background:#222;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  position:sticky;
  top:0;
  z-index:1000;
}

nav a{
  color:white;
  text-decoration:none;
  padding:15px 20px;
  display:block;
}

nav a:hover{
  background:#444;
}

.dropdown{
  position:relative;
}

.dropdown-content{
  display:none;
  position:absolute;
  background:#333;
  min-width:220px;
}

.dropdown-content a{
  border-bottom:1px solid #444;
}

.dropdown:hover .dropdown-content{
  display:block;
}

main{
  padding:40px 20px;
  max-width:1200px;
  margin:auto;
}

section{
  margin-bottom:50px;
}

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

.gallery img{
  width:100%;
  border-radius:10px;
}

iframe{
  width:100%;
  border:none;
  border-radius:10px;
  margin-top:20px;
}

form{
  margin-top:20px;
}

input, textarea{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  border:1px solid #ccc;
  border-radius:5px;
}

button{
  padding:12px 20px;
  background:#222;
  color:white;
  border:none;
  border-radius:5px;
  cursor:pointer;
}

button:hover{
  background:#444;
}

footer{
  background:#222;
  color:white;
  text-align:center;
  padding:20px;
}

@media(max-width:768px){
  header h1{
    font-size:2.2rem;
  }

  nav{
    flex-direction:column;
  }

  .dropdown-content{
    position:static;
    width:100%;
  }
}
