/* Import your custom font */
@font-face {
    font-family: 'YourCustomFont';
    src: url('fonts/YourFont.otf') format('opentype'),
         url('fonts/YourFont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'YourCustomFont', 'Georgia', serif;
    background-color: #f8f6ef;
}

.header {
    text-align: center;
    padding: 60px 20px 20px;
}

.header h1 {
    font-size: 3em;
    font-weight: 300;
    letter-spacing: 2px;
}

nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 1.1em;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

#home{
    color:#828d50;
}

#schedule{
    color:#8eb6d1;
}

#accommodations{
    color:#f1a6a9;
}

#faqs{
    color:#94a0b9;
}

#rsvp{
    color:#ff751f;
}

.image-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    min-height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-box {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Left image - slightly forward and higher */
.image-box:nth-child(1) {
    width: 450px;
    height: 350px;
    left: calc(50% - 380px);
    top: 20px;
    z-index: 2;
}

/* Right image - slightly behind, overlapping, and lower */
.image-box:nth-child(2) {
    width: 450px;
    height: 350px;
    right: calc(50% - 380px);
    top: 90px;
    z-index: 1;
}

/* Responsive design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }

    nav {
        flex-wrap: wrap;
        gap: 20px;
    }

    nav a {
        font-size: 1em;
    }

    .image-container {
        min-height: 650px;
        padding: 40px 20px;
    }

    .image-box:nth-child(1) {
        width: 85%;
        height: 280px;
        left: 5%;
        top: 20px;
    }

    .image-box:nth-child(2) {
        width: 85%;
        height: 280px;
        right: 5%;
        top: 150px;
    }

    .accommodations-title {
        font-size: 2em;
        letter-spacing: 10px;
    }
    
    .book-now-btn {
        padding: 15px 40px;
        font-size: 1em;
        letter-spacing: 2px;
    }
}

.accommodations-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 80px 20px;
}

.accommodations-title {
    font-size: 3em;
    color: #f1a6a9;
    font-weight: 300;
    letter-spacing: 15px;
    margin-bottom: 60px;
    text-align: center;
}

.book-now-btn {
    display: inline-block;
    padding: 18px 50px;
    background-color: #fabec0;
    color: #e63781;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.2em;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 166, 169, 0.3);
}

.book-now-btn:hover {
    background-color: #e08e91;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(241, 166, 169, 0.4);
}