/* General styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Banner Section 
.banner {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}*/

.banner {
    position: relative;
    height: 600px;
    background-image: url('bann2.jpg');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-size: 36px;
   /* margin-top: 60px;  Adjust for navbar */
    overflow: hidden;
}

.styled-textban {
    font-family: 'Orbitron', sans-serif; 
    font-weight: 300; 
    font-size: .5em; 
    line-height: 1.2; 
    color: #f5efef; 
}

.highlighted1 {
    color: #d9a54a; 
    font-weight: 600; 
}

/* Content Section */
.content-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-left: 5%;
}

.thumbnail {
    padding: 2%;
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.thumbnail-image {
    width: 80%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

h2{
    text-align: center;
    font-family: 'Orbitron', sans-serif; 
    font-weight: 300; 
    font-size: 1em; 
    line-height: 1; 
    color: #0e0c0c;
    margin-right: 30%;
}

.overlay {
    position: absolute;
    top: -100%;
    left: 0;
    width: 80%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: top 0.3s ease;
    border-radius: 10px;
}

.thumbnail:hover .overlay,
.thumbnail:focus .overlay {
    top: 0;
}

.play-button {
    font-size: 50px;
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .content-container {
        grid-template-columns: repeat(2, 1fr);
        margin-left: 8%;
    }
    h2{
        text-align: center;
        font-family: 'Orbitron', sans-serif; 
        font-weight: 300; 
        font-size: .5em; 
        line-height: 1; 
        color: #0e0c0c;
        margin-right: 30%;
    }
    .banner {
        position: relative;
        height: 300px;
        background-image: url('3.jpg');
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #fff;
        font-size: 36px;
       /* margin-top: 60px;  Adjust for navbar */
        overflow: hidden;
    }
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    background: linear-gradient(to bottom, #0a1001 20%, #2b2b2b 90%);
   
    color: #f8f3f3;
    padding: 30px 20px;
}

.footer-section {
    max-width: 300px;
    
}

.footer-section h3 {
    margin-bottom: 10px;
     color: #d9a54a;
     font-family: 'Orbitron', sans-serif;
     
    font-size: 1em; 
    line-height: 1.2;
}

.footer-section p, .footer-section a {
    color: #efebeb;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
     
    font-size: 1em; 
    line-height: 1.2;
}

.footer-section a:hover {
    color: #6f0806;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin-bottom: 20px;
        text-align: center;
    }
}
