/*
Theme Name: Big Life Little Crew
Theme URI: https://biglifelittlecrew.com
Description: Adventure. Culture. Family. — Custom theme for the Carsten family's travel adventures.
Author: Victor Bot
Author URI: https://chriscarsten.com
Template: kadence
Version: 2.1.1
*/

/* ==========================================================================
   BIG LIFE LITTLE CREW
   Adventure. Culture. Family.
   "Presence Over Pressure"
   ========================================================================== */

:root {
    /* Brand Colors */
    --bllc-forest: #2C5530;
    --bllc-forest-dark: #1e3d22;
    --bllc-forest-light: #3d7043;
    --bllc-sunset: #E8985E;
    --bllc-sunset-light: #f0b080;
    --bllc-sunset-dark: #d4844a;
    --bllc-ocean: #4A90A4;
    --bllc-ocean-light: #6ba8bb;
    --bllc-sand: #F7F5F2;
    --bllc-sand-dark: #EAE6E0;
    --bllc-cream: #FFFDF9;
    --bllc-dark: #1A1A1A;
    --bllc-text: #333333;
    --bllc-text-light: #666666;
    --bllc-text-muted: #999999;
    
    /* Kadence overrides */
    --global-palette1: var(--bllc-forest);
    --global-palette2: var(--bllc-sunset);
    --global-palette3: var(--bllc-dark);
    --global-palette4: var(--bllc-text);
    --global-palette5: var(--bllc-text-light);
    --global-palette8: var(--bllc-sand);
    --global-palette9: #ffffff;
    
    /* Spacing */
    --section-padding: clamp(4rem, 8vw, 8rem);
    --container-max: 1200px;
}

/* ==========================================================================
   BASE / TYPOGRAPHY
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: var(--bllc-text);
    background-color: var(--bllc-cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--bllc-dark);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-top: 0;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

/* Accent words in headings */
h1 em, h2 em, h3 em {
    font-style: normal;
    color: var(--bllc-sunset);
}

p {
    margin-bottom: 1.5em;
}

/* Lead text */
.has-large-font-size,
.lead,
.wp-block-paragraph.is-style-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--bllc-text-light);
}

/* Selection */
::selection {
    background: var(--bllc-sunset);
    color: #ffffff;
}

/* ==========================================================================
   LINKS & BUTTONS
   ========================================================================== */

a {
    color: var(--bllc-forest);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--bllc-sunset);
}

/* Primary buttons */
.wp-block-button__link,
.kt-button,
.kb-button,
button[type="submit"],
input[type="submit"],
.bllc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--bllc-forest) !important;
    border: 2px solid var(--bllc-forest) !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.3px !important;
    text-transform: none !important;
    padding: 16px 36px !important;
    border-radius: 50px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.25) !important;
    cursor: pointer;
}

.wp-block-button__link:hover,
.kt-button:hover,
.kb-button:hover,
button[type="submit"]:hover,
.bllc-btn:hover {
    background: var(--bllc-sunset) !important;
    border-color: var(--bllc-sunset) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(232, 152, 94, 0.4) !important;
    color: #ffffff !important;
}

/* Secondary / Outline buttons */
.is-style-outline .wp-block-button__link,
.bllc-btn-outline {
    background: transparent !important;
    color: var(--bllc-forest) !important;
    box-shadow: none !important;
}

.is-style-outline .wp-block-button__link:hover,
.bllc-btn-outline:hover {
    background: var(--bllc-forest) !important;
    color: #ffffff !important;
}

/* Small buttons */
.wp-block-button.is-style-small .wp-block-button__link {
    padding: 10px 24px !important;
    font-size: 0.85rem !important;
}

/* ==========================================================================
   HERO SECTION
   Full-bleed, impactful first impression
   ========================================================================== */

.wp-block-cover.bllc-hero,
.wp-block-cover:first-of-type {
    min-height: 90vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.wp-block-cover.bllc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.wp-block-cover__inner-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 2rem;
}

.wp-block-cover h1 {
    color: #ffffff !important;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
    margin-bottom: 0.5rem;
}

.wp-block-cover h1 em {
    color: var(--bllc-sunset-light);
}

/* Hero tagline */
.wp-block-cover .bllc-tagline,
.wp-block-cover p:first-of-type {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
}

/* Hero sub-text */
.wp-block-cover p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
}

/* Hero CTA button */
.wp-block-cover .wp-block-button__link {
    background: #ffffff !important;
    color: var(--bllc-dark) !important;
    border-color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.wp-block-cover .wp-block-button__link:hover {
    background: var(--bllc-sunset) !important;
    border-color: var(--bllc-sunset) !important;
    color: #ffffff !important;
}

/* ==========================================================================
   SECTION LAYOUTS
   ========================================================================== */

.bllc-section,
.wp-block-group.alignfull {
    padding: var(--section-padding) 2rem;
}

.bllc-section-light,
.has-background.has-white-background-color {
    background: var(--bllc-cream);
}

.bllc-section-sand,
.has-background.has-pale-background-color {
    background: var(--bllc-sand);
}

.bllc-section-dark {
    background: var(--bllc-dark);
    color: rgba(255, 255, 255, 0.9);
}

.bllc-section-dark h2,
.bllc-section-dark h3 {
    color: #ffffff;
}

/* Centered section headings */
.bllc-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.bllc-section-header p {
    color: var(--bllc-text-light);
}

/* ==========================================================================
   ORIGIN STORY BLOCK
   The "why" narrative
   ========================================================================== */

.bllc-origin-story,
.wp-block-quote.is-style-large {
    background: linear-gradient(135deg, var(--bllc-sand) 0%, var(--bllc-cream) 100%);
    border: none;
    border-left: 4px solid var(--bllc-sunset);
    padding: 3rem;
    margin: 3rem auto;
    max-width: 800px;
    border-radius: 0 16px 16px 0;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--bllc-text);
    position: relative;
}

.bllc-origin-story::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    color: var(--bllc-sunset);
    opacity: 0.3;
    line-height: 1;
}

.bllc-origin-story p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   STORY CARDS
   Blog post / story previews
   ========================================================================== */

.bllc-story-grid,
.wp-block-post-template {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    list-style: none;
    padding: 0;
}

.bllc-story-card,
.wp-block-post {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bllc-story-card:hover,
.wp-block-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Story card image */
.bllc-story-card img,
.wp-block-post-featured-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bllc-story-card:hover img,
.wp-block-post:hover .wp-block-post-featured-image img {
    transform: scale(1.05);
}

.wp-block-post-featured-image {
    overflow: hidden;
    margin: 0;
}

/* Story card content */
.bllc-story-content,
.wp-block-post > *:not(.wp-block-post-featured-image) {
    padding: 1.75rem;
}

/* Location tag */
.bllc-story-location,
.wp-block-post-terms {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bllc-sunset);
    margin-bottom: 0.5rem;
}

/* Story title */
.bllc-story-card h3,
.wp-block-post-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.wp-block-post-title a {
    color: var(--bllc-dark);
}

.wp-block-post-title a:hover {
    color: var(--bllc-forest);
}

/* Story excerpt */
.bllc-story-excerpt,
.wp-block-post-excerpt {
    color: var(--bllc-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Read more link */
.bllc-read-more,
.wp-block-read-more {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--bllc-forest);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.bllc-read-more::after,
.wp-block-read-more::after {
    content: '→';
    transition: transform 0.2s ease;
}

.bllc-read-more:hover::after,
.wp-block-read-more:hover::after {
    transform: translateX(4px);
}

/* ==========================================================================
   VALUES / FEATURES GRID
   "What We Believe" section
   ========================================================================== */

.bllc-values-grid,
.wp-block-columns.bllc-features {
    gap: 2rem;
}

.bllc-value-card,
.bllc-features .wp-block-column {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.bllc-value-card:hover,
.bllc-features .wp-block-column:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--bllc-sunset);
}

.bllc-value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bllc-value-card h4 {
    margin-bottom: 0.75rem;
    color: var(--bllc-forest);
}

.bllc-value-card p {
    color: var(--bllc-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================================================
   COUNTDOWN / BIG TRIP SECTION
   ========================================================================== */

.bllc-countdown-section {
    background: linear-gradient(135deg, var(--bllc-forest) 0%, var(--bllc-forest-dark) 100%);
    color: #ffffff;
    text-align: center;
    padding: var(--section-padding) 2rem;
}

.bllc-countdown-section h2 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.bllc-countdown-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}

.bllc-countdown-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 600;
    color: var(--bllc-sunset);
    line-height: 1;
    margin: 1.5rem 0;
}

.bllc-countdown-label {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* ==========================================================================
   EMAIL CAPTURE
   ========================================================================== */

.bllc-email-capture,
.wp-block-kadence-form {
    max-width: 500px;
    margin: 2rem auto 0;
}

.bllc-email-capture input[type="email"],
.wp-block-kadence-form input[type="email"] {
    width: 100%;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.bllc-email-capture input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.bllc-email-capture input[type="email"]:focus {
    outline: none;
    border-color: var(--bllc-sunset);
    background: rgba(255, 255, 255, 0.15);
}

/* On dark backgrounds */
.bllc-countdown-section .wp-block-button__link {
    background: var(--bllc-sunset) !important;
    border-color: var(--bllc-sunset) !important;
}

.bllc-countdown-section .wp-block-button__link:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: var(--bllc-dark) !important;
}

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

/* Default header - white background */
.site-header {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.site-header.item-is-stuck {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Transparent header overlay on homepage */
body.home .site-header {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    z-index: 100;
    padding-top: 2rem !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

body.home .site-header .site-branding .site-title,
body.home .site-header .site-branding a {
    color: #ffffff !important;
    font-size: 1.75rem !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

body.home .site-header .custom-logo {
    max-height: 80px !important;
    height: auto !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    border-radius: 50%;
}

body.home .site-header .header-menu-container .menu > li > a {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-size: 1rem !important;
}

body.home .site-header .header-menu-container .menu > li > a:hover {
    color: var(--bllc-sunset-light) !important;
}

/* Add padding to header row */
body.home .site-header .site-header-row-container-inner {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* When scrolled/stuck, revert to white background */
body.home .site-header.item-is-stuck {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

body.home .site-header.item-is-stuck .site-branding .site-title,
body.home .site-header.item-is-stuck .site-branding a {
    color: var(--bllc-dark) !important;
}

body.home .site-header.item-is-stuck .custom-logo {
    filter: none;
    border-radius: 50%;
}

body.home .site-header.item-is-stuck .header-menu-container .menu > li > a {
    color: var(--bllc-text) !important;
    text-shadow: none;
}

body.home .site-header.item-is-stuck .header-menu-container .menu > li > a:hover {
    color: var(--bllc-forest) !important;
}

/* Logo / Site Title */
.site-branding .site-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--bllc-dark);
}

.custom-logo {
    max-height: 60px;
    width: auto;
    height: auto;
    border-radius: 50%;
}

/* Nav links */
.header-menu-container .menu > li > a {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    color: var(--bllc-text);
    transition: color 0.2s ease;
    padding: 0.5rem 1rem;
}

.header-menu-container .menu > li > a:hover,
.header-menu-container .menu > li.current-menu-item > a {
    color: var(--bllc-forest);
}

/* Mobile menu */
.mobile-toggle-open .mobile-toggle-icon,
.mobile-toggle-close .mobile-toggle-icon {
    background: var(--bllc-forest);
}

/* ==========================================================================
   BLOG POSTS / SINGLE STORIES
   ========================================================================== */

.single-post .entry-content,
.page .entry-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Featured image on posts */
.single-post .post-thumbnail img,
.single-post .wp-block-post-featured-image img {
    width: 100%;
    max-height: 60vh;
    object-fit: cover;
    border-radius: 0;
}

/* Post header */
.entry-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 3rem 2rem;
}

.entry-title {
    margin-bottom: 1rem;
}

.entry-meta {
    color: var(--bllc-text-muted);
    font-size: 0.9rem;
}

.entry-meta a {
    color: var(--bllc-text-light);
}

/* Drop caps */
.has-drop-cap:not(:focus)::first-letter {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--bllc-forest);
    float: left;
    line-height: 0.8;
    margin: 0.1em 0.15em 0 0;
}

/* ==========================================================================
   IMAGES & MEDIA
   ========================================================================== */

.wp-block-image img,
figure img,
.entry-content img {
    border-radius: 12px;
}

/* Full-width images break out of container */
.wp-block-image.alignfull img,
.wp-block-cover.alignfull {
    border-radius: 0;
}

.wp-block-image figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--bllc-text-muted);
    font-style: italic;
    margin-top: 1rem;
}

/* Gallery */
.wp-block-gallery {
    gap: 1rem;
}

.wp-block-gallery .wp-block-image img {
    border-radius: 8px;
}

/* ==========================================================================
   QUOTES & PULLQUOTES
   ========================================================================== */

blockquote,
.wp-block-quote {
    border-left: 4px solid var(--bllc-sunset);
    padding: 1rem 0 1rem 2rem;
    margin: 2.5rem 0;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--bllc-text);
}

.wp-block-pullquote {
    border: none;
    padding: 2rem;
    text-align: center;
}

.wp-block-pullquote blockquote {
    border: none;
    padding: 0;
}

.wp-block-pullquote p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-style: italic;
    color: var(--bllc-forest);
    line-height: 1.4;
}

.wp-block-pullquote cite {
    font-style: normal;
    font-size: 1rem;
    color: var(--bllc-text-light);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background: var(--bllc-dark) !important;
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 2rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: var(--bllc-sunset);
}

.site-footer h4,
.site-footer .widget-title {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

/* Footer tagline */
.footer-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

/* Social icons */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--bllc-sunset);
    transform: translateY(-3px);
}

/* Copyright */
.site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 1rem !important; }
.mb-2 { margin-bottom: 2rem !important; }
.mb-3 { margin-bottom: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 1rem !important; }
.mt-2 { margin-top: 2rem !important; }
.mt-3 { margin-top: 3rem !important; }

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--bllc-sunset);
    outline-offset: 2px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--bllc-forest);
    color: #ffffff;
    padding: 1rem 2rem;
    z-index: 9999;
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: clamp(3rem, 6vw, 5rem);
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .wp-block-cover.bllc-hero,
    .wp-block-cover:first-of-type {
        min-height: 80vh !important;
    }
    
    .wp-block-cover__inner-container {
        padding: 1.5rem;
    }
    
    .bllc-story-grid,
    .wp-block-post-template {
        grid-template-columns: 1fr;
    }
    
    .bllc-value-card,
    .bllc-features .wp-block-column {
        padding: 2rem;
    }
    
    .bllc-origin-story,
    .wp-block-quote.is-style-large {
        padding: 2rem;
        margin: 2rem 1rem;
    }
    
    blockquote,
    .wp-block-quote {
        padding-left: 1.5rem;
        font-size: 1.1rem;
    }
    
    .entry-header {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .wp-block-button__link,
    .bllc-btn {
        padding: 14px 28px !important;
        font-size: 0.9rem !important;
    }
    
    .bllc-countdown-number {
        font-size: 4rem;
    }
}

/* ==========================================================================
   KADENCE SPECIFIC OVERRIDES
   ========================================================================== */

/* Clean up Kadence defaults */
.kt-row-has-bg .kt-row-layout-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%) !important;
}

.kb-row-layout-wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.wp-block-kadence-column > .kt-inside-inner-col {
    padding: 0;
}

/* Kadence buttons inherit our styles */
.kb-buttons-wrap .kt-button {
    margin: 0.5rem;
}

/* Kadence forms */
.kb-form .kadence-blocks-form-field input,
.kb-form .kadence-blocks-form-field textarea {
    border-radius: 8px;
    border: 2px solid var(--bllc-sand-dark);
    padding: 14px 18px;
    transition: border-color 0.2s ease;
}

.kb-form .kadence-blocks-form-field input:focus,
.kb-form .kadence-blocks-form-field textarea:focus {
    border-color: var(--bllc-forest);
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    .site-header,
    .site-footer,
    .wp-block-button,
    .bllc-email-capture {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}

/* ==========================================================================
   HERO SLIDESHOW
   ========================================================================== */

.bllc-hero-slideshow {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    max-height: 1000px;
    overflow: hidden;
    /* Break out of Kadence container */
    left: 50%;
    transform: translateX(-50%);
    max-width: none;
}

/* Override Kadence's content container for homepage hero only */
body.home.page .site-main > .content-wrap,
body.home.page .entry-content-wrap,
body.home.page .content-container,
body.home.page article.entry .entry-content {
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* About page — constrain content width and center image */
body.page:not(.home) .entry-content {
    max-width: 720px !important;
    margin: 0 auto !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

body.page:not(.home) .entry-content .about-hero-image {
    max-width: 500px;
    margin: 2rem auto;
    text-align: center;
}

body.page:not(.home) .entry-content .about-hero-image img {
    border-radius: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    width: 100%;
}

/* Ensure parent containers don't clip */
.entry-content,
.content-wrap,
.site-main,
.entry-content-wrap {
    overflow: visible !important;
}

.bllc-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.bllc-slide.active {
    opacity: 1;
    z-index: 2;
}

.bllc-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 3;
    pointer-events: none;
}

.bllc-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 900px;
    padding: 2rem;
}

.bllc-hero-pretitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.bllc-hero-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.bllc-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 0.5rem;
    opacity: 0.95;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.bllc-hero-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.bllc-hero-content .bllc-btn {
    background: #ffffff !important;
    color: var(--bllc-dark) !important;
    border-color: #ffffff !important;
    font-size: 1rem !important;
    padding: 18px 40px !important;
}

.bllc-hero-content .bllc-btn:hover {
    background: var(--bllc-sunset) !important;
    border-color: var(--bllc-sunset) !important;
    color: #ffffff !important;
}

/* Slideshow navigation dots (optional future enhancement) */
.bllc-slideshow-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.75rem;
}

.bllc-slideshow-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bllc-slideshow-dot.active,
.bllc-slideshow-dot:hover {
    background: #ffffff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .bllc-hero-slideshow {
        height: 85vh;
        min-height: 500px;
    }
    
    .bllc-hero-content {
        padding: 1.5rem;
    }
    
    .bllc-hero-content .bllc-btn {
        padding: 14px 30px !important;
    }
}

/* ==========================================================================
   NEWSLETTER SIGNUP
   ========================================================================== */

.bllc-newsletter {
    background: linear-gradient(135deg, var(--bllc-forest) 0%, var(--bllc-forest-dark) 100%);
    padding: var(--section-padding) 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bllc-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: subtle-drift 60s linear infinite;
}

@keyframes subtle-drift {
    from { transform: translate(0, 0); }
    to { transform: translate(30px, 30px); }
}

.bllc-newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.bllc-newsletter-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.bllc-newsletter h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #ffffff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.bllc-newsletter-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.bllc-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 450px;
    margin: 0 auto;
}

@media (min-width: 500px) {
    .bllc-newsletter-form {
        flex-direction: row;
    }
}

.bllc-newsletter-form input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    font-size: 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.bllc-newsletter-form input[type="email"]:focus {
    border-color: var(--bllc-sunset);
    box-shadow: 0 0 0 4px rgba(232, 152, 94, 0.2);
}

.bllc-newsletter-form input[type="email"]::placeholder {
    color: var(--bllc-text-muted);
}

.bllc-newsletter-form button {
    background: var(--bllc-sunset);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.bllc-newsletter-form button:hover {
    background: var(--bllc-sunset-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 152, 94, 0.4);
}

.bllc-newsletter-form button:active {
    transform: translateY(0);
}

.bllc-newsletter-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.bllc-newsletter-privacy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.bllc-newsletter-privacy a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

/* Newsletter response messages */
.bllc-newsletter-response {
    margin-top: 1rem;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.bllc-newsletter-response.success {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bllc-newsletter-response.error {
    background: rgba(220, 53, 69, 0.2);
    color: #ffcccc;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Loading spinner */
.bllc-newsletter-form button .spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Minimal version (for footer) */
.bllc-newsletter.minimal {
    background: var(--bllc-sand);
    padding: 3rem 2rem;
}

.bllc-newsletter.minimal h2 {
    color: var(--bllc-forest);
    font-size: 1.5rem;
}

.bllc-newsletter.minimal .bllc-newsletter-tagline {
    color: var(--bllc-text-light);
}

.bllc-newsletter.minimal .bllc-newsletter-privacy {
    color: var(--bllc-text-muted);
}

.bllc-newsletter.minimal .bllc-newsletter-privacy a {
    color: var(--bllc-forest);
}
