
/* RESET */
#msg_body {
margin: 0;
font-family: 'Cormorant Garamond', serif;
background: #f5f3ef;
}

/* HERO */
.hero {
position: relative;
height: 90vh;
background: url("Pictures/lunokviti.jpg") center/cover no-repeat;
display: flex;
flex-direction: column;
align-items: center;
}

/* jemný overlay */
.hero::after {
content: "";
position: absolute;
inset: 0;
background: rgba(255,255,255,0.08);
pointer-events: none;
}

/* MENU */
.menu {
margin-top: 30px;
display: flex;
gap: 60px;
z-index: 2;
}

.menu a {
text-decoration: none;
font-size: 18px;
letter-spacing: 3px;
font-weight: 500;
color: #4A5A50;
transition: 0.3s;
}

.menu a:hover {
opacity: 0.6;
}

/* HERO TEXT (pokud bys ho někdy vrátila) */
.hero-content {
text-align: center;
margin-top: 120px;
z-index: 2;
}

h1 {
font-size: 110px;
font-weight: 400;
letter-spacing: 6px;
color: #4A5A50;
margin: 0;
-webkit-font-smoothing: antialiased;
text-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.subtitle {
margin-top: 15px;
font-size: 16px;
letter-spacing: 3px;
color: #6b7c72;
}

/* CONTENT */
.content {
display: flex;
justify-content: center;
margin-top: -120px;
}

.content-box {
width: 700px;
padding: 60px;
background: #f5f3ef;
border-radius: 30px;
border: 1px solid rgba(120,140,120,0.3);
text-align: center;
}