/*
Theme Name: Mojo-Dojo
Theme URI: https://mojomassagetaos.com
Author: Keith Reed / Mojo Massage
Author URI: https://mojomassagetaos.com
Description: Custom WordPress theme for Mojo Massage - Embodied transformation through therapeutic bodywork in Taos, New Mexico
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mojo-dojo
Tags: massage, wellness, therapy, custom-design
*/

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: #0a0a0a;
    color: #c9b896;
    line-height: 1.6;
}

/* WordPress Core Styles */
.alignleft {
    float: left;
    margin-right: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Header Styles */
body header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(6.5px);
    padding: 20px 20px 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 158, 135, 0.3);
	height: 200px;
}

.custom-logo {
    margin-left: 20px;
    margin-top: 10px;
}

.custom-logo-link {
    margin-left: 20px;
    margin-top: 10px;
}

.header-logo {
    height: 50px;
    margin-top: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav {
    display: flex;
    gap: 40px;
    list-style: none;
}

nav li {
    list-style: none;
}

nav a {
    color: #f0c43d;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #8b9e87;
}

.info-badge {
    background: linear-gradient(135deg, #8b9e87, #1a4d2e);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    border: 1px solid rgba(200, 90, 63, 0.4);
    padding: 20px 20px 20px 20px;
    border-radius: 4px;
    font-size: 1rem;
    line-height: 1.4;
    color: #c9b896;
    text-align: right;
    font-variant-numeric: lining-nums;
	margin-top: 45px;
	margin-right: 20px;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.info-badge strong {
    color: #f0c43d;
    display: block;
    margin-bottom: 4px;
}

.therapist-name {
    color: #f0c43d;
}

/* Footer Styles */
footer {
    background: #0a0a0a;
    color: #c9b896;
    text-align: center;
    padding: 60px 20px 30px;
    font-size: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.8;
}

.bottom-logo-section {
    padding: 40px 60px 0;
    text-align: center;
    background: #0a0a0a;
}

.bottom-logo {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    display: block;
}

/* Section Dividers */
.section-divider {
    border: none;
    border-top: 2px solid #c85a3f;
    margin: 0;
}

/* Typography */
.section-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: #f0c43d;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
	.info-badge {
    	display: none;
	}
    header {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

	.faq-question {
        color: #8b9e87;
    }
}
}
