@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

*{
    font-family: "Crimson Text", serif;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    
}

body {
    background-color: #3d4b34;
    color: #e1d1b2;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    
    background-image: url(/src/images/Background_Img.webp);
    border: 1px solid #e1d1b2;

  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .tab-button {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .tab-button:hover {
    background-color: #5c7247;
    color: #e1d1b2;
  }
  
  .property-card {
    width: 100%; 
    max-width: 300px; 
    background-color: #4a5e40;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 1rem;
  }
  
  .property-card img {
    width: 100%;
    
    object-fit: cover;
  }
  
  .property-card .property-details {
    padding: 0.5rem;
  }
  
  .property-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .property-card p {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .property-card .property-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  @media (min-width: 768px) {
    .container {
      padding: 0;
    }
  
    .property-card {
      max-width: 400px; 
    }
  }
  @media (max-width: 400px) {
    #property-listings {
      padding-left: 1px;
    }
  }
  
  @media (min-width: 1024px) {
    .property-card {
      max-width: 300px;
    }
  }
  
/* // Footer css  */

.footer {
  display: flex;
  justify-content: space-evenly;
  margin: 50px;
}

.left-section {
  font-size: 18px;
}

.center-section {
  font-size: 25px;
  text-align: center;
}

.center-section ul {
  padding: 0;
  list-style: none;
}

.center-section li {
  font-size: 22px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-section input[type="email"] {
  margin-bottom: 10px;
}

.right-section p {
  margin-bottom: 10px;
}

.right-section ul {
  padding: 0;
  list-style: none;
}

.center-section ul li {
  position: relative; 
}

.center-section ul li:before {
  content: "◈ ";
  position: absolute;
  left: -20px;
  opacity: 0; 
  transition: opacity 0.3s ease; 
}

.center-section ul li:hover:before {
  opacity: 1; 
}
@media screen and (max-width: 1064px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .left-section, .center-section, .right-section {
    width: 100%;
    margin-bottom: 20px;
  }
}



/* Scrool  */
  .carousel-container2 {
    width: 80%; 
    height: 60px;
    max-width: 800px; 
    margin: 10px auto; 
    overflow: hidden;
    border-radius: 15px;
    background-color: #e1d1b2; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); 
  }
  
  .carousel2 {
    display: flex;
    justify-content: center; 
    align-items: center; 
    animation: scroll 10s linear infinite;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  .logo {
    width: 200px; 
    height: auto; 
    padding: 10px;
  
  }