@import '_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css';

@font-face {
    font-family: 'Citadel Script';
    src: url('/fonts/citadel-script-std-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.hero-section {
    position: relative;
    height: 100%;
    min-height: 120vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    overflow: hidden;
    background-image: url('/images/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section-extended {
    position: relative;
    height: 100%;
    min-height: 160vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 140px;
    overflow: hidden;
    background-image: url('/images/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.corner-image-top-left {
    content: '';
    position: absolute;
    top: -60px;
    right: -90px;
    width: 300px;
    height: 300px;
    background-image: url('/images/corner-image.png');
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
    pointer-events: none;    
}
.corner-image-top-right {
    position: absolute;
    top: -70px;
    left: -95px;
    width: 200px;
    height: 200px;
    background-image: url('/images/corner-image-2.png');
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    pointer-events: none;
}
.corner-image-bottom-left {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -90px;
    width: 300px;
    height: 300px;
    background-image: url('/images/corner-image.png');
    background-size: contain;
    background-position: bottom left;
    background-repeat: no-repeat;
    pointer-events: none;
    transform: rotate(180deg);
}

/* RSVP Button Styling */
.rsvp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f36b6f;
    color: white;
    font-size: 1.2rem;
    padding: 0 40px;
    height: 40px;
    margin-top: 20px;
    font-family: 'Arimo', sans-serif;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    line-height: 1;
}

.rsvp-button:hover {
    background-color: #e55a5e;
    text-decoration: none;
}

.rsvp-button:active {
    background-color: #d54a4e;
}

.rsvp-button:visited {
    color: white;
    text-decoration: none;
}