/* --- DJ SWING ENTERTAINMENT GLOBAL STYLES --- */
body {
    background-color: #2e004f; /* Deep Purple Background */
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

#wrapper {
    width: 95%;
    max-width: 1100px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border: 2px solid #FFD700;
}

/* Header & Navigation */
#header {
    background-color: #4B0082;
    color: #FFD700;
    padding: 30px 0;
    text-align: center;
}

#nav-container {
    background-color: #FFD700;
    text-align: center;
    padding: 10px 0;
}

#nav { margin: 0; padding: 0; list-style: none; }
#nav li { display: inline-block; margin: 0 15px; }
#nav li a {
    text-decoration: none;
    color: #4B0082;
    font-weight: bold;
    text-transform: uppercase;
}

/* Main Content Layout */
#main-content { overflow: hidden; padding: 10px; }

#side-panel {
    float: left;
    width: 32%; /* Wider side panel as requested */
    padding: 15px;
    background-color: #f9f9f9;
    box-sizing: border-box;
}

#body-content {
    float: right;
    width: 66%; /* Shrink body to fit the wider sidebar */
    padding: 20px;
    line-height: 1.8;
    box-sizing: border-box;
}

.clear { clear: both; }

/* Images & Calendar */
img { max-width: 100%; height: auto; }
iframe { max-width: 100%; }

/* Footer Styling */
#footer {
    background-color: #4B0082;
    color: #FFD700;
    text-align: center;
    padding: 30px;
}

#footer a { color: #FFFFFF; text-decoration: none; padding: 0 8px; }
#footer a:hover { color: #FFD700; text-decoration: underline; }

/* --- RESPONSIVE FIX FOR SMALL SCREENS --- */
@media screen and (max-width: 768px) {
    #side-panel, #body-content {
        float: none;
        width: 100%;
        display: block;
    }
    #nav li { display: block; margin: 10px 0; }
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin-bottom: 20px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin-bottom: 25px;
    border: 2px solid #FFD700; /* Optional: Adds a gold border to your videos */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

