:root {
    --bg-color: #050505;
    --card-bg: #0a0a0a;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --gold: #d4af37;
    --gold-dim: #8a702a;
    --gold-bright: #f9d976;
    --border-color: #1f1f1f;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

::selection {
    background: var(--gold-dim);
    color: #fff;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.dark-bg {
    background: linear-gradient(180deg, rgba(5,5,5,0) 0%, rgba(15,15,15,0.8) 50%, rgba(5,5,5,0) 100%);
}

.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Subtle geometric pattern overlay could go here via radial-gradient */
    background-image: radial-gradient(circle at center, transparent 0%, #050505 120%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    animation: fadeIn 2s ease-out;
}

.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.hero h1 {
    font-size: 3.5rem;
    background: linear-gradient(45deg, var(--gold-dim), var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 300;
    letter-spacing: 0.2em;
}

.scroll-indicator {
    margin-top: 3rem;
    animation: bounce 2s infinite;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 2rem;
    color: var(--gold);
}

/* Intro */
.intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Cards */
.card, .wisdom-card, .text-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 4px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover, .wisdom-card:hover, .text-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-dim);
}

.card h3, .wisdom-card h3, .text-item h3 {
    margin-bottom: 1rem;
    color: var(--gold);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 10px;
    display: inline-block;
}

/* Texts Section Specifics */
.text-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Principles List */
.principles-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    border-left: 1px solid var(--gold-dim);
    padding-left: 30px;
}

.principles-list li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.principles-list strong {
    color: var(--gold-bright);
    display: block;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}

.scrl {
    font-family: var(--font-heading);
    color: var(--gold-dim);
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.small {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}
