/* Wedding Website Shared Styles */

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f8ec; /* Soft, romantic background */
    color: #341539; /* Dark grey for text */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    padding: 20px;
    background-color: #f4f8ec; /* White container background */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    font-family: 'MonteCarlo';
    font-size: 3.5em;
    color: #341539; 
    margin-top: 0;
    margin-bottom: 10px;
}

h2 {
    font-family: 'MonteCarlo';
    font-size: 2em;
    color: #341539;
    margin-top: 30px;
    margin-bottom: 15px;
}

h3 {
    font-family: 'MonteCarlo';
    font-size: 1.4em;
    color: #341539;
    margin-top: 25px;
    margin-bottom: 10px;
}

.details {
    font-size: 1em;
    line-height: 1.6;
    color: #341539;
    margin-bottom: 20px;
    text-align: left;
}

.back-link {
    font-size: 1em;
    margin-top: 30px;
}

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

a:hover {
    text-decoration: underline;
}

/* Index page specific styles */
.couple-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 30px;
    border: 5px solid #f4f8ec; /* Light border for photo */
}

.date-announcement {
    font-size: 1.8em;
    color: #341539;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-note {
    font-size: 0.9em;
    color: #341539;
    margin-top: 30px;
}

.centered {
    text-align: center;
}