/* === CSS RESET & GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, .script-font {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #2a5c4d;
}

a {
    color: #7a9b76;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2a5c4d;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 4rem 2rem;
}

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

/* === HEADER / HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: #2a5c4d;
    /* background: url('save_the_date.jpg') center/cover no-repeat; */
}


/* === SAVE THE DATE IMAGE SECTION === */
.save-the-date-container {
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Makes it at least full screen height */
}

.save-the-date-container .container {
    width: 100%;
    text-align: center;
}

.save-the-date-image {
    max-width: 90%; /* Critical: Never wider than 90% of its container */
    height: auto; /* Maintains the image's aspect ratio */
    display: block;
    margin: 0 auto; /* Centers the image horizontally */
    border-radius: 8px; /* Optional: Slightly softens the edges */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow */
}



.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero .ampersand {
    font-weight: 300;
}

.hero .subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    border-top: 1px solid #2a5c4d;
    padding-top: 1rem;
    display: inline-block;
}

.date-place {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-top: 2rem;
    text-transform: uppercase;
}

.cta-container {
    margin-top: 3rem;
}

.cta-button {
    border: 1px solid #2a5c4d;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-size: 1.1rem;
}

/* === SECTION STYLES === */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: #7a9b76;
    margin: 1rem auto;
}

.section-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.light-bg {
    background: #f8f9f7;
}

/* === SCHEDULE SECTION === */
.timeline {
    list-style: none;
    max-width: 600px;
    margin: 3rem auto;
}

.timeline li {
    padding: 1.5rem;
    margin-bottom: 2rem;
    background: #f8f9f7;
    border-left: 4px solid #7a9b76;
    border-radius: 0 8px 8px 0;
}

.time {
    font-weight: 600;
    color: #2a5c4d;
    display: block;
    margin-bottom: 0.5rem;
}

.address-text {
    text-align: center;
    font-size: 1.1rem;
}

/* === RSVP FORM === */
.rsvp-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.rsvp-form {
    background: #f8f9f7;
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #555;
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.attendance-label {
    margin-bottom: 1rem;
}

.attendance-options label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.attendance-options input[type="radio"] {
    width: auto;
    margin-right: 0.5rem;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #7a9b76;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #2a5c4d;
}

/* === FOOTER === */
footer {
    text-align: center;
    padding: 2rem;
    background: #2a5c4d;
    color: #f0f0f0;
    font-size: 0.9rem;
}

.footer-nav {
    margin-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.8;
}

.footer-nav a {
    color: #ccc;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero .subtitle {
        font-size: 1.4rem;
    }

    .date-place {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    section {
        padding: 3rem 1.5rem;
    }

    .rsvp-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .timeline li {
        padding: 1rem;
    }
}

/* === ACCOMMODATIONS SECTION === */
.accommodation-category {
    margin-bottom: 4rem;
}

.accommodation-category h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #2a5c4d;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dde5e2;
}

.accommodation-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 3px solid #7a9b76;
}

.accommodation-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #2a5c4d;
    margin-bottom: 0.5rem;
}

.accommodation-price {
    font-weight: 600;
    color: #7a9b76;
    margin-bottom: 0.5rem;
}

.accommodation-location {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.accommodation-link {
    display: inline-block;
    margin-top: 0.8rem;
    padding: 0.4rem 1rem;
    background: #f0f5f3;
    border-radius: 4px;
    color: #2a5c4d;
    font-weight: 400;
    font-size: 0.9rem;
}

.accommodation-link:hover {
    background: #e1eae6;
}

.camping-list, .resource-links {
    margin: 1rem 0 1rem 1.5rem;
}

.resource-links li {
    margin-bottom: 0.5rem;
}