/* General Styling */
body {
    font-family:'Angella White';
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #ffffff;
    color: #050505;
    overflow-x: hidden;
}

/* Hero Section */
header.hero {
    height: 100vh;
    background: url('https://allthepics.net/image/Santorini-background.aTBYG') no-repeat center center/cover;
    position: relative;
    text-align: center;
    color: #fefefe;
    display: flex;
    align-items: center;
    justify-content: center;
}

header.hero .overlay {
    background: rgba(5, 5, 5, 0);
    padding: 2em;
    border-radius: 15px;
    animation: fadeIn 2s ease-in-out;
}

header.hero h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5em;
    margin: 0;
}

header.hero .date {
    font-size: 1.8em;
    margin-top: 0.5em;
}

/* Section Styling */
main {
    padding: 2em;
    max-width: 800px;
    margin: auto;
}

section {
    margin-bottom: 3em;
    text-align: center;
    padding: 2em;
    border-radius: 15px;
    background: #fdfdfd00;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5em;
    margin-bottom: 1em;
    color: #b56576;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5em;
}

.details-grid div {
    background: #f9f7f600;
    padding: 1em;
    border-radius: 10px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

/* RSVP Section */
.rsvp .contact-info p {
    font-size: 1.2em;
    margin: 0.5em 0;
}

/* Footer Styling */
footer {
    text-align: center;
    background: #b56576;
    color: #fff;
    padding: 1em 0;
    font-size: 1.2em;
}

footer span {
    font-family: 'Great Vibes', cursive;
    font-size: 1.5em;
    color: #fff5ee;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
