/* ==========================================================================
   CILENTO REAL ESTATE - BASE STYLES
   ========================================================================== */

/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CSS Variables */
:root {
  /* Elegant Color Palette */
  --primary-dark: #484747;
  --secondary-dark: #484747;
  --tertiary-dark: #2d3035;
  --accent-dark: #2d3035;
  --surface-dark: #363a40;

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #e1e3e6;
  --text-light: #f8f9fa;
  --text-gray: #9ca3af;
  --text-muted: #9ca3af;
  --text-disabled: #6b7280;

  /* Brand Colors */
  --accent-gold: #b99622;
  --accent-gold-light: #d4af37;
  --accent-gold-dark: #40c43b;


  /* Border Color */
  --border-color: #ffffff;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #b99622 0%, #a68520 100%);
  --gradient-gold: linear-gradient(135deg, #b99622 0%, #d4af37 100%);
  --gradient-golg:
  --gradient-overlay: linear-gradient(135deg, rgba(72,71,71,0.85) 0%, rgba(72,71,71,0.75) 100%);
  --gradient-surface: linear-gradient(145deg, #1c1e21 0%, #2d3035 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
  --shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.3);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: all 0.15s ease;
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
}

/* Base Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--primary-dark);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Prevent scrolling when mobile menu is open */
body.menu-open {
  overflow: hidden;
  height: 100vh;
}

/* Layout Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1.2rem;
  line-height: 1.75;
  letter-spacing: 0.015em;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition-normal);
}

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

/* Blockquote */
blockquote {
  margin: 1rem 0;
  padding: 0 0 0 20px;
  border-left: 3px solid var(--accent-gold);
}

blockquote p {
  margin: 0;
  font-style: italic;
  font-weight: 500;
}

blockquote b {
  font-weight: 700;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.mb-5 { margin-bottom: var(--space-2xl); }

.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
.mt-5 { margin-top: var(--space-2xl); }

.p-1 { padding: var(--space-sm); }
.p-2 { padding: var(--space-md); }
.p-3 { padding: var(--space-lg); }
.p-4 { padding: var(--space-xl); }
.p-5 { padding: var(--space-2xl); }

/* Section Spacing */
.section {
  padding: 100px 0;
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }

  .container {
    padding: 0 15px;
  }

  .section {
    padding: 60px 0;
  }
}
