/* styles.css */

/* ====== RESET & BASE STYLING ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'UnifrakturCook', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #f0f0f0;
    line-height: 1.6;
    min-height: 100vh;
}


/* ====== HEADER ====== */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1e1e1e;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Header container with logos on both sides */
header .logo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
}

header .logo-container h1 {
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-align: center;
    flex: 1; /* heading takes up remaining space */
}

/* Logos styling */
header .logo {
    width: 150px;  /* smaller size */
    height: auto;
}

.left-logo {
    margin-right: 1rem;
}

.right-logo {
    margin-left: 1rem;
}

/* ====== NAVIGATION ====== */
nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

nav button {
    background: transparent;
    border: 2px solid #f0f0f0;
    color: #f0f0f0;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

nav button:hover,
nav button:focus {
    background-color: #2a2a2a; /* darker hover */
    color: #ffffff;             /* text stays white for contrast */
    transform: translateY(-12px);
}
/* ====== MAIN CONTENT ====== */
main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* ====== TABS ====== */
.tab {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab.active {
    display: block;
}

/* Tab headings */
.tab h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.3rem;
}

/* Tab content */
.tab p {
    font-size: 1rem;
    line-height: 1.8;
    color: #dcdcdc;
}

/* ====== FOOTER ====== */
footer {
    text-align: center;
    padding: 2rem 1rem;
    color: #888;
    font-size: 0.9rem;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.2rem;
    }

    nav button {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}