/*
Theme Name: Reverie Luxury Residences
Theme URI: https://gadagroup.co.in/reverie
Author: Gada Group
Author URI: https://gadagroup.co.in
Description: A bespoke WordPress theme crafted for Reverie by Gada Group in Aundh, Pune. Features single-residence-per-floor architectural showcase, Elementor compatibility, inbuilt AJAX lead generation forms, and external pro luxury CSS.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: reverie-theme
Tags: luxury, real-estate, elementor-ready, dark-mode, custom-colors, responsive-layout, translation-ready
*/

:root {
  --color-wine-900: #140a0f;
  --color-wine-800: #1a0e13;
  --color-wine-700: #25141c;
  --color-wine-600: #331b23;
  --color-wine-500: #482830;
  --color-wine-border: #3d1f28;
  --color-sand-50: #fbf7f4;
  --color-sand-100: #ebdcd3;
  --color-sand-200: #e2d5ce;
  --color-sand-300: #c8bac1;
  --color-sand-400: #E6C2A4;
  --color-sand-500: #d4a984;
  --font-serif: "Cormorant Garamond", "Danmark URW Light", Garamond, Georgia, serif;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--color-wine-800);
  color: var(--color-sand-100);
  line-height: 1.6;
}

body {
  background-color: var(--color-wine-800);
  color: var(--color-sand-100);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Typography */
.font-serif {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.font-sans {
  font-family: var(--font-sans);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-sand-50);
  font-weight: 300;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease;
}

/* Luxury Components */
.reverie-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.reverie-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-sand-400);
  color: #482830;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reverie-btn-primary:hover {
  background-color: #faebe0;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -5px rgba(230, 194, 164, 0.25);
}

.reverie-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--color-sand-400);
  border: 1px solid var(--color-wine-500);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reverie-btn-outline:hover {
  background-color: var(--color-wine-700);
  border-color: var(--color-sand-400);
  color: var(--color-sand-50);
}

.reverie-card {
  background-color: var(--color-wine-700);
  border: 1px solid var(--color-wine-border);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.reverie-card:hover {
  border-color: var(--color-sand-400);
  transform: translateY(-4px);
}
