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

@font-face {
  font-family: 'PlaywriteBR';
  src: url('fonts/PlaywriteBR-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --primary: #9b5c2b;
  /* Earthy brown/bronze from flyer */
  --primary-dark: #6e401b;
  --secondary: #2f2f2f;
  --bg-color: #f7f3ec;
  /* Subtle beige/cream background */
  --light-bg: #ffffff;
  --text-main: #333333;
  --text-muted: #666666;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  overflow-x: hidden;
}

.premium-font {
  font-family: 'Playfair Display', serif;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--secondary);
}

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

.bg-primary {
  background-color: var(--primary) !important;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(155, 92, 43, 0.3);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: #ffffff;
}

/* Navbar */
.navbar {
  background-color: var(--light-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}

.navbar-brand {
  font-family: 'PlaywriteBR', sans-serif !important;
  font-weight: normal;
  font-size: 1.5rem;
  color: var(--primary) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  fill: var(--primary);
  width: 50px;
  height: 50px;
}

.nav-link {
  font-weight: 600;
  color: var(--text-main) !important;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 1;
  min-height: 400px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.hero-section .carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-section .carousel-inner {
  height: 100%;
}

.hero-section .carousel-item {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  border-left: 5px solid var(--primary);
  padding-left: 20px;
}

.hero-title {
  font-family: 'Lora', serif;
  font-size: 2.0rem;
  font-weight: normal;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}

.hero-subtitle {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 0;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.badge-boys {
  background-color: #ffffff;
  color: var(--secondary);
  font-size: 1.1rem;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 20px;
}

.price-tag {
  background-color: var(--primary);
  display: inline-block;
  padding: 15px 25px;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.price-tag span.small {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-tag span.price {
  font-size: 2.5rem;
  font-weight: 800;
}

/* Section Globals */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 50px;
  text-align: center;
}

.section-title span {
  color: var(--primary);
}

/* Features / Facilities Grid */
.facility-card {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.facility-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.facility-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

/* Location Card */
.location-wrapper {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.location-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.location-content {
  padding: 40px;
}

.location-content ul {
  list-style-type: none;
  padding-left: 0;
}

.location-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.location-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Room Gallery */
.room-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition: transform 0.3s ease;
}

.room-card:hover {
  transform: scale(1.02);
}

.room-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer / Contact */
.footer {
  background-color: var(--secondary);
  color: #fff;
  padding: 60px 0 20px;
}

.contact-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.contact-info h4 {
  color: #fff;
  font-family: 'PlaywriteBR', serif !important;
}

.contact-info p {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info p i {
  color: var(--primary);
  font-size: 1.3rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Property Cards Extracted */
.property-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  background: var(--light-bg);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.property-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.property-carousel .carousel-item img {
  height: 280px;
  object-fit: cover;
  width: 100%;
}

.property-badge {
  position: absolute;
  top: 15px;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 0 20px 20px 0;
  z-index: 10;
  color: var(--secondary);
}

.property-badge i {
  color: #f4b400;
}

.viewing-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 15px;
  z-index: 10;
  text-align: center;
}

.property-card-body {
  padding: 25px;
}

.property-title {
  color: var(--primary);
  font-weight: 700;
}

.chip {
  display: inline-block;
  padding: 6px 12px;
  background: var(--bg-color);
  color: var(--text-main);
  border-radius: 20px;
  font-size: 0.85rem;
  margin-right: 8px;
  margin-bottom: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.chip i {
  color: var(--primary);
  margin-right: 6px;
}

.price-section h4 {
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--text-main);
}

.btn-action-solid {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-action-solid:hover {
  background: var(--primary-dark);
  color: #fff;
  border-color: var(--primary-dark);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.btn-whatsapp:hover {
  background: #128C7E;
  color: #fff;
  border-color: #128C7E;
}

.btn-action-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-action-outline:hover {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .price-tag span.price {
    font-size: 2rem;
  }

  .location-content {
    padding: 20px;
  }
}