/* assets/css/sas.css */
body {
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.sas-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* --- LOGO / TITLE --- */
.sas-title {
    font-family: var(--font-sacred);
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--text);
    margin-bottom: 3rem;
    animation: breathing 4s infinite ease-in-out;
}

@keyframes breathing {

    0%,
    100% {
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    }
}

/* --- DOORS --- */
.doors-container {
    display: flex;
    gap: 4rem;
}

.door {
    font-family: var(--font-tech);
    font-size: 1.2rem;
    color: var(--text);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.door::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: width 0.4s ease;
}

.door:hover {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    color: var(--accent);
}

.door:hover::after {
    width: 100%;
}