/* General Styles */
body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #fff;
    color: #444;
    margin: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    padding: 60px 0;
    background-color: #f2f2f2;
}

header h1 {
    font-size: 3.5em;
    margin: 0;
    font-weight: 300;
}

header p {
    font-size: 1.3em;
    color: #777;
}

/* Countdown */
#countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 40px 0;
    font-size: 1.5em;
    font-weight: 200;
}

#countdown > div {
    text-align: center;
}

/* Sections */
section {
    padding: 50px 20px;
    border-bottom: 1px solid #f0f0f0;
}

section:last-child {
    border-bottom: none;
}

h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 40px;
    font-weight: 300;
}

.couple, .location {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.couple > div, .location > div {
    flex: 1;
    text-align: center;
}

.couple img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}

.location iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    background-color: #333;
    color: #f2f2f2;
    font-weight: 200;
}
