/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    background-color: #4B2E2A; /* Dark brown background */
    color: #F5E3C0;             /* Light text */
}

/* Top Bar */
.top-bar {
    background-color: #8B5E3C;  /* Medium brown */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin: 1rem auto;
    max-width: 90%;
    position: relative;
    z-index: 10;
}

/* Logo */
.top-bar .logo {
    display: block;
    margin: 0 auto;
    max-height: 150px;      /* scale down large image */
    width: auto;
    object-fit: contain;   /* maintain aspect ratio */
}

/* Scrolling text inside top bar */
.scrolling-container {
    width: 100%;
    overflow: hidden;      /* clips text exactly at edges */
    border-radius: 8px;
    margin-top: 0.5rem;
}

.scrolling-text {
    display: inline-block;
    white-space: nowrap;
    transform: translateX(100%);
    font-size: 0.9rem;
    color: #D9A066;        /* golden accent */
}

/* Main Content */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    padding: 0 1rem;
}

/* Video */
.video-container {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    margin-bottom: 2rem;
    border: 4px solid #CBB994;  /* subtle tan border */
    border-radius: 8px;
}
.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Text below video */
.text-content {
    max-width: 700px;
    text-align: center;
}
.text-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.text-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #F5E3C0;
}
