/* Custom material symbols settings */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

body {
    background-color: #000000;
    color: #e5e2e1;
    font-family: 'Manrope', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.editorial-text {
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.05em;
}

/* Base styles for smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Decorative Separator */
.section-separator {
    width: 40px;
    height: 1px;
    background-color: #e5e2e1;
    margin: 20px auto;
    opacity: 0.4;
}

/* Hero Floating Card */
.hero-card {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    display: flex;
    gap: 30px;
    max-width: 900px;
}

@media (max-width: 768px) {
    .hero-card {
        flex-direction: column;
        padding: 20px;
    }
}

.hero-card-img {
    width: 400px;
    height: 300px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-card-img {
        width: 100%;
        height: 200px;
    }
}

/* Navigation Links */
.nav-link {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.6;
}

/* Access Table Styles */
.access-item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.access-label {
    width: 120px;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: rgba(229, 226, 225, 0.5);
    text-transform: uppercase;
}

.access-value {
    flex: 1;
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}
