/* HTML and Body Styles */
html {
    background-color: #FFF5F5;
    background-image: url(../img/backround.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body {
    background-color: #FFE6E6;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    margin-top: 20px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Navigation */
#navBar {
    margin-bottom: 40px;
    background-color: rgba(255, 245, 245, 0.9);
    border-radius: 10px;
    padding: 10px;
}

#mainlogo {
    text-align: center;
}

#navBar a {
    color: #600502;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

#navBar a:hover {
    color: #8a0804;
}

.navLogo2 {
    width: 100px;
    height: auto;
    transition: transform 0.3s ease;
}

.navLogo2:hover {
    transform: scale(1.1);
}

/* Main Content */
h1 {
    color: #600502;
    text-align: center;
    margin: 20px 0;
    font-size: 2em;
}

/* Video Container */
.video-container {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* Dividers */
hr {
    border: 0;
    height: 2px;
    background-color: #600502;
    margin: 30px 0;
    opacity: 0.2;
}

/* Footer Styles */
footer {
    margin-top: auto;
    padding: 20px;
    background-color: #FFF5F5;
    border-radius: 10px;
    box-shadow: 0 -2px 4px rgba(96, 5, 2, 0.1);
    text-align: center;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer .social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    color: #600502;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background-color: rgba(255, 230, 230, 0.5);
    min-width: 120px;
}

.social-link:hover {
    background-color: #600502;
    color: #FFF5F5;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 24px;
}

.footer p {
    margin: 15px 0 0;
    color: #2A2A2A;
}

/* Responsive Footer */
@media (max-width: 480px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }
    
    .footer a {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    body {
        width: 95%;
        padding: 15px;
    }

    .video-container {
        margin: 10px auto;
    }
}

/* Gallery Styles */
div.gallery {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

div.gallery img {
    display: inline;
    margin: 5px;
}

div.desc {
    padding: 15px;
    text-align: center;
}


#images {
    background-color: #600502;
    border-color: #600502;
    width: 14%;
}

#comingsoon {
    display: block;
    margin: auto;
    padding: auto;
}

.clearfix {
    overflow: hidden;
}

ul {
    display: inline;
    text-align: center;
}

#splash {
    float: left;
    display: block;
    margin: auto;
    padding: auto;
    margin-left: 10px;
    margin-right: 10px;
}

#comming {
    display: inline;
    font-size: larger;
    text-align: center;
}