/* =======================
   GENERAL PAGE STYLING
========================== */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;  /* light and modern */
    color: #333;                /* clean dark text */
}

main {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* =======================
   HEADINGS
========================== */
h1 {
    text-align: center;
    margin-top: 30px;
    color: #1d1b4f;
}

h2 {
    text-align: center;
    margin-top: 20px;
    color: #8c2c2c;
}

/* =======================
   NAVIGATION STYLING
========================== */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #111;
    padding: 15px 0;
    margin: 0;
}

nav ul li a {
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
}

nav ul li a:hover {
    background-color: #ff7733;
    border-radius: 5px;
    color: #fff;
}

/* =======================
   LOGO + BANNER IMAGE
========================== */
.site-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
}

.welcome-banner {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* =======================
   VIDEO SECTION
========================== */
.video-wrapper {
    display: flex;
    justify-content: center;
    margin: 30px auto;
}

.video-wrapper video {
    max-width: 40%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* =======================
   OPTIONAL: BUTTONS
========================== */
button,
input[type="submit"] {
    background-color: #ff7733;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

button:hover,
input[type="submit"]:hover {
    background-color: #e95f1a;
}
