/* Splash Page Custom Styles - Sister Restaurants Section */
/* Add this file to your css folder and include it in splash-page.php only */

/* Hide mobile phone icon in header on mobile */
@media (max-width: 767px) {
    .social-link .mobile {
        display: none !important;
    }
}

/* NEW HEADER STYLING - White Heron Large and Centered */
.banner-details .main-title {
    font-size: 7.5rem;
    font-weight: normal;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.banner-details .subtitle {
    font-size: 2.2rem;
    letter-spacing: 3px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: normal;
    font-family: 'Montserrat', sans-serif;
}

.banner-details .opening-date {
    font-size: 5.5rem;
    margin-bottom: 0;
    text-align: center;
    color: #ffffff;
    font-weight: normal;
    padding-top: 50px;
    position: relative;
}

/* Add hairline above Opening May 2026 */
.banner-details .opening-date::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    max-width: 300px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Move banner content down from top */
.banner .background-image {
    align-items: flex-end;
    padding-bottom: 80px;
}

.banner-details {
    margin-bottom: 0;
}

/* Hairline separator before sister restaurants */
.sister-restaurants {
    margin-top: 70px;
    padding-top: 60px;
    text-align: center;
    position: relative;
}

.sister-restaurants::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    max-width: 300px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.sister-restaurants h6 {
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.sister-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.sister-logos a {
    display: inline-block;
    transition: all 0.4s ease-in-out;
    opacity: 0.9;
}

.sister-logos a:hover {
    opacity: 1;
    transform: scale(1.05);
}

.sister-logos img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1); /* Makes logos white */
}

/* Make Villa Tuscanna logo larger and more prominent */
.sister-logos a[href*="villatuscanna"] img {
    max-height: 100px;
    width: auto;
}

/* SOCIAL SECTION ENHANCEMENTS */
.footer-cnt-blc h4 {
    font-weight: normal;
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

/* Center all footer content blocks */
.footer-cnt-blc {
    text-align: center;
}

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

.footer-cnt-blc ul li a {
    font-size: 1.8rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.footer-cnt-blc ul li a i {
    font-size: 2.4rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

/* Make sure email and location text match in size */
.footer-cnt-blc ul li {
    font-size: 1.8rem;
}

.footer-cnt-blc ul li a:hover i {
    transform: scale(1.1);
}

/* CONTACT FORM STYLING */
/* Responsive styles for tablet */
@media (max-width: 991px) {
    .banner-details .main-title {
        font-size: 6rem;
        letter-spacing: 3px;
    }
    
    .banner-details .subtitle {
        font-size: 1.8rem;
        letter-spacing: 2px;
        margin-bottom: 40px;
    }
    
    .banner-details .opening-date {
        font-size: 4.2rem;
        color: #ffffff;
        padding-top: 40px;
    }
}

/* Responsive styles for mobile */
@media (max-width: 767px) {
    .banner .background-image {
        padding-bottom: 60px;
    }
    
    .banner-details .main-title {
        font-size: 4.5rem;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }
    
    .banner-details .subtitle {
        font-size: 1.4rem;
        letter-spacing: 1.5px;
        margin-bottom: 30px;
    }
    
    .banner-details .opening-date {
        font-size: 3.2rem;
        color: #ffffff;
        padding-top: 30px;
    }
    
    .sister-restaurants {
        margin-top: 50px;
        padding-top: 40px;
    }
    
    .sister-restaurants::before {
        width: 50%;
    }
    
    .sister-restaurants h6 {
        font-size: 1.4rem;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }
    
    .sister-logos {
        gap: 40px;
    }
    
    /* CONSISTENT MOBILE LOGO SIZING */
    .sister-logos img {
        max-width: 120px;
        width: 120px;
        height: auto;
        object-fit: contain;
    }
    
    /* Villa logo sizing for mobile - larger */
    .sister-logos a[href*="villatuscanna"] img {
        max-height: 75px;
        width: auto;
        max-width: 120px;
    }
    
    .footer-cnt-blc h4 {
        font-size: 1.8rem;
    }
    
    .footer-cnt-blc ul {
        gap: 12px;
    }
    
    .footer-cnt-blc ul li a {
        font-size: 1.6rem;
        gap: 10px;
    }
    
    .footer-cnt-blc ul li {
        font-size: 1.6rem;
    }
    
    .footer-cnt-blc ul li a i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .banner .background-image {
        padding-bottom: 40px;
    }
    
    .banner-details .main-title {
        font-size: 3.5rem;
        letter-spacing: 1.5px;
    }
    
    .banner-details .subtitle {
        font-size: 1.2rem;
        letter-spacing: 1px;
        margin-bottom: 25px;
    }
    
    .banner-details .opening-date {
        font-size: 2.8rem;
        color: #ffffff;
        padding-top: 25px;
    }
    
    .sister-restaurants {
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .sister-restaurants::before {
        width: 60%;
    }
    
    .sister-logos {
        flex-direction: column;
        gap: 30px;
    }
    
    /* ENSURE CONSISTENT SIZING ON SMALLEST SCREENS */
    .sister-logos img {
        max-width: 140px;
        width: 140px;
    }
    
    /* Villa logo sizing for smallest screens - larger */
    .sister-logos a[href*="villatuscanna"] img {
        max-height: 85px;
        width: auto;
        max-width: 140px;
    }
    
    .footer-cnt-blc h4 {
        font-size: 1.6rem;
    }
    
    .footer-cnt-blc ul {
        gap: 10px;
    }
    
    .footer-cnt-blc ul li a {
        font-size: 1.5rem;
        gap: 8px;
    }
    
    .footer-cnt-blc ul li {
        font-size: 1.5rem;
    }
    
    .footer-cnt-blc ul li a i {
        font-size: 1.8rem;
    }
}
