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


html, body {
height: 100%;
font-family: "Georgia", "Times New Roman", serif;
}


body {
background-image:
linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
url("images/background.png");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: #e6e6e6;
}


/* Optional grain / fog overlay */
.overlay {
position: fixed;
inset: 0;
background: radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 60%);
pointer-events: none;
}

.hero {
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 2rem;
}


.hero h1 {
font-size: 4rem;
letter-spacing: 0.15em;
text-transform: uppercase;
margin-bottom: 1.5rem;
}


.hero p {
max-width: 600px;
font-size: 1.2rem;
line-height: 1.6;
opacity: 0.9;
margin-bottom: 2.5rem;
}

.btn {
text-decoration: none;
color: #e6e6e6;
border: 1px solid rgba(230,230,230,0.6);
padding: 0.75rem 2.5rem;
letter-spacing: 0.1em;
text-transform: uppercase;
transition: all 0.3s ease;
}


.btn:hover {
background: rgba(230,230,230,0.15);
border-color: #fff;
}
