/*
Theme Name: Expawers
Theme URI: https://expawers.com
Author: Han Creative Studio
Author URI: https://hancreative.studio
Description: Premium warm dark mode theme for Expawers dog hiking service with copper/bronze accents. Fully SEO optimized for Google and AI search.
Version: 5.5.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: expawers
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Backgrounds - Warm Dark */
    --exp-bg-primary: #0d0b09;
    --exp-bg-secondary: #131110;
    --exp-bg-tertiary: #1a1715;
    
    /* Glass Effect */
    --exp-glass-bg: rgba(30, 27, 24, 0.8);
    --exp-glass-border: rgba(201, 166, 107, 0.15);
    
    /* Accent Colors - Copper/Bronze */
    --exp-accent-primary: #c9a66b;
    --exp-accent-secondary: #d4b87a;
    --exp-accent-dark: #a68b5b;
    
    /* Text Colors */
    --exp-text-primary: #f5f0e8;
    --exp-text-secondary: rgba(245, 240, 232, 0.7);
    --exp-text-muted: rgba(245, 240, 232, 0.4);
    
    /* Borders */
    --exp-border-subtle: rgba(201, 166, 107, 0.1);
    --exp-border-medium: rgba(201, 166, 107, 0.2);
    
    /* Gradients */
    --exp-gradient-accent: linear-gradient(135deg, #c9a66b 0%, #d4b87a 100%);
    --exp-gradient-button: linear-gradient(135deg, #c9a66b 0%, #b8956a 100%);
    
    /* Shadows */
    --exp-shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.2);
    --exp-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.3);
    --exp-shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.4);
    --exp-glow: 0 0 30px rgba(201, 166, 107, 0.15);
}

/* ============================================
   BASE STYLES
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--exp-text-primary);
    background-color: var(--exp-bg-primary);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--exp-text-primary);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin: 0 0 0.5em 0;
}

h1 { font-size: clamp(3rem, 8vw, 5rem); }
h2 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin: 0 0 1em 0;
    color: var(--exp-text-secondary);
}

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

a:hover {
    color: var(--exp-accent-secondary);
}

/* ============================================
   BUTTONS
   ============================================ */
.et_pb_button,
.exp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--exp-gradient-button);
    color: #0d0b09;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(201, 166, 107, 0.25);
}

.et_pb_button:hover,
.exp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 166, 107, 0.35);
    color: #0d0b09;
}

/* ============================================
   FORMS
   ============================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="url"],
input[type="number"],
textarea,
select {
    width: 100%;
    background: rgba(26, 23, 21, 0.8);
    border: 1px solid var(--exp-border-subtle);
    border-radius: 10px;
    color: var(--exp-text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    padding: 14px 16px;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--exp-accent-primary);
    box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: var(--exp-text-muted);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.exp-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.exp-section {
    padding: 100px 0;
}

.exp-section-dark {
    background: var(--exp-bg-secondary);
}

.exp-text-center {
    text-align: center;
}

.exp-text-muted {
    color: var(--exp-text-muted);
}

/* ============================================
   IMAGES
   ============================================ */
img {
    max-width: 100%;
    height: auto;
}

.exp-image-rounded {
    border-radius: 16px;
    box-shadow: var(--exp-shadow-lg);
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--exp-bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: rgba(201, 166, 107, 0.3);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(201, 166, 107, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
    .exp-section {
        padding: 70px 0;
    }
    
    .exp-container {
        padding: 0 16px;
    }
}
