@import url('https://fonts.googleapis.com/css2?family=Ballet:ital,wght@0,400;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:ital,wght@0,300;0,400;0,600;1,400&display=swap');

body {
    margin: 0;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #0b0b0b;
    color: #e0e0e0;
    background-image: url(images/2.JPG);
    background-size: cover;
}

header {
    background-color: rgba(20, 0, 0, 0.8);
    padding: 20px;
    text-align: center;
}

header h1 {
    color: #ff0000;
    font-family: 'Ballet', Georgia, serif;
    letter-spacing: 3px;
    /* responsive heading size: min 28px, preferred scaling, max 64px */
    font-size: clamp(28px, 4vw + 1rem, 64px);
    line-height: 1.05;
    margin-bottom: clamp(12px, 1.5vw, 28px); /* space below the heading */
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: clamp(20px, 4vw, 56px);
    /* moved slightly lower for extra breathing room */
    margin-top: clamp(14px, 2vw, 36px);
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 8px 14px; /* larger clickable area and visual spacing */
    font-size: 1rem;
    border-radius: 4px;
}

nav a:hover {
    color: #ff3333;
}

main {
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.6);
}

.intro {
    max-width: 900px;
    margin: 0 auto; /* center horizontally */
    text-align: center;
    padding: 20px;
}

.intro h2 {
    font-family: 'Cormorant SC', 'Georgia', serif;
    font-weight: 400;
    font-size: clamp(22px, 3.5vw + 0.5rem, 44px);
    margin-bottom: 10px;
}

/* Center the main paragraph on index.html for better readability */
main > p {
    text-align: center;
    max-width: 900px;
    margin: 20px auto;
}

/* Characters page main heading (the "Charaktere" span) */
.Coromant {
    font-family: 'Cormorant SC', Georgia, serif;
    font-size: clamp(32px, 4vw + 0.5rem, 64px);
    font-weight: 400;
    display: block;
    width: max-content;
    margin: 0 auto 12px auto;
    text-align: center;
}

/* Character name headings (Hinako, Shu, etc.) */
.character-container h3 {
    font-family: 'Cormorant SC', Georgia, serif;
    font-size: clamp(24px, 3vw + 0.5rem, 36px);
    font-weight: 600;
    margin-top: 6px;
    margin-bottom: 8px;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.8em;
    background-color: rgba(30, 0, 0, 0.8);
}
.ballet {
    font-family: 'Cormorant SC', Georgia, serif;
    font-style: normal;
    /* make footer line larger and responsive */
    font-size: clamp(10px, 2.5vw + 0.5rem, 20px);
    letter-spacing: 0.6px;
}
.story {
    background-color: rgba(20, 0, 0, 0.5);
    padding: 30px;
    border-left: 5px solid #ff0000;
    margin: 20px 0;
}

.story h2 {
    color: #ff3333;
    font-family: 'Cormorant SC', Georgia, serif;
    font-size: 50px;
    text-align: center;
    border-bottom: 2px solid #ff3333;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.story p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story blockquote {
    font-style: italic;
    color: #cccccc;
    border-left: 3px solid #999;
    padding-left: 15px;
    margin: 30px 0;
}

.story-image {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 20px auto;
    border: 3px solid #660000;
}


