/*
Theme Name: Newtoxton Tours
Theme URI: https://newtoxton.com
Author: Newtoxton Team
Author URI: https://newtoxton.com
Description: A dark-themed tour booking WordPress theme with single-page listing interface, Alpine.js interactivity, and multi-language support for Tanzania safari tours.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: newtoxton-tours
Domain Path: /languages
Screenshot: screenshot.png
Tags: travel, tours, booking, dark-theme, multilingual, e-commerce

This theme requires the following plugins:
- Newtoxtonian Core (companion plugin)
- Elementor (page builder)
- WooCommerce (booking integration)
- Polylang (multi-language support)
*/

/* Theme is styled using Tailwind CSS loaded via functions.php */
/* All custom styles are compiled through the build process */

:root {
    --color-primary: #ff6b35;
    --color-primary-dark: #e55a2b;
    --color-dark: #1a1a1a;
    --color-darker: #111111;
    --color-gray: #2d2d2d;
    --color-text: #e0e0e0;
    --color-text-muted: #a0a0a0;
    --color-border: #333333;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--color-darker);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* WordPress Core Alignment Classes */
.alignnone {
    margin: 1.5em 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 1.5em auto;
}

.alignright {
    float: right;
    margin: 0.5em 0 1.5em 1.5em;
}

.alignleft {
    float: left;
    margin: 0.5em 1.5em 1.5em 0;
}

/* WordPress Galleries */
.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
    padding: 0.5em;
}

/* 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;
    width: 1px;
    word-wrap: normal !important;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--color-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* RTL Support for Arabic */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .alignleft {
    float: right;
    margin: 0.5em 0 1.5em 1.5em;
}

[dir="rtl"] .alignright {
    float: left;
    margin: 0.5em 1.5em 1.5em 0;
}
