
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HERO SECTION */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70vh;
    position: relative;
    overflow: hidden;
    
}

.hero img {
right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    
}

/* Overlay Effect */
.overlay {
    background: rgba(0, 0, 0, 0.352); /* Dark overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    color: white;
    padding: 20px;
    position: absolute;
    inset: 0; /* Covers the entire hero section */
}

.overlay-content{
    width: 60%;
    padding-left: 45px;
}

/* Buttons */
.buttons {
margin-top: 20px;
padding-left: 40px;
}

.buttons .btn {
    background: #fff;
    color: #000;
    padding: 10px 20px;
    border: none;
    margin: 10px;
    cursor: pointer;
    font-size: 16px;
}

.buttons .btn:hover {
    background: #000000;
    color: #ffffff;
    border: 2px solid rgb(108, 106, 106);
}


.btn.secondary {
    background: black;
    color: #fff;
    border: 2px solid white;
}

.btn.secondary:hover {
    background: rgb(255, 255, 255);
    color: #000000;
    border: 2px solid rgb(133, 133, 133);
}


/* FILTER SECTION */
.filter-section{
    padding: 20px;
    
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    transform: scale(0.9);
    
}

.search-input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    flex: 1;
}

.filter-dropdown {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white;
    cursor: pointer;
}

.clear-link {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.clear-link:hover {
    text-decoration: underline;
}


/* Services Section */
.services {
    padding: 5px 2px;
    background: #f9f9f9;
}



.services-tittle {
    width: 100%;
    justify-items: center;
    padding: 40px 10px;
    }

    .services-tittle h2{
        font-family: 'Orbitron', monospace;
        font-size: 16px;
        font-weight: 500;
}

.service-cards { 
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
   
}

.card {
    background: white;
    padding: 20px;
    width: 600px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: ease-in-out 0.2s;
}

.card h3 {
    background: white;
    padding: 20px 0;
    font-size: 17px;
    font-weight: 700;
    transition: ease-in 0.2s;
}

.card:hover {
    transform: scale(0.9);
}

.card:hover h3 {
    color: #083aeb;
    font-family: 'Orbitron', monospace;


}

.card .venue-time{
    font-family: 'Orbitron', monospace;
    color: #001e82;
    margin-top: 10px;
}

.card .icon {
    position: relative;
    background-color: #0302571c;
    width: 100%;
    height: 40vh;
}

.card .icon img {
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
    flex-shrink: 0;
}

/* Overlay */
.card .overlay {
    background: rgba(0, 8, 82, 0.128); /* Dark overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    color: white;
    padding: 20px;
    position: absolute;
    inset: 0; /* Covers the entire hero section */
}

/* Overlay text */
.card .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-weight: bold;
    z-index: 2;
    width: 100%;
}

.card .overlay-text p{
    width: 100%;
font-size: 12px;
font-weight: 500;
margin-top: 12px;
}

.card .overlay-text .bottom-btn{
    background: #00000074;
    color: #ffffff;
    padding: 5px 10px;
    border: none;
    margin-top: 20px;
    cursor: pointer;
    font-size: 12px;
    border-radius: 10px;
    border: 3px solid rgb(0, 0, 0);
    transition: ease 0.2s;
    }

.card .overlay-text .bottom-btn:hover{
    background: #ffffff;
    color: #000000;
}
    



a {
    margin-top: 20px;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
}


.bottom-section{
margin-top: 30px;

height: 70vh;
display: flex;
flex-direction: row;
background: white;


}

.first-bottom-section{
    width: 40%;
    height: 100%;
    justify-items: end;
    padding-right: 30px;
    padding-top: 30px;

}

.image-container{
    max-width: 260px;
    margin-right: 20px;
    
}


.image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        flex-shrink: 0;  
    }

.second-bottom-section{
    width: 60%;
    align-content: center;
}

.second-bottom-section h2{
   padding: 10px 10px 10px 0;
   font-weight: 500;
}

.second-bottom-section p{
width: 90%;
 }

 .bottom-btn{
    background: #000000;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    margin-top: 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 10px;
    border: 2px solid rgb(255, 255, 255);
    transition: ease 0.2s;
 }

 .bottom-btn:hover{
    background: #ffffff;
    color: #000000;
    border: 2px solid black;
 }




 /* Tiny phones */
@media (max-width: 320px) {
    .overlay-content {
        width: 90%;
        padding-left: 10px;
    }

    .buttons {
        padding-left: 10px;
        flex-direction: column;
    }

    .buttons .btn {
        font-size: 12px;
        padding: 8px 14px;
        width: 100%;
    }

    .overlay h1 {
        font-size: 20px;
    }

    .overlay p {
        font-size: 12px;
    }
}

/* Phones */
@media (min-width: 321px) and (max-width: 480px) {
    .overlay-content {
        width: 90%;
        padding-left: 15px;
    }

    .buttons {
        padding-left: 15px;
        flex-direction: column;
    }

    .buttons .btn {
        font-size: 14px;
        padding: 10px 16px;
        width: 100%;
    }

    .overlay h1 {
        font-size: 22px;
    }

    .overlay p {
        font-size: 13px;
    }
}

/* Phones landscape and small tablets */
@media (min-width: 481px) and (max-width: 767px) {
    .overlay-content {
        width: 85%;
        padding-left: 20px;
    }

    .buttons {
        padding-left: 20px;
        flex-direction: column;
    }

    .buttons .btn {
        font-size: 14px;
        padding: 10px 18px;
        width: 80%;
    }

    .overlay h1 {
        font-size: 26px;
    }

    .overlay p {
        font-size: 14px;
    }
}

/* Tablets portrait */
@media (min-width: 768px) and (max-width: 834px) {
    .overlay-content {
        width: 80%;
        padding-left: 25px;
    }

    .buttons {
        padding-left: 25px;
    }

    .buttons .btn {
        font-size: 15px;
        padding: 10px 20px;
    }

    .overlay h1 {
        font-size: 28px;
    }

    .overlay p {
        font-size: 15px;
    }
}

/* Tablets landscape */
@media (min-width: 835px) and (max-width: 1023px) {
    .overlay-content {
        width: 70%;
        padding-left: 30px;
    }

    .buttons {
        padding-left: 30px;
    }

    .buttons .btn {
        font-size: 16px;
    }

    .overlay h1 {
        font-size: 30px;
    }

    .overlay p {
        font-size: 16px;
    }
}

/* Small laptops */
@media (min-width: 1024px) and (max-width: 1279px) {
    .overlay-content {
        width: 65%;
        padding-left: 35px;
    }

    .buttons {
        padding-left: 35px;
    }

    .buttons .btn {
        font-size: 16px;
    }

    .overlay h1 {
        font-size: 32px;
    }

    .overlay p {
        font-size: 17px;
    }
}

/* Medium desktops */
@media (min-width: 1280px) and (max-width: 1439px) {
    .overlay-content {
        width: 60%;
        padding-left: 40px;
    }

    .buttons {
        padding-left: 40px;
    }

    .buttons .btn {
        font-size: 16px;
    }

    .overlay h1 {
        font-size: 34px;
    }

    .overlay p {
        font-size: 18px;
    }
}

/* Large desktops */
@media (min-width: 1440px) and (max-width: 1919px) {
    .overlay-content {
        width: 55%;
        padding-left: 50px;
    }

    .buttons {
        padding-left: 50px;
    }

    .buttons .btn {
        font-size: 17px;
    }

    .overlay h1 {
        font-size: 36px;
    }

    .overlay p {
        font-size: 19px;
    }
}

/* Full HD and 2K screens */
@media (min-width: 1920px) and (max-width: 2559px) {
    .overlay-content {
        width: 50%;
        padding-left: 60px;
    }

    .buttons {
        padding-left: 60px;
    }

    .buttons .btn {
        font-size: 18px;
        padding: 12px 24px;
    }

    .overlay h1 {
        font-size: 40px;
    }

    .overlay p {
        font-size: 20px;
    }
}

/* 4K and up */
@media (min-width: 2560px) {
    .overlay-content {
        width: 45%;
        padding-left: 70px;
    }

    .buttons {
        padding-left: 70px;
    }

    .buttons .btn {
        font-size: 20px;
        padding: 14px 28px;
    }

    .overlay h1 {
        font-size: 44px;
    }

    .overlay p {
        font-size: 22px;
    }
}
