/* ==================================================
   FULL-SCREEN CHERRY BLOSSOM HERO
   Joomla 6.5 + Cassiopeia
   ================================================== */

/* Force the top-level banner wrapper to full screen */
div.moduletable.banner {
    width: 100% !important;
    height: 100vh !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Background image and centering */
div.moduletable.banner .custom {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('https://dcwatercolor.com/images/Postcards/Cherry%20Blossom%20_1%205x7.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #ffffff;
    /* Add calm yellow overlay */
    background-color: rgba(249, 231, 159, 0.4); /* Calm yellow overlay with 40% opacity */
}

/* Hero text */
div.moduletable.banner .custom .hero-content h1 {
    font-size: 3em;
    font-weight: bold;
    margin: 0.2em 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

div.moduletable.banner .custom .hero-content p {
    font-size: 1.5em;
    margin: 0.2em 0;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

/* Hero button */
div.moduletable.banner .custom .hero-content a.btn {
    margin-top: 1em;
    padding: 0.8em 1.5em;
    font-size: 1.2em;
    background-color: #2C3E50; /* Dark button for contrast */
    color: #F9E79F; /* Yellow text */
    border-color: #2C3E50;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    div.moduletable.banner .custom .hero-content h1 {
        font-size: 2em;
    }
    div.moduletable.banner .custom .hero-content p {
        font-size: 1.2em;
    }
    div.moduletable.banner .custom .hero-content a.btn {
        font-size: 1em;
        padding: 0.6em 1.2em;
    }
}

/* Change big header burgundy to calm yellow */
div.moduletable.banner {
    background-color: #F9E79F !important; /* Calm yellow behind hero */
}

/* Optional: change text color inside the header if needed */
div.moduletable.banner .hero-content h1,
div.moduletable.banner .hero-content p,
div.moduletable.banner .hero-content a.btn {
    color: #2C3E50 !important; /* Dark text for contrast */
}

/* Optional: make sure site header/nav also matches if needed */
header.site-header,
header.site-header .logo a,
header.site-header a {
    background-color: #F9E79F !important;
    color: #2C3E50 !important;
}
