body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    z-index: 1000; /* Ensures it stays above other elements */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    background-color: #7b293d; /* Matching the background color */
    text-align: center;
    height: auto;
}

.header-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-title {
    font-family: 'Crimson Pro', serif;
    font-size: 42px; /* Larger font size for the title */
    font-weight: bold; /* Stronger weight for the title */
    color: white;
    margin-bottom: 10px;
    width: 100%;

}

.section-title {
    font-family: 'Crimson Pro', serif;
    font-size: 28px; /* Larger font size for the title */
    font-weight: bold; /* Stronger weight for the title */
    color: #7b293d;
    margin-bottom: 10px;
    width: 100%;

}

.header-nav {
    font-family: 'Crimson Pro', serif;
    display: flex;
    gap: 5%;
    width: 100%;
}

.header-nav a {
    font-family: 'Georgia', serif;
    color: white;
    width: 100%;
    text-decoration: none;
    font-size: 15px; /* Smaller font size for the tabs */
    font-weight: lighter; /* Lighter weight for the tabs */
    position: relative;
}

.header-nav a::after {
    font-family: 'Georgia', serif;
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: white;
    transition: width .3s;
}

.header-nav a:hover::after {
    font-family: 'Georgia', serif;
    width: 100%;
}

        /* Mobile: Stack navigation links vertically */
        @media (max-width: 768px) {
            .header-nav {
                flex-direction: column;
                align-items: center;
            }
            .header-nav a {
                width: 100%;
                text-align: center;
            }
        }

.hero {
    background-image: url('images/mariage.jpeg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    width: 100%; /* Full width */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Moves content down */
    color: white;
    text-align: center;
    padding: 150px 100px; /* Increase top padding */

}

.hero-content {
    margin-top: 50px;
    font-family: 'Crimson Pro', serif;
    max-width: 60%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Adding a semi-transparent background for better text readability */
    border-radius: 10px;
}

.hero-text {
    font-family: 'Crimson Pro', serif;
    font-size: 48px; /* Larger font size for the hero text */
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-date {
    font-family: 'Crimson Pro', serif;
    font-size: 36px; /* Font size for the date */
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-location {
    font-size: 18px; /* Font size for the location */
    margin-bottom: 10px;
}

.hero2 {
    font-family: 'Crimson Pro', serif;
    background-image: url('images/montluel.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    height: 100vh; /* Full height */
    width: 100%; /* Full width */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;

}

h1 {
    font-family: 'Crimson Pro', serif;
    font-size: 24px;
    font-weight: bold;
}

h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 18px;
}

.description {
    font-family: 'Crimson Pro', serif;
    margin: 20px;
    font-size: 16px;
    color: #333;
}

.image-section {
    font-family: 'Crimson Pro', serif;
    display: flex;
    justify-content: center;
    margin: 20px;
}

.image-section img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-section {
    font-family: 'Crimson Pro', serif;
    background-color: #7b293d; /* Matching the background color */
    padding: 20px 0;
    text-align: center;
}

/* History Section */
.history-section {    
    font-family: 'Crimson Pro', serif;
    background-color: #d7bbbc;
    padding: 50px 20px;
    text-align: center;
}

.history-content {
    font-family: 'Crimson Pro', serif;
    width: 100%;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

/* Informations Section */
.informations-section {
    font-family: 'Crimson Pro', serif;
    background-color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.info-content {
    font-family: 'Crimson Pro', serif;
    width: 100%;
    margin: 0 auto;
    font-size: 1rem;
    color: #555;
}

.info-content ul {
    list-style: none;
    padding: 0;
    font-family: 'Crimson Pro', serif;
}

.info-content li {
    font-family: 'Georgia', serif;

    margin: 10px 0;
}

.info-content a {
    font-family: 'Crimson Pro', serif;
    color: #007bff;
    text-decoration: none;
}

.info-content a:hover {
    font-family: 'Crimson Pro', serif;
    text-decoration: underline;
}

/* Contacts Section */
.contacts-section {
    font-family: 'Crimson Pro', serif;
    background-color: #ffffff;
    padding: 20px 10px;
    text-align: center;
}

.contacts-content {
    font-family: 'Crimson Pro', serif;
    width: 100%;
    margin: 0 auto;
    font-size: 1rem;
    color: #555;
}

.contacts-content ul {
    font-family: 'Crimson Pro', serif;
    list-style: none;
    padding: 0;
}

.contacts-content li {
    font-family: 'Crimson Pro', serif;
    margin: 5px 0;
}

.contacts-content a {
    font-family: 'Crimson Pro', serif;
    color: #007bff;
    text-decoration: none;
}

.contacts-content a:hover {
    font-family: 'Crimson Pro', serif;
    text-decoration: underline;
}

body {
    font-family: 'Crimson Pro', serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

h1, h2 {
    font-family: 'Crimson Pro', serif;
    font-weight: bold;
    margin: 20px 0;
}

.capacity {
    font-family: 'Crimson Pro', serif;
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
}

.capacity h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.capacity-item {
    font-family: 'Crimson Pro', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
    text-align: left;
}

.bar {
    font-family: 'Crimson Pro', serif;
    width: 5px;
    height: 50px;
    background-color: #d4af37;
    display: inline-block;
}

.capacity-item p {
    font-family: 'Crimson Pro', serif;
    font-size: 18px;
    width: 100%;
    line-height: 1.5;
    text-align: left;
}

/* History Section */
.ceremony-section {
    font-family: 'Crimson Pro', serif;
    background-color: #d7bbbc;
    padding: 50px 20px;
    text-align: center;
}

.ceremony-content {
    font-family: 'Crimson Pro', serif;
    width: 100%;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.location {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between map and image */
    margin-top: 40px;
}

.map-container iframe {
    width: 500px;
    max-width: 500px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

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

.pdf-section {
    text-align: center;
    margin: 40px 0;
}

.pdf-section iframe,
.pdf-section embed {
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.paypal-donation {
    text-align: center;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 20px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
    margin: 50px auto;
    max-width: 800px;
    font-size: 1.5em;
}

.paypal-donation h2 {
    font-size: 22px;
    color: #333;
}

.paypal-donation p {
    font-size: 16px;
    color: #555;
}

.paypal-btn img {
    width: 180px;
    cursor: pointer;
}
@media (max-width: 768px) {
    .hero {
        padding: 100px 20px; /* Reduce side padding */
        height: auto; /* Allow height to adjust */
    }

    .hero-content {
        max-width: 90%; /* Increase width on smaller screens */
    }
}
@media (max-width: 768px) {
    .hero2 {
        padding: 50px 20px;
        height: auto; /* Adjust to content */
    }
}
@media (max-width: 768px) {
    .location {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .map-container iframe, .image-container img {
        width: 90%; /* Reduce width to prevent overflow */
    }
}
@media (max-width: 768px) {
    .capacity-item {
        flex-direction: column;
        text-align: center;
    }

    .bar {
        height: 30px; /* Reduce height for better spacing */
    }

    .capacity-item p {
        text-align: center;
        width: 100%;
    }
}
img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    .paypal-donation {
        padding: 20px;
        font-size: 1.2em;
        max-width: 90%;
    }
}
