/* -------------------------------
   BASIC BODY
-------------------------------- */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Almendra', serif;
    color: white;
    overflow: hidden;
    background: #000;
}

/* -------------------------------
   RIPPLE BACKGROUND
-------------------------------- */
.ripple-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://sexiestyanalive.neocities.org/assets/web%20background%20compressed.webp') center / cover no-repeat;
    z-index: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform, opacity;
}

/* -------------------------------
   CONTENT CONTAINER
-------------------------------- */
.content-container {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 2;
}

/* -------------------------------
   SECTION
-------------------------------- */
.section {
    position: absolute;
    top: 30vh;
    right: 12vw;
    transform: translateY(-50%);
    width: min(28vw, 430px);
    padding: 30px;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
}

/* Tablet */
@media (max-width: 1100px) {
    .section {
        right: 8vw;
        width: 40vw;
    }
}

/* Mobile */
@media (max-width: 800px) {
    .section {
        right: 4vw;
        width: 85vw;
        top: 40vh;
        padding: 20px;
        text-align: right;
    }
}

/* -------------------------------
   NAVBAR LINKS
-------------------------------- */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 25px;
}
.navbar a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    text-shadow:
        0 0 8px rgba(132,151,169,0.7),
        0 0 18px rgba(132,151,169,0.5),
        0 0 28px rgba(132,151,169,0.3);
    animation: none;
}

/* -------------------------------
   OTHER LINKS (subtle glow)
-------------------------------- */
a:not(.navbar a) {
    color: white;
    text-decoration: none;
    animation: glowPulse 3.5s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { 
        text-shadow: 0 0 6px rgba(255,255,255,0.5),
                     0 0 14px rgba(255,255,255,0.35);
    }
    50% { 
        text-shadow: 0 0 12px rgba(255,255,255,0.8),
                     0 0 28px rgba(255,255,255,0.6),
                     0 0 40px rgba(255,255,255,0.4);
    }
}

/* -------------------------------
   LOGO
-------------------------------- */
.logo-background {
    position: fixed;
    bottom: 50px;
    right: 20px;
    max-height: 320px;
    pointer-events: none;
    opacity: 0.25;
    filter: brightness(0.2) contrast(1.2);
    transition: max-height 0.3s ease, bottom 0.3s ease, right 0.3s ease, opacity 0.3s ease;
}

/* Mobile logo adjustments */
@media (max-width: 800px) {
    .logo-background {
        max-height: 15vw;
        bottom: 3vw;
        right: 3vw;
    }
}
