/* Global Styles */
:root {
    --off-white: #f8f8f8;
    --light-brown: #d4a373;
    --medium-brown: #a68a64;
    --dark-brown: #6c584c;
    --text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: var(--off-white);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--light-brown);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--medium-brown);
    transform: translateY(-2px);
}

section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--dark-brown);
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--light-brown);
    margin: 15px auto;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

.logo img {
    height: 50px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--dark-brown);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--light-brown);
}

.language-switcher button {
    background: none;
    border: 1px solid var(--light-brown);
    color: var(--light-brown);
    padding: 5px 10px;
    margin-left: 5px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-switcher button.active {
    background-color: var(--light-brown);
    color: white;
}

.language-switcher button:hover {
    background-color: var(--light-brown);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('first\ 1.jpeg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.hero h2::after {
    background-color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Properties Section */
.properties {
    background-color: white;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.property-card {
    background-color: var(--off-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-10px);
}

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

.property-card h3 {
    padding: 15px 20px 0;
    color: var(--dark-brown);
}

.property-card p {
    padding: 0 20px;
    margin: 5px 0;
}

.property-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--light-brown);
    margin: 15px 0;
}

.property-card .btn {
    display: block;
    margin: 20px;
    text-align: center;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--light-brown);
}

.contact-form {
    flex: 1;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* ================================
   FOOTER STYLES
=================================== */
footer {
    background-color: #2c1f17; /* Dark brown (adjust to match your palette) */
    color: #fff;
    padding: 60px 0 30px;
    font-family: "Poppins", sans-serif;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Layout */
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  /* Logo Section */
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .footer-logo img {
    height: 55px;
  }
  
  .footer-logo h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f5e3c3; /* Soft beige tone to contrast with brown */
  }
  
  /* Links Section */
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
  }
  
  .footer-links a:hover {
    color: #d1a573; /* Light brown accent color */
  }
  
  /* Contact Info */
  .footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
  }
  
  .footer-contact i {
    margin-right: 10px;
    color: #d1a573;
    font-size: 1rem;
  }
  
  /* Social Media */
  .footer-social {
    margin-top: 15px;
  }
  
  .footer-social h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #f5e3c3;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
  }
  
  .social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #d1a573; /* accent */
    color: #2c1f17;
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    background-color: #fff;
    color: #2c1f17;
    transform: translateY(-3px);
  }
  
  /* Footer Bottom */
  .footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
  }
  
  /* ================================
     RESPONSIVE DESIGN
  =================================== */
  @media (max-width: 900px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-links,
    .footer-contact {
      margin-top: 20px;
    }
  
    .footer-logo {
      justify-content: center;
    }
  
    .social-icons {
      justify-content: center;
    }
  }
  