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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: #a68b47;
}

ul {
    list-style: none;
}

/* Header */
header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

header .logo {
    text-align: center;
    margin-bottom: 20px;
}

header .logo img {
    max-width: 200px;
    border-radius: 50%;
    border: 5px solid #a68b47;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

nav {
    text-align: center;
}

nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #333;
    font-weight: bold;
    padding: 10px;
    transition: color 0.3s;
    font-family: 'Playfair Display', serif;
}

nav ul li a:hover {
    color: #a68b47;
}

/* Main */
main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
}

.hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.2em;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Intro Section */
.intro {
    text-align: center;
    margin-bottom: 40px;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.intro-content p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.intro-images img {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.intro-images img:hover {
    transform: scale(1.05);
}

/* Story Section */
.story {
    text-align: center;
    margin-bottom: 40px;
}

.story h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.story-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.story-text {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
    text-align: left;
}

.story-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.story-images {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.story-images img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Timeline Section */
.timeline {
    text-align: center;
    margin-bottom: 40px;
}

.timeline h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.timeline-image {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.timeline-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.timeline-text {
    flex: 2;
    min-width: 300px;
    padding-left: 20px;
}

.timeline-text h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.timeline-text p {
    color: #666;
    line-height: 1.8;
}

/* Schedule Section */
.schedule {
    text-align: center;
    margin-bottom: 40px;
}

.schedule h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.schedule-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.schedule-day {
    margin-bottom: 40px;
}

.schedule-day h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.schedule-events {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-event {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.schedule-time {
    font-weight: bold;
    color: #a68b47;
    margin-right: 20px;
    font-family: 'Playfair Display', serif;
}

.schedule-description {
    color: #666;
}

/* Location Section */
.location {
    text-align: center;
    margin-bottom: 40px;
}

.location h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.location-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.location-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.location-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.location-images img {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.location-images img:hover {
    transform: scale(1.05);
}

.map {
    margin-top: 30px;
}

.map iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Accommodation Section */
.accommodation {
    text-align: center;
    margin-bottom: 40px;
}

.accommodation h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.accommodation-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.accommodation-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.accommodation-content ul {
    margin-bottom: 20px;
}

.accommodation-content ul li {
    margin-bottom: 10px;
    color: #666;
}

.accommodation-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.accommodation-images img {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.accommodation-images img:hover {
    transform: scale(1.05);
}

/* Photos Section */
.photos {
    text-align: center;
    margin-bottom: 40px;
}

.photos h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.photos-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.photos-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery img {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Gifts Section */
.gifts {
    text-align: center;
    margin-bottom: 40px;
}

.gifts h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.gifts-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.gifts-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.gifts-content ul {
    margin-bottom: 20px;
}

.gifts-content ul li {
    margin-bottom: 10px;
    color: #666;
}

.button {
    display: inline-block;
    background-color: #a68b47;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.button:hover {
    background-color: #8a723a;
    transform: scale(1.05);
}

/* RSV Section */
.rsvp {
    text-align: center;
    margin-bottom: 40px;
}

.rsvp h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.rsvp-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.rsvp-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #a68b47;
    outline: none;
}

.form-group textarea {
    height: 100px;
}

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

footer p {
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero,
    .story-content,
    .timeline-item {
        flex-direction: column;
    }
    
    .hero-content,
    .story-text,
    .story-images,
    .timeline-image {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .timeline-text {
        padding-left: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .intro-images,
    .location-images,
    .accommodation-images {
        flex-direction: column;
        align-items: center;
    }
}