/**
 * Whitey's Fish Camp - Homepage Styles
 * Reuses shared styles from whiteys-shared.css
 */

/* Layout is handled globally by body.whiteys-full-width in whiteys-shared.css */

/* ============================================
   HERO SECTION — HOMEPAGE SPECIFIC
   ============================================ */
.hero-title {
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 0;
    overflow: hidden;
}

.hero-slider-track {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

.hero-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Slider Dots & Controls */
.hero-section.slider-active {
    overflow: hidden !important;
}

.slider-controls-wrapper {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1000;
    pointer-events: auto;
}

.slider-dots {
    display: flex;
    gap: 15px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    padding: 0;
    margin: 0;
    box-shadow: none;
    outline: none;
    box-sizing: border-box;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.slider-dot.is-active {
    background: var(--whiteys-green);
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.slider-play-pause-btn {
    background: rgba(255, 255, 255, 0.25);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
    outline: none;
}

.slider-play-pause-btn:hover {
    background: rgba(255, 255, 255, 0.45);
}

.slider-play-pause-btn:focus-visible,
.slider-dot:focus-visible {
    outline: 3px solid #fff !important;
    outline-offset: 3px !important;
}
.intro-section {
    display: flex;
    width: 100%;
    min-height: clamp(480px, 40.1vw, 750px);
    align-items: stretch;
}

.intro-content-col {
    width: 50%;
    background-color: var(--whiteys-white);
    padding: clamp(55px, 5.35vw, 100px) 8%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Homepage specific intro background */
.intro-content-col {
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: left center;
}

.intro-content-col .content-inner {
    max-width: clamp(380px, 35vw, 685px);
    text-align: center;
}

.intro-content-col .section-heading {
    font-size: clamp(40px, 3.85vw, 72px);
    margin-bottom: 25px;
    line-height: 1.05;
    white-space: nowrap;
}

.intro-content-col .section-text {
    font-size: clamp(14px, 1.07vw, 20px);
    line-height: 1.8;
    margin-bottom: 35px;
}

.intro-content-col .script-font {
    font-size: clamp(24px, 2.25vw, 42px);
    margin-bottom: 5px;
    color: var(--whiteys-dark);
}

.intro-image-col {
    width: 50%;
    position: relative;
}

.intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* ============================================
   OUR MENU CTA SECTION
   ============================================ */
.menu-cta-section {
    background-color: var(--whiteys-cream);
    padding: clamp(65px, 6.42vw, 120px) 40px;
    text-align: center;
}

.menu-cta-content {
    max-width: 850px;
    margin: 0 auto;
}

.menu-cta-content .section-heading {
    font-size: clamp(40px, 3.85vw, 72px);
    margin-bottom: 30px;
}

.menu-cta-content .section-text {
    font-size: clamp(14px, 1.07vw, 20px);
    line-height: 1.8;
    max-width: clamp(450px, 37.4vw, 700px);
    margin: 0 auto 45px;
}

/* ============================================
   TWO-IMAGE FOOD SPLIT
   ============================================ */
.image-split-grid {
    display: grid;
    grid-template-columns: 2.2fr 1.2fr;
    width: 100%;
}

.split-img {
    width: 100%;
    height: clamp(480px, 40.1vw, 750px);
    object-fit: cover;
    display: block;
}

/* ============================================
   BOTTOM CTA SECTION (SHARED)
   ============================================ */
/* Styles moved to whiteys-shared.css for global reuse */

/* ============================================
   LAPTOP / TABLET DYNAMIC SCALING
   ============================================ */
/* Stepped breakpoint removed — clamp() handles fluid scaling smoothly */

@media (max-width: 768px) {
    /* Hero Mobile Refinements */
    .hero-content {
        padding: 180px 20px 0;
    }
    .hero-title {
        font-size: 72px;
        max-width: 420px;
        margin: 0 auto 55px;
        line-height: 1.05;
        white-space: normal;
    }

    /* Intro Mobile Refinements */
    .intro-section {
        flex-direction: column;
        min-height: auto;
    }
    .intro-content-col, .intro-image-col {
        width: 100%;
    }
    .intro-image-col {
        height: auto;
        order: 2;
    }
    .intro-img {
        height: auto;
        width: 100%;
        display: block;
        position: relative;
    }
    .intro-content-col {
        order: 1;
        background-image: url('/wp-content/uploads/2026/06/BG.png') !important;
        background-position: center bottom;
        background-size: cover !important;
        padding: 120px 25px;
        background-color: rgba(255,255,255,0.45);
        background-blend-mode: multiply;
    }
    .home .intro-content-col .section-heading {
        font-size: 9vw;
        white-space: nowrap;
        margin-bottom: 25px;
    }
    .home .menu-cta-content .section-heading {
        font-size: 17vw;
    }

    /* Image Split Mobile Refinements */
    .image-split-grid {
        grid-template-columns: 1fr;
    }
    .split-img {
        height: auto;
        display: block;
        width: 100%;
    }

    /* Bottom CTA Mobile Refinements */
    .bottom-cta-section {
        background-repeat: no-repeat;
        background-position: right -100px bottom -80px;
        background-size: cover !important;
        padding: 130px 0;
    }
}
