/*
Theme Name: Ather Canvas Theme
Theme URI: https://ather.cloud
Author: Ather Agency
Description: A blank canvas with Tailwind, Cairo Font, and RTL support.
Version: 2.0
*/

/* --- GLOBAL SETTINGS --- */
:root {
    --col-dark: #0d3b61;
    --col-gold: #efbb85;
    --col-beige: #e2d6c0;
    --col-grey: #d7d7d7;
    --col-white: #ffffff;
}

/* Force Cairo Font on EVERYTHING (including Elementor) */
body, h1, h2, h3, h4, h5, h6, p, a, div, span, input, button {
    font-family: 'Cairo', sans-serif !important;
}

/* Basic WordPress Alignments */
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--col-dark); border-radius: 4px; }

/* Navigation Links (Required for the Header to work) */
.nav-link { position: relative; display: inline-block; color: var(--col-dark); font-weight: 700; font-size: 1.125rem; transition: color 0.3s; }
.nav-link:hover { color: var(--col-gold); }
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -6px;
    right: 0;
    background-color: var(--col-gold);
    transition: width 0.3s ease;
    border-radius: 2px;
}
.nav-link:hover::after { width: 100%; }

/* Utilities needed for the PHP files */
.bg-brand-dark { background-color: var(--col-dark); }
.text-brand-gold { color: var(--col-gold); }
.text-brand-beige { color: var(--col-beige); }