/* =========================================
   HEADER OVER HERO VIDEO
   ========================================= */

/* Put the header above the video */
.wp-site-blocks > header,
header.wp-block-template-part {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent !important;
}

/* Make sure the header itself doesn't have a background */
header.wp-block-template-part > *,
.wp-site-blocks > header > * {
    background: transparent !important;
}

/* Keep the church logo/name and menu above the video */
header.wp-block-template-part,
header.wp-block-template-part a,
header.wp-block-template-part button {
    position: relative;
    z-index: 10000;
}

/* Make menu text white */
header.wp-block-template-part a {
    color: #ffffff !important;
}

/* Make the navigation buttons/icons visible */
header.wp-block-template-part button {
    color: #ffffff !important;
}

/* Give the header a little breathing room */
header.wp-block-template-part {
    padding-top: 15px;
    padding-bottom: 15px;
} 

/* =========================================================
   CORNERSTONE HERO - FINAL LAYOUT
   ========================================================= */

/* -------------------------
   HERO
   ------------------------- */

.home-hero {
    min-height: 100vh !important;
    height: 100vh !important;
    position: relative;
    overflow: hidden;
}

/* Dark video overlay */
.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
    pointer-events: none;
}

/* Keep hero content above overlay */
.home-hero > * {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADER
   ========================================================= */

/* Larger church logo/name */
header.wp-block-template-part {
    padding-top: 22px !important;
    padding-bottom: 22px !important;
    padding-left: 28px !important;
    padding-right: 28px !important;
}

/* Make logo larger */
header.wp-block-template-part img {
    max-height: 58px !important;
    width: auto !important;
}

/* Church name */
header.wp-block-template-part .wp-block-site-title,
header.wp-block-template-part .wp-block-site-logo + * {
    font-size: 22px !important;
    font-weight: 500 !important;
    letter-spacing: 1px;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

/* Space out Livestream / Hope / Give / Events / About */
header.wp-block-template-part nav {
    gap: 28px !important;
}

/* Navigation text */
header.wp-block-template-part nav a {
    font-size: 16px !important;
    font-weight: 400 !important;
    letter-spacing: 0.2px;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
}

/* Navigation hover */
header.wp-block-template-part nav a:hover {
    opacity: 0.7;
}


/* =========================================================
   HERO HEADLINE
   ========================================================= */

/* Reaching / Growing / Building */
.home-hero h1 {
    font-size: clamp(64px, 6.2vw, 100px) !important;
    line-height: 0.98 !important;
    font-weight: 500 !important;
    letter-spacing: -2px !important;
    color: #ffffff !important;
    margin: 0 !important;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}


/* =========================================================
   SUNDAY INFORMATION
   ========================================================= */

.home-hero .sunday-title {
    font-size: clamp(24px, 2vw, 32px) !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 10px !important;
}

.home-hero .sunday-times {
    font-size: clamp(18px, 1.5vw, 22px) !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
    color: #ffffff !important;
}


/* =========================================================
   HERO COLUMN SPACING
   ========================================================= */

/* Give the two sides comfortable spacing */
.home-hero .wp-block-columns {
    gap: clamp(50px, 7vw, 120px) !important;
}

/* Left side */
.home-hero .wp-block-column:first-child {
    flex-basis: 55% !important;
}

/* Right side */
.home-hero .wp-block-column:last-child {
    flex-basis: 35% !important;
}


/* =========================================================
   REMOVE BUTTONS
   ========================================================= */

.home-hero .wp-block-button {
    display: none !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    header.wp-block-template-part {
        padding: 15px 20px !important;
    }

    header.wp-block-template-part img {
        max-height: 45px !important;
    }

    header.wp-block-template-part nav {
        gap: 12px !important;
    }

    header.wp-block-template-part nav a {
        font-size: 13px !important;
    }

    .home-hero {
        min-height: 90vh !important;
        height: 90vh !important;
    }

    .home-hero h1 {
        font-size: 48px !important;
        line-height: 1 !important;
    }

    .home-hero .wp-block-columns {
        gap: 25px !important;
    }
}
/* Remove header divider/line */
header.wp-block-template-part,
header.wp-block-template-part * {
    border-bottom: none !important;
}

header.wp-block-template-part::after {
    display: none !important;
}