/*
Theme Name: Growth Mindset & MindFULLness
Theme URI: https://growthmindsetandmindfullness.com
Author: Stilyana Zheleva
Description: A soft beige minimal calming theme for hypnotherapy and energy healing.
Version: 1.0
Text Domain: gmm
*/

body {
    margin: 0;
    padding: 0;
    font-family: "Georgia", serif;
    background-color: #f4e7d3; /* soft beige */
    color: #3e2e1f; /* warm brown text */
}

/* HEADER */

header {
    background-color: #f4e7d3;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 22px;
    font-weight: bold;
    color: #3e2e1f;
}

nav a {
    font-size: 16px;
    color: #3e2e1f;
    margin-left: 20px;
    text-decoration: none;
}

nav a:hover {
    opacity: 0.7;
}

/* HERO */

.hero-section {
    display: flex;
    padding: 60px 40px;
    background-color: #f4e7d3;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-section img {
    width: 480px;
    max-width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 600;
    color: #3e2e1f;
    margin: 0 0 20px;
}

.hero-text p {
    font-size: 20px;
    color: #3e2e1f;
    margin-bottom: 30px;
}

.button-primary {
    background-color: #d4a048; /* soft gold */
    color: white;
    padding: 14px 26px;
    border-radius: 8px;
    display: inline-block;
    font-size: 18px;
    text-decoration: none;
}

.button-primary:hover {
    opacity: 0.85;
}

/* GENERIC LAYOUT */

.main-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px;
}

.main-wrapper h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.main-wrapper h2 {
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.main-wrapper p,
.main-wrapper li {
    font-size: 18px;
    line-height: 1.7;
}

/* ABOUT LAYOUT */

.about-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.about-text {
    flex: 2;
    min-width: 260px;
}

.about-photo-wrap {
    flex: 1;
    min-width: 220px;
}

.about-photo {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.jung-quote {
    margin: 24px 0;
    padding-left: 16px;
    border-left: 3px solid #d4a048;
    font-style: italic;
    font-size: 18px;
}

/* SERVICES GRID */

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 30px;
}

/* FOOTER */

footer {
    background-color: #ead9c0;
    padding: 40px;
    text-align: center;
    font-size: 14px;
}
/* --- Mobile layout for About page --- */
@media (max-width: 768px) {

    /* Stack the content vertically on small screens */
    .about-layout {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* Show the photo first (right under the "About Me" title) */
    .about-photo-wrap {
        order: 1;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;          /* center the image */
    }

    .about-photo {
        width: 100%;
        height: auto;
        border-radius: 12px;
        object-fit: cover;
        display: block;
    }

    /* Text comes after the image on mobile */
    .about-text {
        order: 2;
    }
}
/* ---- IMPROVED MOBILE MENU: bigger buttons but still one line ---- */
@media (max-width: 768px) {

    .site-header {
        padding: 6px 8px !important;
    }

    .main-nav {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        gap: 2px !important;                 /* MINIMUM spacing */
        width: 100% !important;
        white-space: nowrap !important;
    }

    .main-nav a {
        font-size: 15px !important;          /* Larger and readable */
        padding: 6px 4px !important;         /* Bigger tap area */
        margin: 0 !important;
        display: inline-block !important;
        white-space: nowrap !important;
        flex-shrink: 1 !important;           /* Auto shrink to fit one line */
    }

    .main-nav a.button-primary {
        padding: 6px 10px !important;        /* Larger Contact button */
        font-size: 15px !important;
        border-radius: 10px !important;
        flex-shrink: 1 !important;
    }
}
/* Move desktop navigation menu to the right */
@media (min-width: 769px) {
    .main-navigation {
        display: flex;
        justify-content: flex-end !important;
        width: 100%;
    }

    .main-navigation ul {
        justify-content: flex-end !important;
        width: 100%;
    }
}



