/* Global Styles */
:root {
    --primary-gold: #d4af37;
    --primary-purple: #1a0b2e;
    --secondary-purple: #2d1b4e;
    --text-light: #f5f5f5;
    --text-dim: #b3b3b3;
    --font-serif: 'Shippori Mincho', serif;
    --font-alt-serif: 'Zen Old Mincho', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-purple);
    color: var(--text-light);
    font-family: var(--font-serif);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-alt-serif);
    font-weight: 900;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(26, 11, 46, 0.4) 0%, rgba(26, 11, 46, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
}

.logo {
    font-size: 5rem;
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    margin-bottom: 2rem;
    animation: pulseGlow 3s infinite;
}

.catchphrase {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
}

.scrolldown {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

/* Sections */
.section {
    padding: 8rem 2rem;
    position: relative;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-gold);
    border-bottom: 1px solid var(--primary-gold);
    display: inline-block;
    padding-bottom: 0.5rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Founder */
.founder-card {
    display: flex;
    flex-wrap: wrap;
    background: rgba(45, 27, 78, 0.6);
    border: 1px solid var(--primary-gold);
    padding: 2rem;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    align-items: center;
}

.founder-image img {
    max-width: 300px;
    width: 100%;
    box-shadow: 10px 10px 0 var(--primary-gold);
    margin-right: 2rem;
    transition: transform 0.5s;
}

.founder-image img:hover {
    transform: scale(1.05) rotate(2deg);
}

.founder-text {
    flex: 1;
    min-width: 300px;
}

.purpose {
    font-weight: bold;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Doctrine */
.doctrine {
    background: linear-gradient(180deg, var(--primary-purple) 0%, var(--secondary-purple) 50%, var(--primary-purple) 100%);
}

.doctrine-list li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.doctrine-list li::before {
    content: "✦";
    color: var(--primary-gold);
    margin-right: 10px;
}

.doctrine-list li:hover {
    color: var(--primary-gold);
    transform: scale(1.1);
    text-shadow: 0 0 10px var(--primary-gold);
}

.highlight {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-gold);
}

.taboo-box {
    margin-top: 4rem;
    border: 2px solid #ff4444;
    padding: 2rem;
    text-align: center;
    background: rgba(50, 0, 0, 0.3);
}

.taboo-box h3 {
    color: #ff4444;
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Salvation & Enemy */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    text-align: center;
    border-top: 3px solid var(--primary-gold);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.enemy-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.enemy-list li {
    font-size: 2rem;
    color: #888;
    text-decoration: line-through;
    opacity: 0.5;
    transition: 1s;
}

.enemy-list li:hover {
    color: #ff0000;
    text-decoration: none;
    opacity: 1;
    transform: rotate(10deg) scale(1.5);
    cursor: not-allowed;
}

/* Rituals */
.ritual-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.ritual-col {
    flex: 1;
    min-width: 300px;
    background: var(--secondary-purple);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.ritual-col h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-gold);
}

/* Goods */
.goods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.goods-item {
    text-align: center;
    background: #fff;
    color: #000;
    padding: 1rem;
    border-radius: 4px;
    transition: transform 0.3s;
}

.goods-item:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 0 20px var(--primary-gold);
}

.goods-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.price {
    font-weight: bold;
    color: #bf0000;
    font-size: 1.2rem;
}

.small-text {
    font-size: 0.6rem;
    word-break: break-all;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.question {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

/* Voice */
.voice-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.voice-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 50px;
}

.voice-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
    border: 2px solid var(--primary-gold);
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
    background: #000;
}

/* Animations */
@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }

    50% {
        text-shadow: 0 0 40px rgba(212, 175, 55, 1);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .catchphrase {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-content {
        padding: 1rem;
        max-width: 100%;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
        width: 100%;
        line-height: 1.3;
        border-bottom: none;
        padding-bottom: 1rem;
    }

    .section-title::after {
        content: "";
        display: block;
        width: 50%;
        height: 1px;
        background: var(--primary-gold);
        margin: 0.5rem auto 0;
    }

    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .founder-image img {
        margin-right: 0;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .founder-text {
        min-width: unset;
        width: 100%;
    }

    .ritual-columns {
        gap: 2rem;
    }

    .goods-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .voice-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .voice-img {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 100px;
        height: 100px;
    }

    .enemy-list li {
        font-size: 1.5rem;
    }
}