/*
 Theme Name: DreamYoga Child
 Theme URI: https://dreamyoga.com
 Description: Child theme for DreamYoga.com (GeneratePress optimized)
 Author: Joseph Dillard
 Template: generatepress
 Version: 1.5
*/

/* ============================================
   BRAND COLORS
===============================================*/
:root {
    --dy-green: #7ed957;
    --dy-blue: #4ab3f4;
    --dy-gray: #444444;
    --dy-dark: #222222;
}

/* ============================================
   GLOBAL TYPOGRAPHY & BODY
===============================================*/
body {
    font-family: system-ui, sans-serif;
    color: var(--dy-dark);
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

/* ============================================
   HEADER & NAVIGATION
===============================================*/
.main-navigation a {
    font-weight: 600;
}

/* ============================================
   CALL-TO-ACTION BUTTONS
===============================================*/
a.cta-primary, a.cta-button {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    background: var(--dy-blue);
    color: white !important;
    transition: background 0.3s ease;
}
a.cta-primary:hover, a.cta-button:hover {
    background: #3693d6;
}
a.cta-secondary {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--dy-blue);
    color: var(--dy-blue) !important;
    transition: background 0.3s ease, color 0.3s ease;
}
a.cta-secondary:hover {
    background: var(--dy-blue);
    color: white !important;
}

/* ============================================
   HERO SECTION
===============================================*/
.hero {
    background: #f0f8ff;
    text-align: center;
    padding: 4rem 1rem 3rem 1rem;
}
.hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0.5rem auto 1.5rem auto;
}
.hero .cta-buttons a {
    margin: 0.5rem 1rem;
}

/* ============================================
   THREE-PILLAR ORIENTATION
===============================================*/
.orientation {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
    gap: 2rem;
}
.orientation .pillar {
    flex: 1 1 280px;
    background-color: #f9f9f9;
    padding: 1.8rem 1.2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
}
.orientation .pillar h2 {
    color: var(--dy-green);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.orientation .pillar p {
    font-size: 1rem;
    line-height: 1.6;
}

/* ============================================
   START HERE MENU
===============================================*/
.start-here-menu {
    width: 100%;
    max-width: 960px;
    margin: 2rem auto 2rem auto;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
}
.start-here-menu h3 {
    color: var(--dy-green);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.start-here-menu nav a {
    display: inline-block;
    margin: 0.5rem 1rem;
    color: var(--dy-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.start-here-menu nav a:hover {
    color: var(--dy-blue);
}

/* ============================================
   FOOTER
===============================================*/
.site-footer {
    background: #222;
    color: #f0f0f0;
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.9rem;
}
.site-footer a {
    color: var(--dy-green);
    text-decoration: none;
    font-weight: 600;
}
.site-footer a:hover {
    color: var(--dy-blue);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
===============================================*/
@media (max-width: 1024px) {
    .orientation {
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .orientation {
        flex-direction: column;
        gap: 1rem;
    }
    .orientation .pillar {
        max-width: 100%;
    }
    .start-here-menu {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    .start-here-menu nav a {
        margin: 0.4rem 0.6rem;
        display: block;
    }
}

/* ============================================
   HIDE RIGHT-HAND SIDEBAR AND GENERATEPRESS ELEMENTS ON HOME
===============================================*/
.home .sidebar,
.home .secondary-menu,
.home .floating-menu {
    display: none !important;
}

/* MAKE MAIN CONTENT FULL WIDTH */
.home .content-area {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 1.5rem;
}