
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    font-family: Arial, sans-serif; 
    overflow-x: hidden; 
}

@media (prefers-color-scheme: dmark) {
    html, body {
        background-color: black;
    }
}

.navbar {
    width: 100%; 
    background-color: black;
    color: #fff;
    padding: 15px 20px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

.navbar .dropdown-menu {
    text-align: center;
}


h1, h2 {
    color: #9b111e;
    text-align: center;
}

h1.About {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about_details {
    font-size: 1.2rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
    padding: 20px; 
}


.skill_Section {
    font-size: 1.2rem;
    color: #555;
    margin: 20px auto;
    max-width: 800px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}


footer {
    width: 100%; 
    background-color: #343a40;
    color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
}

footer h5 {
    margin-bottom: 1rem;
}

footer ul {
    padding: 0;
    margin: 0 auto;
    list-style: none;
}

footer ul li {
    margin: 5px 0;
}

footer a {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #adb5bd;
}


.watch_links {
    margin: 20px 0;
    text-align: center;
}

.watch_links ul {
    display: inline-block;
    padding: 0;
    margin: 0;
    list-style: none;
}

.watch_links ul li {
    margin: 5px 10px;
}

.watch_links a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.watch_links a:hover {
    color: #0056b3;
}


.card {
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #9b111e;
}

.card-text {
    font-size: 1rem;
    color: #555;
}


.navbar, footer {
    position: relative;
    z-index: 1; 
    left: 0;
    right: 0;
}


body {
    justify-content: flex-start; 
}

main {
    width: 100%;
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


@media (max-width: 768px) {
    .navbar-collapse {
        text-align: center;
    }

    .skill_Section {
        font-size: 1rem;
    }

    footer .row {
        text-align: center;
    }
}

.top_banner {
    background-color: black;
    background-image:url(/static/img/long_film_1.png);
    background-repeat: repeat-x;
    min-height: 113px;
    vertical-align: left;
    margin:0;
    margin-top: -113px;
    padding: 0;
    }

    .intro-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    padding: 20px;
    box-sizing: border-box;
}

.intro-video {
    max-width: 80%;
    max-height: 80%;
    object-fit: cover;
    border-radius: 5px;
}

/* Button Styles */
.enter-button-container {
    position: absolute;
    bottom: 20%;
    display: none; /* Initially hide contentd */
    text-align: center;
}

.enter-button-container button {
    font-size: 20px;
    padding: 10px 20px;
    background-color: #9b111e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.enter-button-container button:hover {
    background-color: #b71d29;
}

/* Main Content Styles */
#mainSite {
    display: none;
}



.watch_links {
    margin: 20px 0;
    text-align: center;
}

.watch_links ul {
    display: inline-block;
    padding: 0;
    margin: 0;
    list-style: none;
}

.watch_links ul li {
    margin: 5px 10px;
}

.watch_links a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.watch_links a:hover {
    color: #0056b3;
}


.card {
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #9b111e;
}

.card-text {
    font-size: 1rem;
    color: #555;
}


.navbar, footer {
    position: relative;
    z-index: 1;
    left: 0;
    right: 0;
}

/*--login page-->*/

.login-container {
    background: rgba(255, 255, 255, 0.8); /* translucent background */
    backdrop-filter: blur(10px); /*Frosted effect */
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* boxing shadow */
    max-width: 400px;
    width: 100%;
    position: relative;
    left: 35%;
    margin: 20px;

}

.login-container h2 {
    color: #9b111e; /* Match the themecolor */
    margin-bottom: 20px;
}

.login-container label {
    display: block;
    margin: 10px 0 5px;
    color: #333;
    font-weight: bold;
}

.login-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.login-container button {
    background-color: #9b111e;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-container button:hover {
    background-color: #b71d29; /* Slightly darker red on hover */
}

/*Register page-similar styling to login page*/

.register-container {
    background: rgba(255, 255, 255, 0.8); /* translucent background */
    backdrop-filter: blur(10px); /*Frosted effect */
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* boxing shadow */
    max-width: 400px;
    width: 100%;
    position: relative;
    left: 35%;
    margin: 20px;

}

.register-container h2 {
    color: #9b111e; /* Match the themecolor */
    margin-bottom: 20px;
}

.register-container label {
    display: block;
    margin: 10px 0 5px;
    color: #333;
    font-weight: bold;
}

.register-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.register-container button {
    background-color: #9b111e;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.register-container button:hover {
    background-color: #b71d29; /* Slightly darker red on hover */
}

/*about us section update*/

.about_us{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.skill_section{
    text-align: center;
    margin-top: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.languages {
    display: flex;
    justify-content: center;
    align-items:center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
  }
  
  
  .language.card {
    background-color: #e2bdbd;
    padding: 1rem 2rem;
    boarder-radius: 10px
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px
    transition: transform 0.2s;
  }

  .language.card:hover {
  transform:translateY(-10px);
  }

  .language p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

  .language i {
    margin-top: 10px;
    gap: 20px;
  }
  
  .language-list {
    list-style-type:none;
    padding: 0;
  }
  
  .language-list li {
    margin-bottom: 10px;
    font-size: 1rem;
  }

  .accordion-button {
    background-color: #b71d29;
    color: #ffffff;
  }

  .accordion-button.collapsed {
    background-color: #f1f1f1:
    color: #3333333;
  }

  .accordion-button:hover {
    background-color:  #a21723;
    color: #ffffff;
  }

  .accordion-button:not(.collapsed) {
  background-color: #b71d29;
  color: #ffffff;
}

.accordion-body {
  color: #444444;
}

  .team-list {
    list-style-type:none;
    padding: 0;
  }
  
  .team-list li {
    margin-bottom: 10px;
    font-size: 1rem;
  }

/*signup_welcome btn style for return to site*/

  .btn-custom {
     background-color:#9b111e;
     color: #fff;
     border: none;
     padding: 10px 15px;
     border-radius: 5px;
     font-size: 16px;
     cursor: pointer;
     transition: background-color 0.3s;
}

 .btn-custom:hover {
    background-color: #b71d29;
  }


.login-icon {
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s, color 0.3s;
}

.login-icon:hover {
    color: #ffcc00;
    transform: scale(1.2);
    animation: shake 0.3s;
}





@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    20%, 60% {
        transform: translateX(-10px);
    }
    40%, 80% {
        transform: translateX(10px);
    }
}

body {
    justify-content: flex-start;
}

main {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


@media (max-width: 768px) {
    .navbar-collapse {
        text-align: center;
    }

    .skill_Section {
        font-size: 1rem;
    }

    footer .row {
        text-align: center;
    }
}
.image_border {
    border: solid 1px black;
}
