/* Import Symphony Pro font */
@font-face {
    font-family: 'Symphony Pro';
    src: url('../fonts/symphony-pro-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


:root {
    --color-lightest: rgb(252, 250, 245);
    --color-light: rgb(249, 245, 234);
    --color-muted: #3f6444;
    --color-dark: #113616;
}

.hero_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 110vh;
    background-image: url('../images/wedding_hero_moved_right.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: var(--color-lightest);
    text-shadow: 0px 1px 2px #000000;
}

.hero_bobby {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px; /* Container height smaller than font size */
    margin-bottom: -10px; /* Negative margin for overlap */
}

.hero_bobby h1 {
    font-size: 120px;
    line-height: 80px; /* Match container height */
    font-weight: normal;
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
}

.hero_and {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px; /* Container height smaller than font size */
    margin-bottom: -10px; /* Negative margin for overlap */
}

.hero_and h1 {
    font-size: 100px;
    line-height: 80px; /* Match container height */
    font-weight: normal;
    font-family: 'Symphony Pro';
    font-style: italic;
    margin: 0;
}

.hero_karen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px; /* Container height smaller than font size */
    margin-bottom: 10px; /* Space before the next element */
}

.hero_karen h1 {
    font-size: 120px;
    line-height: 80px; /* Match container height */
    font-weight: normal;
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
}

.hero_text {
    display: block;
    margin: 40px 0;
    text-align: center;
}

.hero_text h1 {
    font-size: 32px;
    font-weight: normal;
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
}

.details_text {
    font-family: 'Cormorant Garamond', serif;
}

.details_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
}

.details_image_border_1 {
    width: 450px;
    height: auto;
    padding: 15px;
    border: 5px solid var(--color-dark);
    box-sizing: border-box;
    border-radius: 3px;
}
.details_image_border_2 {
    padding: 25px;
    border: 5px solid var(--color-dark);
    height: auto;
    width: 100%;    
    box-sizing: border-box;
    border-radius: 3px;
}

.details_image_border_2 img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 2px;
}   

.details_text_container {
    margin: 40px 0px;
    width: 45%;
    height: auto;
    text-align: center;
    min-width: 300px;
}

.details_container {
    background-color: var(--color-light);
} 


.details_text_1 {
    font-size: 64px;
    line-height: 50px;
    font-weight: normal;
    color: var(--color-dark);
    font-family: 'Symphony Pro', serif;
    margin: 0;
}
.details_text_2 {
    font-size: 32px;
    line-height: 24px;
    font-weight: normal;
    color: var(--color-dark);
    font-family: 'Symphony Pro', serif;
    margin: 0;
}
.details_text_3 {
    font-size: 32px;
    font-weight: normal;
    color: var(--color-dark);
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
}


.rsvp_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: var(--color-muted);
    padding: 80px 0px;
    min-height: 60vh;
    width: 100%;
}

.rsvp_text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    text-align: center;   

}
.rsvp_text img {
    width: 100%;
    max-width: 100%;
}

.rsvp_text h1 {
    font-size: 50px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Symphony Pro', serif;
    color: var(--color-lightest);
    margin: 40px 0;
    width: 100%;
}

.rsvp_text p {
    font-size: 18px;
    line-height: 1.5;
    font-family: 'Symphony Pro', serif;
    margin-bottom: 10px;
}


@media (max-width: 768px) {
 
.hero_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 110vh;
    background-image: url('../images/wedding_hero_mobile.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: var(--color-lightest);
}

.hero_bobby {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px; /* Container height smaller than font size */
    margin-bottom: -10px; /* Negative margin for overlap */
}

.hero_bobby h1 {
    font-size: 80px;
    line-height: 60px; /* Match container height */
    font-weight: normal;
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
}

.hero_and {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px; /* Container height smaller than font size */
    margin-bottom: -10px; /* Negative margin for overlap */
}

.hero_and h1 {
    font-size: 80px;
    line-height: 60px; /* Match container height */
    font-weight: normal;
    font-family: 'Symphony Pro';
    font-style: italic;
    margin: 0;
}

.hero_karen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px; /* Container height smaller than font size */
    margin-bottom: 10px; /* Space before the next element */
}

.hero_karen h1 {
    font-size: 80px;
    line-height: 60px; /* Match container height */
    font-weight: normal;

    font-family: 'Cormorant Garamond', serif;
    margin: 0;
}

.hero_text {
    display: block;
    margin: 40px 0;
    text-align: center;
}

.hero_text h1 {
    font-size: 24px;
    font-weight: normal;
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
}
    

}