body {
    background-image: url('../img/albus.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}

html {
    scrollbar-width: none; /* Firefox */
}

html::-webkit-scrollbar { /* Chrome, Edge, Safari */
    display: none;
}


/* Navigation Bar */
.homebar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    z-index: 10001;
    border-top: 2px solid #FFD700;
    border-bottom: 2px solid #FFD700;
}

.homebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.homebar a {
    text-decoration: none;
    color: rgb(212, 212, 212);
    padding: 10px 15px;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.homebar a:hover {
    color: #FFD700;
}

/* Page Content */
.heading {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 60px; /* Space for fixed nav */
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.heading h1{
    text-align: center;
    color: #FFD700;
    font-size: 2.5em;
}

.heading h2 {
    text-align: center;
    color: #ffffff;
}
.heading p {
    line-height: 1.6;
    text-align: center;
}

.heading a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.heading a:hover {
    color: white;
    text-decoration: underline;
}

/* Video Styling */
.heading iframe {
    display: block;
    margin: 20px auto;
    border: 2px solid #FFD700;
    border-radius: 8px;
}

b{
    color: #a887e9;
    font-weight: bold;
}


.video-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Keep proper 16:9 ratio and make them scale */
.video-row iframe {
    flex: 1 1 48%;
    aspect-ratio: 16 / 9;
    height: auto;
    max-width: 560px; /* optional: prevents them from getting too big */
    border: 2px solid #FFD700;
    border-radius: 8px;
}


.video-row iframe {
    max-width: 100%;
}

.heading > iframe:last-of-type {
    display: block;
    margin: 20px auto;
}

.video-row iframe {
    width: 48%; /* each takes up about half */
    height: auto;
}