/*
Theme Name: Luxury Homes Care
Theme URI: https://theluxuryhomescare.com
Author: Kamran Khadim
Author URI:
Description: Premium, bespoke WordPress theme designed specifically for Luxury Homes Care UAE. Built for high-end swimming pool architecture, botanical landscaping, custom water features, and luxury interior fit-outs across Dubai, Abu Dhabi, and the UAE.
Version: 1.0.0
Tested up to: 6.7
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: luxury-homes-care
Tags: custom-colors, custom-menu, custom-logo, featured-images, full-width-template, theme-options, translation-ready, luxury, real-estate, landscaping, pools
*/

:root {
  --color-emerald: #0B6E4F;
  --color-dark-green: #064C36;
  --color-deep-green: #042A1E;
  --color-gold: #C8A75D;
  --color-gold-light: #DFC17B;
  --color-white: #FFFFFF;
  --color-light-gray: #F8F9FA;
  --color-text: #222222;
  --color-text-muted: #666666;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-light-gray);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark-green);
  font-weight: 700;
  line-height: 1.25;
}

.font-serif-luxury {
  font-family: var(--font-serif);
}

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

a:hover {
  color: var(--color-gold);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-gold);
  color: var(--color-dark-green);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(200, 167, 93, 0.3);
}

.btn-gold:hover {
  background-color: var(--color-gold-light);
  color: var(--color-dark-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 167, 93, 0.45);
}

.btn-emerald {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-emerald);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-emerald:hover {
  background-color: var(--color-dark-green);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  padding: 11px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
}

/* Sections */
.section-padding {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-eyebrow {
  display: inline-block;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: 32px;
  color: var(--color-dark-green);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title.text-white {
  color: #ffffff;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px auto 16px;
}

.section-divider .line {
  width: 48px;
  height: 1px;
  background-color: var(--color-gold);
}

.section-divider .diamond {
  width: 6px;
  height: 6px;
  background-color: var(--color-gold);
  transform: rotate(45deg);
}

.section-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto;
}

.section-subtitle.text-white {
  color: rgba(255, 255, 255, 0.8);
}
