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

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

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('wedding-photo.jpg'); /* Replace with your wedding photo */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.names {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: #fff;
}

.title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 30px;
}

.details > div {
    flex: 1;
    min-width: 200px;
}

.details h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f8f8f8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.details p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.message {
    font-style: italic;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    color: #f8f8f8;
}

/* Responsive design */
@media (max-width: 768px) {
    .names {
        font-size: 2.5rem;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .content {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .details {
        flex-direction: column;
        text-align: center;
    }
    
    .details > div {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .names {
        font-size: 2rem;
    }
    
    .title {
        font-size: 1.3rem;
    }
    
    .details h3 {
        font-size: 1.1rem;
    }
    
    .details p {
        font-size: 1rem;
    }
    
    .message {
        font-size: 1rem;
    }
}