/* src/css/welcome.css - GILDED STEEP DIAGONAL SPLIT */

.welcome {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: 500px;
    height: 100dvh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    background-color: #000;
    overflow: hidden;
}

.split-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.panel-top {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(0.7);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 65%);
}

.panel-bottom {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #A92D39; 
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 25px 20px;
    clip-path: polygon(0 65%, 100% 85%, 100% 100%, 0 100%);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.6);
}

.gilded-line-animated {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #C5A059, #FFF, #C5A059, transparent);
    z-index: 3;
    clip-path: polygon(0 64.6%, 100% 84.6%, 100% 85.4%, 0 65.4%);
}

.split-content {
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 10;
}

.split-tagline {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #C5A059;
    margin-bottom: 5px;
    display: block;
}

.split-names {
    font-family: var(--sacramento);
    font-size: 2.3rem;
    line-height: 1.1;
    margin-bottom: 12px;
}

.split-guest-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.btn-open-invitation {
    background: transparent;
    color: #fff;
    border: 1px solid #C5A059;
    padding: 10px 24px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.welcome.hide { display: none; }