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

body {
    font-family: 'Lato', sans-serif;
    color: #fff;
    background-color: #2c3e50; /* Fallback color */
}

.hero {
    height: 100vh;
    width: 100%;
    background-image: url('venue.png'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Darkens image so text is readable */
}

.content {
    position: relative;
    text-align: center;
    z-index: 1;
    padding: 20px;
}

.names {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 10px;
}

.subtitle {
    letter-spacing: 5px;
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.divider {
    width: 60px;
    height: 1px;
    background: #fff;
    border: none;
    margin: 20px auto;
}

.details {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.tagline {
    font-style: italic;
    opacity: 0.8;
}
