/* Scintilla-IT - Dark Mysterious Theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    background-color: #373b40;
}

body {
    background-color: #373b40;
    background-image: url('baseressources/background.png');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: Georgia, 'Palatino Linotype', Palatino, 'Book Antiqua', serif;
    color: #f5f0e6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header with Logo */
.site-header {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
}

.logo {
    height: 280px;
    width: auto;
    opacity: 0.85;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

/* Navigation Menu */
.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0.5rem 0;
    letter-spacing: 0.25em;
}

.menu-item {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.menu-item:hover {
    color: #f5deb3;
    text-shadow: 0 0 15px rgba(245, 222, 179, 0.7);
}

.menu-item.active {
    color: #fffef5;
    text-shadow: 0 0 20px rgba(255, 250, 220, 0.6);
}

.menu-separator {
    color: rgba(212, 175, 55, 0.5);
    font-weight: 300;
}

/* Main Content */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    margin-top: 1rem;
    transition: opacity 300ms ease-in-out;
}

.content.fade-out {
    opacity: 0;
}

/* Manifesto mode */
.content.manifesto-mode {
    max-width: 800px;
}

.content.manifesto-mode .tagline-secondary {
    font-style: normal;
}

/* Beliefs container - keywords in a row */
.beliefs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.3rem;
}

.belief-separator {
    color: rgba(212, 175, 55, 0.5);
    font-size: 1.2rem;
}

/* Individual belief item */
.belief-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.belief-keyword {
    color: #d4af37;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: all 300ms ease;
    padding: 0.2rem 0.5rem;
}

.belief-item:hover .belief-keyword {
    color: #fffef5;
    text-shadow: 0 0 20px rgba(255, 250, 220, 0.6);
}

.belief-item.expanded .belief-keyword {
    color: #fffef5;
    text-shadow: 0 0 25px rgba(255, 250, 220, 0.7);
}

/* Expandable content - hidden by default */
.belief-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 400ms ease, opacity 300ms ease, margin 300ms ease;
    text-align: center;
    margin-top: 0;
}

.belief-item.expanded .belief-content {
    max-height: 300px;
    opacity: 1;
    margin-top: 1rem;
}

.belief-title {
    font-size: 1.1rem;
    font-weight: 400;
    color: #f5deb3;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(245, 222, 179, 0.4);
}

.belief-text {
    font-size: 1rem;
    font-weight: 300;
    color: #c9b896;
    line-height: 1.6;
    max-width: 600px;
}

/* Scrambled reveal effect */
.char {
    opacity: 0;
    transition: opacity 400ms ease;
}

.char.visible {
    opacity: 1;
}

.tagline-primary {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 400;
    color: #fffef5;
    letter-spacing: 0.15em;
    text-shadow:
        0 0 20px rgba(255, 250, 220, 0.4),
        0 0 40px rgba(212, 175, 55, 0.2);
    margin-bottom: 1.5rem;
}

.tagline-secondary {
    font-size: clamp(0.95rem, 1.5vw, 1.4rem);
    font-weight: 300;
    color: #c9b896;
    letter-spacing: 0.3em;
    text-shadow: 0 0 15px rgba(201, 184, 150, 0.3);
    font-style: italic;
}

/* Responsive - Mid-range (DPI scaling / smaller desktops) */
@media (max-width: 1200px) {
    .logo {
        height: 240px;
    }

    .main-nav {
        gap: 1.5rem;
    }

    .menu-item {
        font-size: 0.85rem;
    }

    .belief-keyword {
        font-size: 1.1rem;
    }
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    /* Fix mobile background issues - fixed attachment is buggy on mobile browsers */
    body {
        background-attachment: scroll;
        min-height: 100dvh;
        min-height: 100vh; /* fallback for older browsers */
        overflow-x: hidden;
    }

    /* Stable content dimensions to prevent reflow during ENIGMA animation */
    .content {
        min-height: 200px;
    }

    .logo {
        height: 200px;
    }

    .main-nav {
        gap: 1rem;
    }

    .menu-item {
        font-size: 0.8rem;
    }

    .belief-keyword {
        font-size: 1rem;
        letter-spacing: 0.15em;
    }

    .belief-title {
        font-size: 1rem;
    }

    .belief-text {
        font-size: 0.9rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .logo {
        height: 150px;
    }

    .tagline-primary {
        font-size: 1.8rem;
        letter-spacing: 0.1em;
    }

    .tagline-secondary {
        font-size: 0.95rem;
        letter-spacing: 0.15em;
    }

    .main-nav {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu-item {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
    }

    .content {
        padding: 1rem;
    }

    .beliefs-container {
        gap: 0.2rem;
    }

    .belief-keyword {
        font-size: 0.85rem;
        letter-spacing: 0.1em;
        padding: 0.15rem 0.3rem;
    }

    .belief-separator {
        font-size: 1rem;
    }

    .belief-title {
        font-size: 0.95rem;
    }

    .belief-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .belief-item.expanded .belief-content {
        max-height: 400px;
    }
}
