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

body {
    font-family: 'Playfair Display', serif;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Full-screen background image */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;     /* Makes it fill the screen nicely without distortion */
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
    z-index: -1;
}

.content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 1;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

p {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.back-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border: 2px solid white;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    backdrop-filter: blur(5px); /* Nice frosted glass effect */
}

.back-button:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    p {
        font-size: 1.2rem;
    }
}