/*
Reverie Pro Section - External Luxury Stylesheet
File: assets/css/reverie-pro.css
Description: External standalone CSS engineered for Elementor Pro sections, animated luxury borders, responsive grids, interactive modals, forms, and print architectural specifications.
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --color-wine-950: #140a0f;
  --color-wine-900: #1a0e13;
  --color-wine-850: #1f1016;
  --color-wine-800: #25141c;
  --color-wine-700: #381e28;
  --color-wine-border: #3d1f28;
  --color-sand-50: #fbf7f4;
  --color-sand-100: #ebdcd3;
  --color-sand-200: #e2d5ce;
  --color-sand-300: #c8bac1;
  --color-sand-400: #E6C2A4;
  --font-serif: 'Cormorant Garamond', Georgia, Cambria, 'Times New Roman', Times, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Base Utility Classes */
.reverie-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

.reverie-card:hover {
  border-color: var(--color-sand-400);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.5);
}

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

.reverie-btn-primary:hover {
  background-color: #f0d5bf;
  color: #25141c;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(230, 194, 164, 0.35);
}

.reverie-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--color-sand-400);
  border: 1px solid rgba(230, 194, 164, 0.4);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  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);
  transform: translateY(-2px);
}

/* Animated Gold Gradient Border */
.reverie-pro-gold-border {
  position: relative;
  background: linear-gradient(135deg, rgba(72, 40, 48, 0.9) 0%, rgba(37, 20, 28, 0.95) 100%);
  border: 1px solid rgba(230, 194, 164, 0.25);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.reverie-pro-gold-border:hover {
  border-color: rgba(230, 194, 164, 0.7);
  box-shadow: 0 12px 30px -10px rgba(230, 194, 164, 0.15);
}

/* Frosted Luxury Glass */
.reverie-pro-glass {
  background: rgba(32, 17, 24, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(230, 194, 164, 0.15);
}

/* Floor Plan Vector Display */
.reverie-floorplan-vector {
  background: #170c11;
  border: 1px solid #3d1f28;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Elementor Section & Widget Presets */
.elementor-section.reverie-dark-section {
  background-color: #1a0e13 !important;
  color: #ebdcd3 !important;
}

.elementor-widget.reverie-heading h2 {
  font-family: var(--font-serif) !important;
  font-weight: 300 !important;
  letter-spacing: 0.05em !important;
  color: #fbf7f4 !important;
}

/* Luxury Tables */
.reverie-luxury-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
}

.reverie-luxury-table th {
  padding: 1rem 1.25rem;
  background-color: #28151e;
  color: var(--color-sand-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  border-bottom: 1px solid #3d1f28;
}

.reverie-luxury-table td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid #2d161f;
  color: #e2d5ce;
}

.reverie-luxury-table tr:hover td {
  background-color: #24131b;
  color: #fbf7f4;
}

/* Interactive Modal Backdrop */
.reverie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(10, 5, 8, 0.88);
  backdrop-filter: blur(8px);
  padding: 1rem;
}

/* Form Styling & Inbuilt Validation */
.reverie-input-group {
  margin-bottom: 1.25rem;
}

.reverie-input-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-sand-100);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.reverie-input-control {
  width: 100%;
  background-color: #170c11;
  border: 1px solid #3d1f28;
  color: #fbf7f4;
  padding: 0.85rem 1rem;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color 0.25s ease;
  box-sizing: border-box;
}

.reverie-input-control:focus {
  outline: none;
  border-color: var(--color-sand-400);
  box-shadow: 0 0 0 2px rgba(230, 194, 164, 0.2);
}

/* Print Architectural Layout */
@media print {
  body {
    background-color: #ffffff !important;
    color: #000000 !important;
  }
  .reverie-card, .reverie-luxury-table th {
    background-color: #f5f5f5 !important;
    color: #000000 !important;
    border-color: #cccccc !important;
  }
}
