html {
    font-size: 40px;
    font-family: 'Jacquard 12', system-ui;
    background: #2A1F00;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #2A1F00 0%, #2A1F00 70%);
}

/* container sized to the arch so the enter point stays locked to the opening */
.archway {
    position: relative;
    display: inline-block;
    max-height: 96vh;
}

.archway img {
    display: block;
    max-height: 96vh;
    max-width: 96vw;
    height: auto;
    width: auto;
    box-shadow: 0 0 8px 8px #2A1F00;
}

/* the doorway into the site, sitting in the middle of the arch's opening */
.enter {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* diffusive light glowing behind the text */
.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130px;
    height: 130px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(255, 250, 235, 0.95) 0%,
        rgba(255, 240, 210, 0.55) 30%,
        rgba(255, 230, 190, 0.2) 55%,
        rgba(255, 230, 190, 0) 75%);
    filter: blur(6px);
    pointer-events: none;
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.08); }
}

.label {
    position: relative;
    font-family: 'Jacquard 12', system-ui;
    font-size: 40px;
    line-height: 1;
    color: #2a1a10;
    letter-spacing: 2px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.enter:hover .label {
    color: #000;
    text-shadow: 0 0 12px rgba(255, 245, 220, 0.9);
}

.enter:hover .glow {
    animation-play-state: paused;
    opacity: 1;
}

/* keep the enter point legible on small screens */
@media (max-width: 500px) {
    .glow { width: 150px; height: 150px; }
    .label { font-size: 44px; }
}
