@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --gold: #c9a84c;
    --gold-light: #e4cc7a;
    --gold-dim: rgba(201, 168, 76, 0.15);
    --dark: #08080c;
    --dark-surface: #0e0e14;
    --dark-card: #13131d;
    --text: #d4d0c8;
    --text-muted: #8a8678;
    --accent: #8b2e2e;
    --border: #252535;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Crimson Text", Georgia, serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.8;
    font-size: 18px;
}

h1, h2, h3, h4, nav a {
    font-family: "Cinzel", "Times New Roman", serif;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--gold-light);
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(8, 8, 12, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    list-style: none;
    padding: 1.1rem 2rem;
}

nav ul li a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--gold);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('img/hero-bg.jpg') center/cover no-repeat;
    filter: brightness(0.3) saturate(0.7);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(139, 46, 46, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(8, 8, 12, 1) 0%, transparent 40%),
        linear-gradient(to bottom, rgba(8, 8, 12, 0.3) 0%, transparent 30%, rgba(8, 8, 12, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    max-width: 400px;
    width: 80%;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.3));
}

.hero-content h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: var(--gold);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 60px rgba(201, 168, 76, 0.3), 0 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.hero-content .subtitle {
    font-family: "Crimson Text", serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
}

.hero-content .tagline {
    font-size: 1.15rem;
    max-width: 620px;
    color: var(--text);
    line-height: 2;
}

.scroll-hint {
    margin-top: 3.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: "Cinzel", serif;
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(4px); }
}

.section-break {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.section-break::before,
.section-break::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}

.section-break .ornament {
    color: var(--gold);
    font-size: 1.2rem;
    opacity: 0.5;
}

section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

section h2 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.4rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

section .section-desc {
    color: var(--text-muted);
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.5s;
}

.about-image:hover img {
    filter: brightness(1.1);
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    pointer-events: none;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.8rem 1rem;
    text-align: center;
    transition: border-color 0.3s;
}

.stat-card:hover {
    border-color: var(--gold);
}

.stat-card .number {
    font-family: "Cinzel", serif;
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 700;
}

.stat-card .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.3rem;
    font-family: "Cinzel", serif;
}

.companions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.companion-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.companion-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.companion-portrait {
    display: flex;
    justify-content: center;
    padding: 1.5rem 1.5rem 0;
    background: linear-gradient(to bottom, rgba(201, 168, 76, 0.05), transparent);
}

.companion-portrait img {
    width: 110px;
    height: 170px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid var(--border);
    transition: border-color 0.3s;
    image-rendering: auto;
}

.companion-card:hover .companion-portrait img {
    border-color: var(--gold);
}

.companion-card .card-body {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.companion-card h3 {
    color: var(--gold-light);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.companion-card .role {
    font-family: "Cinzel", serif;
    font-size: 0.65rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.companion-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: left;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    transition: border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    border-color: var(--gold);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card h3 {
    color: var(--gold-light);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/10;
    border: 1px solid var(--border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(8, 8, 12, 0.9), transparent);
    font-family: "Cinzel", serif;
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.quotes-section {
    position: relative;
    background: url('img/quotes-bg.jpg') center/cover no-repeat;
    padding: 6rem 2rem;
}

.quotes-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 12, 0.85);
}

.quotes-container {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.quotes-container h2 {
    text-align: center;
    margin-bottom: 0.4rem;
}

.quotes-container .section-desc {
    text-align: center;
    margin-bottom: 3rem;
}

.quote-block {
    padding: 1.8rem 2rem;
    margin-bottom: 1.5rem;
    background: rgba(19, 19, 29, 0.6);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    backdrop-filter: blur(4px);
}

.quote-block p {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 0.6rem;
    line-height: 1.8;
}

.quote-block cite {
    color: var(--gold);
    font-size: 0.85rem;
    font-family: "Cinzel", serif;
    letter-spacing: 1px;
    font-style: normal;
}

footer {
    text-align: center;
    padding: 4rem 2rem;
    border-top: 1px solid var(--border);
    background: var(--dark-surface);
}

footer .footer-ornament {
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.4;
    margin-bottom: 1.5rem;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    nav ul {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-image {
        aspect-ratio: 16/9;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .companions-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-strip {
        grid-template-columns: 1fr;
    }

    section {
        padding: 3.5rem 1.25rem;
    }
}
