/*
Theme Name: Kwetu Luxury
Description: A Regal Emerald & Gold theme for high-end travel.
Version: 1.0.0
Author: Nyumbani Groups
Text Domain: kwetu-luxury
*/

:root {
    /* --- PALETTE --- */
    --c-emerald: #0b4636;       /* Deep Regal Green */
    --c-emerald-dark: #062b21;
    --c-gold: #d4af37;          /* Metallic Gold */
    --c-gold-light: #f3e5ab;
    --c-cream: #f9f9f7;         /* Luxury Background */
    --c-text: #2c2c2c;
    --c-text-light: #666;
    --c-white: #ffffff;

    /* --- TYPOGRAPHY --- */
    --font-heading: 'Playfair Display', serif; /* Classic Serif */
    --font-body: 'Lato', sans-serif;           /* Modern Sans */

    /* --- SPACING --- */
    --container: 1200px;
    --radius: 4px; /* Sharp, classic corners */
}

/* --- RESET & BASE --- */
* { box-sizing: border-box; }
body {
    background-color: var(--c-cream);
    color: var(--c-text);
    font-family: var(--font-body);
    line-height: 1.6;
    margin: 0;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--c-emerald);
    margin-top: 0;
    font-weight: 700;
}

a { color: var(--c-emerald); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--c-gold); }

/* --- UTILITIES --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.btn-gold {
    display: inline-block;
    background: var(--c-gold);
    color: var(--c-white);
    padding: 12px 30px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: bold;
    border: 1px solid var(--c-gold);
}
.btn-gold:hover {
    background: transparent;
    color: var(--c-gold);
}

/* --- HEADER --- */
.site-header {
    background: var(--c-white);
    border-bottom: 3px solid var(--c-gold);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-title {
    font-size: 28px;
    font-family: var(--font-heading);
    color: var(--c-emerald);
    letter-spacing: -0.5px;
}

/* --- HERO --- */
.hero {
    background: var(--c-emerald);
    color: var(--c-white);
    padding: 80px 0;
    text-align: center;
    background-image: linear-gradient(rgba(11, 70, 54, 0.9), rgba(11, 70, 54, 0.8)), url('assets/hero-pattern.png');
}
.hero h1 { color: var(--c-gold); font-size: 3rem; margin-bottom: 10px; }
.hero p { font-size: 1.2rem; opacity: 0.9; max-width: 600px; margin: 0 auto 30px; }

/* --- TOUR GRID --- */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 0;
}
.tour-card {
    background: var(--c-white);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--c-gold);
}
.tour-img { height: 200px; background: #ddd; object-fit: cover; width: 100%; }
.tour-body { padding: 25px; }
.tour-price { color: var(--c-gold); font-family: var(--font-heading); font-size: 1.2rem; margin-top: 10px; display: block;}

/* --- PLUGIN OVERRIDES (The Magic) --- */
/* This forces the Plugin Widget to match the Theme */
.kwetu-card, .kwetu-summary {
    border: 1px solid var(--c-gold) !important;
    background: var(--c-white) !important;
    border-radius: 0 !important; /* Classic sharp corners */
}
.kwetu-btn {
    background-color: var(--c-emerald) !important;
    font-family: var(--font-heading) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 !important;
}
.kwetu-btn:hover { background-color: var(--c-gold) !important; }
.kwetu-badge { background-color: var(--c-gold-light) !important; color: var(--c-emerald) !important; }
.kwetu-portal-table th { background-color: var(--c-emerald) !important; color: var(--c-white) !important; }