/* /mediawiki/resources/styles/main.css */

@font-face {
    font-family: 'GothicTitle';
    src: url('../font/GothicII.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'GothicTitle', sans-serif;
    background-image: url('../backgrounds/bg_main.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #e0e0e0;
    overflow-x: hidden;
    font-size: 0.8em;
    line-height: 1.2;
}

header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo-text {
    font-size: 2.8em;
    color: #fff;
    flex-shrink: 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.5em;
    line-height: 1.2;
    padding: 5px 0;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

nav ul li a:hover {
    color: #f39c12;
}

nav ul li:not(:last-child) {
    border-right: 1px solid white;
    padding-right: 15px;
    margin-right: 15px;
}

.content {
    text-align: left;
    width: 100%;
    max-width: 800px;
    margin: 50px 0;
    padding-left: 20px;
    box-sizing: border-box;
}

.content .logo {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.content .logo img {
    max-width: 82%;
    height: auto;
}

.youtube-embed {
    margin-top: 20px;
}

.youtube-embed iframe {
    width: 100%;
    max-width: 640px;
    height: 360px;
    border: 2px solid #000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #e0e0e0;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
