


/* General Styles */
body {
    font-family: 'Garamond', serif;
    background-color: #fdfdfd;
    color: #333;
    margin: 0;
}

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

/* Header */
header {
    text-align: center;
    padding: 50px 0;
    background-image: url('../img/MiPa0014sw.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

header h1 {
    font-size: 4em;
    margin: 0;
}

header p {
    font-size: 1.5em;
}

/* Countdown */
#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    font-size: 1.2em;
}

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

/* Sections */
section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

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

h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.couple, .location {
    display: flex;
    gap: 30px;
    align-items: center;
}

.couple > div, .location > div {
    flex: 1;
}

.couple img {
    width: 100%;
    border-radius: 50%;
}

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

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

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

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: white;
}


