/*
Theme Name: Alpha Omega Wellness
Author: NL Labs
Version: 1.1
*/

/* =============================================
   FIX 1: Global box-sizing reset
   Prevents input/element overflow on all browsers
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
}

/* =============================================
   FIX 2: Smooth scroll for anchor nav links
   ============================================= */
html {
    scroll-behavior: smooth;
}

/* =============================================
   FIX 3: Upgraded font — Lato replaces Arial
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;600;700&display=swap');

body {
    margin: 0;
    font-family: 'Lato', Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.site-header {
    background: #003399;
    color: #fff;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

/* HAMBURGER BUTTON */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
}

/* DESKTOP NAV */
.main-nav ul {
    display: flex;
    gap: 25px;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: none;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.headLogo {
    max-width: 250px;
    height: auto;
}

.logo-text {
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(90deg, #f8f1b4, #d2ad62);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
}

/* HERO */
.hero {
    background: url('/wp-content/themes/aow-theme/assets/img/alpha-omega-wellness-hero-ohio.jpg') center/cover;
    color: #fff;
    padding: 120px 0;
}

/* =============================================
   FIX 4: .btn base — added border-radius,
   font-weight, cursor, and transition
   ============================================= */
.btn {
    padding: 10px 20px;
    display: inline-block;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border: 2px solid transparent;
}

.btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.btn-blue {
    background: #003399;
    color: #fff;
    border-color: #003399;
}

.btn-gold {
    background: #caa85c;
    color: #fff;
    border-color: #caa85c;
}

/* =============================================
   FIX 5: .btn-outline — was missing entirely
   ============================================= */
.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* HERO BUTTONS */
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* GRID */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.features {
    padding: 80px 0;
    background: #f9f9f9;
}

/* CARD STYLE */
.feature-card {
    background: #fff;
    border-top: 3px solid #caa85c;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef2f6;
    color: #caa85c;
    transition: 0.3s ease;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-card:hover .feature-icon {
    background: #caa85c;
    color: #fff;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #555;
}

/* SPLIT */
.split {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff, #f7f9fc);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.split-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.split-content p {
    margin-bottom: 20px;
    color: #555;
}

.split-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.split-list li {
    margin-bottom: 10px;
}

.split-image {
    height: 400px;
    background: url('/wp-content/themes/aow-theme/assets/img/alpha-omega-wellness-split-ohio.jpg') center/cover no-repeat;
    border-radius: 10px;
}

/* SERVICES */
.services {
    padding: 90px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #f9f9f9;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.service-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef2f6;
    color: #caa85c;
    transition: 0.3s ease;
}

.service-icon svg {
    width: 26px;
    height: 26px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #caa85c;
}

.service-card:hover .service-icon {
    background: #caa85c;
    color: #fff;
}

/* TESTIMONIALS */
.testimonials {
    padding: 80px 0;
    background: #003399;
}

.testimonials .section-header h2 {
    color: #fff;
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: transparent;
    padding: 10px 0 0;
    position: relative;
}

.testimonial-card::before {
    content: "\201C";
    font-size: 80px;
    color: #caa85c;
    position: absolute;
    top: -20px;
    left: 0;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    padding-top: 40px;
}

.testimonial-card h4 {
    font-size: 14px;
    color: #caa85c;
    font-weight: 600;
}

/* DOTS */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.testimonial-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.testimonial-dots span.active {
    background: #caa85c;
}

/* CONTACT */
.contact {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 15px;
    color: #555;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 14px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef2f6;
    color: #caa85c;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-item strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #003399;
    margin-bottom: 2px;
}

.contact-item p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.contact-item a {
    color: #555;
    text-decoration: none;
}

.contact-item a:hover {
    color: #caa85c;
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
}

/* =============================================
   FIX 6: Inputs use 100% width safely now that
   box-sizing: border-box is set globally
   ============================================= */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #caa85c;
}

.contact-form .btn {
    margin-top: 10px;
}

/* =============================================
   FIX 7: Disclaimer font-size bumped to 14px
   for better readability of legal content
   ============================================= */
.disclaimer {
    background: #f4f6f8;
    border-top: 3px solid #caa85c;
    padding: 40px 0;
    font-size: 14px;
    color: #444;
}

.disclaimer p {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* FOOTER */
.site-footer {
    background: #003399;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-col:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text-ft {
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(90deg, #f8f1b4, #d2ad62);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #caa85c;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 15px;
}

.footer-col input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    font-family: inherit;
}

.footer-col button {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 12px;
    opacity: 0.85;
}

.footer-bottom a {
    color: #caa85c;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-divider {
    margin: 0 8px;
    opacity: 0.6;
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #caa85c;
    color: #fff;
}

/* =============================================
   RESPONSIVE — TABLET (max 900px)
   ============================================= */
@media (max-width: 900px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================= */
@media (max-width: 768px) {

    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        display: block;
    }

    .menu-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100%;
        background: #142c5c;
        padding: 80px 20px;
        transition: 0.3s ease;
        z-index: 999;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .btn-gold {
        display: none;
    }

    .split-grid {
        grid-template-columns: 1fr;
    }

    .split-image {
        height: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* =============================================
       FIX 8: services-grid collapses at 768px too
       (was missing — left a 2-col gap on mid phones)
       ============================================= */
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (max 500px)
   ============================================= */
@media (max-width: 500px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}