/*
Theme Name: Parivaar Stays
Theme URI: https://parivaarstays.com
Author: Parivaar Management
Author URI: https://parivaarstays.com
Description: A premium single-page booking website for Parivaar Stays — an elegant 3-bedroom home in Gaborone, Botswana. Features a warm earth & stone African contemporary design with direct booking functionality, Google Vacation Rental schema markup, and social media integration.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: parivaar-stays
Tags: one-column, custom-header, custom-background, custom-logo, full-width-template, block-styles, wide-blocks, custom-menu, featured-images, theme-options
*/

/* ========= RESET & BASE ========= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #FAF8F5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: #2C2420;
}

/* ========= BRAND COLORS ========= */
:root {
  --terracotta: #B85C3A;
  --terracotta-light: #D4774F;
  --sand: #F5F0E8;
  --sand-warm: #EDE6D8;
  --gold-soft: #D4A853;
  --charcoal: #2C2420;
  --charcoal-deep: #1A1613;
  --white: #FFFFFF;
  --muted: #7A7068;
  --border: #E0D8CE;
  --radius: 8px;
}

/* ========= LAYOUT ========= */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ========= SCROLLBAR ========= */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--sand);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-soft);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--terracotta);
}
