:root {
    --primary-color: #d4af37;
    /* Gold */
    --secondary-color: #1a1a2e;
    /* Dark Blue/Black */
    --accent-color: #b22222;
    /* Deep Red */
    --text-color: #e0e0e0;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    height: 100vh;
    overflow-y: scroll;
}

body {
    font-family: var(--font-body);
    background-color: #050505;
    color: var(--text-color);
    margin: 0;
    min-height: 100vh;
}

/* --- SECTIONS --- */
.section-full {
    height: 100vh;
    /* Enforced height for snap */
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    /* Force stop at each section */
}

/* --- SECTION 1: INTRO --- */
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.overlay-intro {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: -1;
}

/* --- GLOBAL BRANDING (FIXED) --- */

/* Main Logo */
.logo-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    text-align: center;
    pointer-events: none;
}

.main-logo {
    max-width: 320px;
    margin-top: -10px;
    transition: transform 0.3s ease;
    pointer-events: auto;
    /* Clickable if needed */
}

.main-logo:hover {
    transform: scale(1.02);
}

/* Small Logo */
.brand-wrapper {
    position: fixed;
    top: 30px;
    left: 40px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    /* Reduced gap */
    pointer-events: none;
    /* Let clicks pass through wrapper */
}

.brand-wrapper>* {
    pointer-events: auto;
    /* Re-enable clicks for children */
}

.small-logo-link {
    /* Previously fixed, now static inside flex parent */
    transition: opacity 0.3s;
    display: block;
}

.small-logo {
    height: auto;
    max-height: 70px;
    /* Reduced further to match smaller text */
    width: auto;
    transition: transform 0.3s;
}

.small-logo-link:hover .small-logo {
    transform: scale(1.05);
}

.brand-text {
    color: #a6a6a6;
    /* Darker gray for subtitle */
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
    /* Reduced shadow */
    font-family: var(--font-body);
    /* Simpler font for all */
}

.brand-title {
    font-family: var(--font-body);
    /* Simpler font (Outfit) instead of Cinzel */
    font-weight: 600;
    font-size: 1rem;
    /* Smaller size */
    margin-bottom: 0.1rem;
    color: #bfbfbf;
    /* Darker gray (was #d9d9d9) */
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 0.75rem;
    /* Smaller size */
    opacity: 0.8;
    line-height: 1.3;
    font-weight: 300;
}

/* Lang Toggle */
.lang-toggle {
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 100;
    background: transparent;
    padding: 0;
}

.lang-toggle .btn {
    opacity: 0.6;
    transition: opacity 0.3s;
}

.lang-toggle .btn.active,
.lang-toggle .btn:hover {
    opacity: 1;
    color: var(--primary-color) !important;
}

/* --- TYPOGRAPHY & ANIMATIONS --- */

.hero-title {
    font-family: var(--font-heading) !important;
    font-weight: 700;
    font-size: 3.5rem;
    text-shadow: 0 0 10px #000, 0 0 20px #000, 0 0 30px #000;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    text-shadow: 0 0 10px #000, 0 0 20px #000;
    line-height: 1.6;
}

/* Site Footer */
.site-footer {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.animate-fade-in-down {
    animation: fadeInDown 1s ease-out forwards;
    opacity: 0;
    transform: translateY(-50px);
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-full {
        height: auto;
        min-height: 100vh;
        padding: 4rem 1rem;
    }

    .main-logo {
        max-width: 220px;
    }
}