/* Custom banner styling to match the design in the screenshot */

.home-banner {
    background-image: url('../img/top-banner.jpg') !important;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.home-banner .overlay {
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.home-banner .container {
    position: relative;
    z-index: 2;
    height: 100vh;
}

.home-banner-logo {
    text-align: right;
    padding-top: 40px;
    margin-bottom: 20px;
}

.home-banner-logo img {
    max-width: 300px;
}

.banner-content {
    margin-top: 70px;
    text-align: center;
}

.banner-title {
    font-size: 3.5rem !important;
    line-height: 1.2;
    color: #375482 !important;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    -webkit-text-stroke: 1px white;
    text-stroke: 1px white;
    text-shadow: 
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px 1px 0 #fff,
        1px 1px 0 #fff,
        0px 0px 8px rgba(255, 255, 255, 0.5);
}

.date-badge {
    background-color: rgba(0, 50, 76, 0.8);
    display: inline-block;
    padding: 10px 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.date-badge h2 {
    color: white;
    font-size: 2.5rem;
    margin: 0;
    font-weight: bold;
}

.venue-text {
    color: white;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
    text-align: center;
}

.contact-info {
    position: absolute;
    bottom: 40px;
    width: 100%;
    left: 0;
    color: white;
}

/* Specific positioning for email */
.contact-email {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: white;
    z-index: 10;
}

/* Specific positioning for address */
.contact-address {
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: white;
    z-index: 10;
    text-align: right;
    /* background-color: rgba(0, 50, 76, 0.8); */
    padding: 10px 15px;
    border-radius: 5px;
}

.contact-info-item {
    display: flex;
    align-items: center;
}

.contact-info-item i {
    font-size: 2rem;
    margin-right: 15px;
}

.contact-info-item span {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5rem !important;
    }
    
    .date-badge h2 {
        font-size: 1.8rem;
    }
    
    .venue-text {
        font-size: 1.8rem;
    }
    
    .contact-email,
    .contact-address {
        position: static;
        text-align: center;
        margin: 10px auto;
        width: 90%;
    }
    
    .contact-info-item {
        justify-content: center;
    }
} 