/*
 Theme Name: OceanWP Child - ACMike
 Theme URI: https://acmikenj.com
 Description: Child theme for OceanWP customized for AC Mike
 Author: John Kuehner
 Template: oceanwp
 Version: 1.4
*/

/* ============================================================
   GLOBAL BASE STYLES
============================================================ */
html, body {
    height: 100%;
    margin: 0;
    scroll-behavior: smooth;
}

body {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    background: #0F1622;
}

/* ============================================================
   HERO SECTION — DESKTOP
============================================================ */
.section-hero {
    min-height: 100vh;
    height: auto;
    width: 100%;
    scroll-snap-align: start;

    background-image: url('https://acmike.jebtampublishing.com/wp-content/uploads/2025/11/Hero.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;

    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}

.hero-overlay {
    width: 100%;
    height: 100%;
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.section-about {
    min-height: 100vh;
    width: 100%;
    scroll-snap-align: start;

    background-color: #0F1622;
    color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 450px 1fr;
    align-items: center;
    gap: 60px;

    max-width: 1300px;
    width: 100%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;

    max-height: 75vh;
    object-fit: cover;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 22px;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.section-testimonials {
    min-height: 100vh;
    width: 100%;
    scroll-snap-align: start;

    background-color: #111827;
    color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

.testimonials-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

.testimonial-box {
    background: #1E293B;
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    text-align: center;

    font-size: 18px;
    line-height: 1.5;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.testimonial-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

/* ============================================================
   MOBILE / TABLET HERO ADJUSTMENTS
============================================================ */
@media (max-width: 768px) {

    .section-hero {
        min-height: 100vh !important;
        height: auto !important;

        background-size: contain !important;
        background-position: top center !important;
        background-repeat: no-repeat;
        background-color: #0F1622;

        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .about-wrapper {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 30px;
        padding-top: 20px;
    }

    .about-image img {
        width: 90%;
        max-height: none !important;
        object-fit: contain !important;
    }

    .about-text h2 {
        font-size: 26px;
    }
}

/* ============================================================
   MOBILE PORTRAIT HERO SWAP
============================================================ */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .section-hero {
        background-image: url('https://acmike.jebtampublishing.com/wp-content/uploads/2025/11/ACMIke-Portrait.png') !important;
        background-size: cover !important;
        background-position: center top !important;
    }
}

/* ============================================================
   CUSTOM HEADER — AC MIKE
============================================================ */
#acmike-header {
    width: 100%;
    background: rgba(15,22,34,0.92);
    backdrop-filter: blur(6px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    padding: 12px 30px;
}

.header-inner {
    display: flex;
    justify-content: flex-start;     /* LEFT ALIGN EVERYTHING */
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

/* NAVIGATION */
.header-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.header-nav ul li a {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: 0.2s;
}

.header-nav ul li a:hover {
    opacity: 0.7;
}

/* SOCIAL ICONS */
.header-social {
    display: flex;
    gap: 20px;
}

.header-social i {
    color: #fff;
    font-size: 20px;
    opacity: 0.85;
    transition: 0.2s;
}

.header-social i:hover {
    opacity: 1;
}

/* ============================================================
   MOBILE MENU
============================================================ */
.header-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.header-mobile-toggle span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
}

@media (max-width: 900px) {

    .header-mobile-toggle {
        display: flex;
    }

    .header-social {
        display: none;
    }

    .header-nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(15,22,34,0.95);
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }

    .header-nav.open {
        max-height: 300px;
    }

    .header-nav ul {
        flex-direction: column;
        padding: 20px 25px;
        gap: 20px;
    }

    .header-nav ul li a {
        font-size: 20px;
    }
}
