/*
Theme Name: Opus Wellbeing
Theme URI: https://opuswellbeing.com
Author: Opus Wellbeing
Author URI: https://opuswellbeing.com
Description: A custom WordPress theme for Opus Wellbeing, featuring a modern and professional design with Bootstrap integration.
Version: 1.0.0
License: Proprietary
License URI: https://opuswellbeing.com
Text Domain: opuswell
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* This file is intentionally left mostly empty as the main styles are in assets/css/custom.css */

:root {
    --primary-blue: #1B3B72;
    --primary-green: #9DC45F;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

/* Header Styles */
.site-header {
    background: white;
    padding: 1rem 0;
    position: relative;
}

.header-logo {
    max-width: 200px;
}

.header-phone {
    color: var(--primary-blue);
    font-size: 1.25rem;
    text-decoration: none;
}

.menu-toggle {
    background: var(--primary-blue);
    border: none;
    padding: 1rem;
    width: 25%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Services Section */
.services-section {
    background: var(--primary-green);
    padding: 4rem 0;
}

.services-image {
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
}

.contact-form {
    position: relative;
    z-index: 2;
}

/* Footer */
.site-footer {
    background: var(--primary-green);
    padding: 3rem 0;
    color: white;
}

.footer-logo {
    max-width: 200px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .menu-toggle {
        width: 100px;
    }
    
    .header-phone {
        font-size: 1rem;
    }
} 