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

html{
scroll-behavior:smooth;
}

body{
font-family:'Open Sans',sans-serif;
background:#091325;
color:white;
}

header{

position:fixed;
top:0;
width:100%;
z-index:1000;

display:flex;
justify-content:space-between;
align-items:center;

padding:20px 60px;

background:rgba(5,14,31,.85);
backdrop-filter:blur(10px);

}

.logo{
display:flex;
align-items:center;
gap:15px;
}

.cross{
font-size:50px;
color:#d9b25c;
}

.logo h2{
font-family:'Cinzel',serif;
color:white;
}

.logo span{
color:#d9b25c;
font-size:12px;
letter-spacing:2px;
}

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

nav a{
text-decoration:none;
color:white;
font-weight:600;
transition:.3s;
}

nav a:hover{
color:#d9b25c;
}

.hero{

height:100vh;

background:
linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.45)),
url('images/lucerne-banner.jpg');

background-size:cover;
background-position:center;

display:flex;
justify-content:center;
align-items:center;

text-align:center;

}

.hero-content{
max-width:1000px;
padding:20px;
}

.hero h1{

font-family:'Cinzel',serif;
font-size:90px;

text-shadow:0 0 20px rgba(0,0,0,.7);

}

.hero h3{

margin-top:20px;
font-size:32px;
font-weight:300;

}

.hero-buttons{
margin-top:40px;
}

.btn{

display:inline-block;

padding:16px 40px;

margin:10px;

text-decoration:none;

border-radius:6px;

font-weight:bold;

transition:.3s;

}

.gold{
background:#d9b25c;
color:#091325;
}

.gold:hover{
transform:translateY(-3px);
}

.outline{

border:2px solid white;
color:white;

}

.outline:hover{
background:white;
color:#091325;
}

section{
padding:60px 10%;
}

section h2{

font-family:'Cinzel',serif;

font-size:42px;

text-align:center;

margin-bottom:30px;

color:#d9b25c;

}

section p{
line-height:1.8;
font-size:18px;
}

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.card{

background:#11203b;

padding:35px;

border-radius:10px;

border:1px solid rgba(217,178,92,.2);

transition:.3s;

}

.card:hover{
transform:translateY(-10px);
}

.card h3{
margin-bottom:15px;
color:#d9b25c;
}

.event-list{
display:flex;
justify-content:center;
gap:50px;
flex-wrap:wrap;
text-align:center;
}

.event-list h3{
color:#d9b25c;
margin-bottom:10px;
}

form{

max-width:700px;
margin:auto;

display:flex;
flex-direction:column;

gap:20px;

}

input,
textarea{

padding:18px;

background:#11203b;

border:none;

color:white;

border-radius:5px;

}

textarea{
height:180px;
}

button{

padding:18px;

background:#d9b25c;

border:none;

font-weight:bold;

cursor:pointer;

}

#form-status{

text-align:center;
font-weight:600;
min-height:24px;

}

#form-status.success{
color:#7bd88f;
}

#form-status.error{
color:#e07a7a;
}

footer{

background:#050b16;

padding:50px;

text-align:center;

}

.fade{
opacity:0;
transform:translateY(50px);
transition:all 1s ease;
}

.fade.show{
opacity:1;
transform:translateY(0);
}

#mobile-btn{
display:none;
font-size:30px;
cursor:pointer;
}

@media(max-width:900px){

.hero h1{
font-size:54px;
}

.hero h3{
font-size:24px;
}

nav{
display:none;
}

#mobile-btn{
display:block;
}

header{
padding:20px;
}

}