
/* === Base Styles === */
:root {
  --primary: #14b8a6;
  --primary-light: #5eead4;
  --secondary: #334155;
  --text: #333;
  --text-light: #64748b;
  --background: #fff;
  --background-light: #f8fafc;
  --border: #e2e8f0;
  --success: #22c55e;
  --warning: #eab308;
  --error: #ef4444;
  --radius: 0.5rem;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-primary {
  color: var(--primary);
}

/* === Header Styles === */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
}

.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.brand-text span {
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-item:hover {
  color: var(--primary);
}

.nav-item svg {
  margin-right: 0.5rem;
  width: 1rem;
  height: 1rem;
}

.dropdown {
  margin-left: 0.25rem;
  width: 0.75rem;
  height: 0.75rem;
}

.header-right {
  display: flex;
  align-items: center;
}

.language-selector {
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--text-light);
  cursor: pointer;
}

.icon-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
  color: var(--text);
  transition: color 0.2s;
}

.icon-button:hover {
  color: var(--primary);
}

.icon-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* === Hero Section === */
.hero {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 650px;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
}

.hero-subtitle a {
  color: var(--primary-light);
  transition: color 0.2s;
}

.hero-subtitle a:hover {
  text-decoration: underline;
}

/* === Section Styles === */
.section {
  padding: 5rem 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
  text-align: center;
}

.section-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

/* === Property Grid === */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.property-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: white;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.property-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.property-type-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
}

.property-content {
  padding: 1.5rem;
  text-align: left;
}

.property-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.property-location {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.property-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.property-detail {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.75rem;
  color: var(--text-light);
}

.detail-value {
  font-size: 0.875rem;
  font-weight: 500;
}

.detail-value.highlight {
  color: var(--primary);
}

.property-certification {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.view-details {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-top: 1rem;
}

.view-details svg {
  margin-left: 0.25rem;
  width: 1rem;
  height: 1rem;
}

.view-all-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s;
  margin: 0 auto;
  display: block;
  width: fit-content;
}

.view-all-button:hover {
  background: var(--primary);
  color: white;
}

/* === Collection Page Styles === */
.collection-header {
  padding: 4rem 0 2rem;
}

.collection-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.collection-description {
  max-width: 600px;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.filter-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.filter-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
}

.filter-select {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  background: white;
  color: var(--text);
  min-width: 150px;
}

/* === Category Tags === */
.category-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--background-light);
  color: var(--text-light);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.category-tag.commercial {
  background: #e0f2fe;
  color: #0369a1;
}

.category-tag.residential {
  background: #fef9c3;
  color: #a16207;
}

.category-tag.sustainable {
  background: #dcfce7;
  color: #166534;
}

.category-tag.featured {
  background: #f3e8ff;
  color: #9333ea;
}

/* === Footer === */
.footer {
  background: var(--background-light);
  padding: 4rem 0 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand span {
  color: var(--primary);
}

.footer-text {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  max-width: 90%;
}

.footer-heading {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--text-light);
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--primary);
}

.copyright {
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}

/* === Media Queries === */
@media (max-width: 992px) {
  .nav {
    display: none;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 500px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .property-grid {
    grid-template-columns: 1fr;
  }
  
  .filters {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
  