@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Outfit:wght@300;400;600;700&display=swap');

:root {
  /* High-Luxury Color Palette */
  --bg-dark: #0a0c10;
  --bg-dark-accent: #14171c;
  --primary: #c5a059; /* Elegant Gold */
  --primary-light: #f1d592;
  --primary-glow: rgba(197, 160, 89, 0.4);
  --text-main: #fdfcf0; /* Pearl White */
  --text-dim: #94a3b8;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(20px);
  --gold-gradient: linear-gradient(135deg, #8a6d3b 0%, #c5a059 50%, #f1d592 100%);

  /* Animation delays */
  --delay-1: 0.2s;
  --delay-2: 0.4s;
  --delay-3: 0.6s;

  /* Spacing & Border */
  --section-padding: 80px 5%;
  --border-radius: 20px;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}

h1, h2, h3, .heading-font {
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
}

/* Base Utilities */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.glass-card {
  background: var(--glass);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 30px 20px;
}

/* Utilities for cleanup */
.centered-content { text-align: center; }
.bold-text { font-weight: bold; }
.small-text { font-size: 0.8rem; }
.footer-cta-section { margin-top: 40px; }

.gold-text {
  color: var(--primary);
  background: linear-gradient(135deg, #c5a059 0%, #f1d592 50%, #c5a059 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-primary {
  padding: 14px 28px;
  background: var(--primary);
  color: var(--bg-dark);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
}

.btn-primary:active {
  transform: scale(0.98);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  animation: fadeIn 0.8s forwards;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 60px;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/hero_render.jpg') no-repeat center center/cover;
}

.hero-content {
  z-index: 10;
  width: 100%;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-main);
  font-weight: 300;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(10, 12, 16, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

.logo img {
  height: 40px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: 0.3s;
}

.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background: var(--bg-dark-accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: 0.4s;
  z-index: 1000;
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.nav-links.active {
  right: 0;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

/* Sections */
.section {
  padding: var(--section-padding);
}

.bg-light-section {
  background-color: var(--bg-dark-accent);
}

.grid-2 {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.text-center { text-align: center; }

h2 {
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  margin-bottom: 20px;
  hyphens: auto;
}

p {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 15px;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--primary);
}

/* Luxury Icons */
/* Investment */
.investment-stats {
  padding: 30px 20px;
}

/* Contact Form */
.contact-box {
  max-width: 100%;
  text-align: center;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

#contact-form input {
  padding: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

footer {
  padding: 50px 5%;
  border-top: 1px solid var(--glass-border);
}

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
}

.remax-logo {
  height: 50px;
  margin-top: 20px;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.15));
  transition: transform 0.3s ease;
}

.remax-logo:hover {
  transform: scale(1.05);
}

/* Tablet & Desktop Enhancements */
@media (min-width: 768px) {
  :root {
    --section-padding: 80px 10%;
  }

  h2 { font-size: 2.5rem; }

  .grid-2 {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (min-width: 1200px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  :root {
    --section-padding: 100px 5%;
  }

  .hero h1 { font-size: 3.5rem; }
  .hero p { font-size: 1.25rem; }

  nav {
    padding: 20px 5%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    border: none;
    backdrop-filter: none;
  }

  .menu-toggle { display: none; }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    gap: 40px;
  }

  .nav-links a { font-size: 0.9rem; }
}
