/*
Theme Name: Visit Okavango Safaris
Theme URI: https://visitokavangosafaris.co.bw
Author: Visit Okavango Safaris
Author URI: https://visitokavangosafaris.co.bw
Description: A classic WordPress theme for Visit Okavango Safaris - a mobile safari company in Maun, Botswana offering boat cruises, tour guides, campsites, fishing, guided walks, bird watching, and cultural tours across the Okavango Delta.
Version: 1.0.0
Tested up to: 6.9.1
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: visitokavango
Tags: one-column, two-columns, custom-colors, custom-menu, featured-images, theme-options, translation-ready
*/

:root {
    --vos-primary: #7cb242;
    --vos-primary-dark: #5a8a2f;
    --vos-primary-light: #a4cf6f;
    --vos-accent: #ec9330;
    --vos-accent-dark: #d17a1a;
    --vos-font-color: #636663;
    --vos-dark: #222;
    --vos-white: #fff;
    --vos-light-gray: #f7f7f7;
    --vos-border: #e0e0e0;

    --vos-font-body: 'Open Sans', sans-serif;
    --vos-font-heading: 'Montserrat', sans-serif;

    --vos-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --vos-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --vos-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

    --vos-radius: 6px;
    --vos-transition: 0.3s ease;

    --vos-container: 1200px;
    --vos-header-height: 80px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--vos-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--vos-font-color);
    background: var(--vos-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--vos-font-heading);
    font-weight: 700;
    color: var(--vos-dark);
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

a {
    color: var(--vos-primary);
    text-decoration: none;
    transition: color var(--vos-transition);
}

a:hover {
    color: var(--vos-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

p {
    margin-bottom: 1em;
}

.vos-container {
    max-width: var(--vos-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.vos-btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--vos-font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: var(--vos-radius);
    cursor: pointer;
    transition: all var(--vos-transition);
    text-align: center;
    line-height: 1;
}

.vos-btn--primary {
    background: var(--vos-primary);
    color: var(--vos-white);
    border-color: var(--vos-primary);
}

.vos-btn--primary:hover {
    background: var(--vos-primary-dark);
    border-color: var(--vos-primary-dark);
    color: var(--vos-white);
}

.vos-btn--accent {
    background: var(--vos-accent);
    color: var(--vos-white);
    border-color: var(--vos-accent);
}

.vos-btn--accent:hover {
    background: var(--vos-accent-dark);
    border-color: var(--vos-accent-dark);
    color: var(--vos-white);
}

.vos-btn--outline {
    background: transparent;
    color: var(--vos-white);
    border-color: var(--vos-white);
}

.vos-btn--outline:hover {
    background: var(--vos-white);
    color: var(--vos-primary);
}

/* --- Section Common --- */
.vos-section {
    padding: 100px 0;
}

.vos-section--gray {
    background: var(--vos-light-gray);
}

.vos-section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.vos-section__title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
}

.vos-section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--vos-primary);
    margin: 15px auto 0;
}

.vos-section__subtitle {
    font-size: 1.1rem;
    color: var(--vos-font-color);
    font-weight: 400;
}

/* --- Screen reader text --- */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* --- Alignments --- */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

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

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