/* White Theme Override CSS */

/* Global white theme */
body {
    background-color: #ffffff !important;
    color: #333333 !important;
}

/* Section backgrounds */
section {
    background-color: #ffffff !important;
    color: #333333 !important;
}

/* Specific sections */
#form {
    background: #ffffff !important;
}

#video {
    background-color: #ffffff !important;
}

#ticket {
    background: #ffffff !important;
}

#slider-full {
    background-color: #ffffff !important;
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
    color: #333333 !important;
}

/* Navbar */
nav.navbar {
    background-color: #ffffff !important;
    border-bottom: 1px solid #e0e0e0 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

nav.navbar.dark {
    background-color: #ffffff !important;
}

/* Navbar text */
.navbar-nav > li > a {
    color: #333333 !important;
}

.navbar-nav > li > a:hover {
    color: #000000 !important;
    background-color: rgba(0,0,0,0.1) !important;
}

/* Footer */
footer {
    background-color: #ffffff !important;
    color: #333333 !important;
    border-top: 1px solid #e0e0e0 !important;
}

/* Buttons - keep them visible with dark background */
.btn {
    background-color: #333333 !important;
    color: #ffffff !important;
    border: none !important;
}

.btn:hover {
    background-color: #555555 !important;
    color: #ffffff !important;
}

/* Forms */
.form-control {
    background-color: #f8f9fa !important;
    color: #333333 !important;
    border: 1px solid #ddd !important;
}

.form-control:focus {
    background-color: #ffffff !important;
    border-color: #007bff !important;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25) !important;
}

/* Links */
a {
    color: #007bff !important;
}

a:hover {
    color: #0056b3 !important;
}

/* Social icons - keep them visible */
.social-icon {
    background-color: #333333 !important;
    color: #ffffff !important;
}

.social-icon:hover {
    background-color: #555555 !important;
}

/* Remove any background images */
* {
    background-image: none !important;
}

/* Override any gradients */
.gradient-bg,
.bg-gradient {
    background: #ffffff !important;
}

/* Text shadows removal for white background */
* {
    text-shadow: none !important;
}

/* Ensure all text is readable on white background */
p, span, div {
    color: #333333 !important;
}