*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
height:100vh;
font-family: 'Inter', sans-serif;
color:white;
background:url("bg.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

/* przyciemnienie */
.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
backdrop-filter: blur(2px);
}

/* główny kontener */
.content{
position:relative;
z-index:2;
max-width:700px;
padding:40px;
}

h1{
font-family: 'Playfair Display', serif;
font-size:48px;
letter-spacing:1px;
}

h2{
font-weight:300;
margin-bottom:20px;
}

.slogan{
font-size:18px;
margin:20px 0;
line-height:1.6;
color:#f1f1f1;
}

.divider{
width:60px;
height:2px;
background:#c9a24a;
margin:25px auto;
}

.coming{
font-size:20px;
letter-spacing:2px;
margin-bottom:20px;
}

.contact{
font-size:14px;
opacity:0.9;
}