
:root{
    --background-color:white;
    --font-color:black;
    --font-color-white:white;
    --black-hover-color:rgba(0, 0, 0, 0.469);
    --white-hover-color:#ffffff;
    --bottums-color: #025959;
    --sections-bakcground-color:#f9f9f9;
    
}

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


body {
    font-family: 'Arial', sans-serif; /* Matching your style.css */
    color: var(--text-color-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
     line-height: 1.6;
    color: #333;
}
/* Header Section */
.hero {
    background-image: url('images/gallery\ hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

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

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




.search-bar {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
  }

  .search-bar input,
  .search-bar button {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
  }

  .search-bar input {
    flex: 1;
    min-width: 200px;
  }

  .search-bar button {
    background-color:var(--bottums-color);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    padding: 14px 24px;
  }

  .tabs {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    justify-content: center;
  }

  .tabs button {
    padding: 10px 16px;
    border: none;
    background: none;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 3px solid transparent;
  }

  .tabs button.active {
    color: var(--bottums-color);
    border-color: var(--bottums-color);
  }

  .card-container {
    padding: 10px;
    display: inline;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    justify-content: center;
    text-decoration: none;
    color:black;
    
    
  }

  .card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    
  }

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

  .card-body {
    padding: 16px;
  }

  .card-body h4 {
    font-size: 16px;
    margin-bottom: 4px;
    text-align: center;
  }

  .card-body p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
    text-align: center;
  }

  .card-body .price {
    font-size: 14px;
    font-weight: 600;
    color: var(--bottums-color);
  }
 

  @media (max-width: 768px) {
    .search-bar {
      flex-direction: column;
      align-items: stretch;
    }

    .search-bar input,
    .search-bar button {
      width: 100%;
    }

    .tabs {
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    .tabs button {
      font-size: 14px;
      padding: 8px 12px;
    }

    .card-container {
      grid-template-columns: 1fr;
    }

    .card img {
      height: 180px;
    }

    .card-body {
      padding: 12px;
    }

    .card-body h4 {
      font-size: 15px;
    }

    .card-body p {
      font-size: 13px;
    }
  }
  /*----------------------
  /*----------------------
  /*----------------------
  /*----------------------
  /*----------------------*/
    /* Vacation Rentals Destinations Section Styles */
    .rental-container {
        max-width: 1000px;
        margin: 50px auto;
        padding: 0 20px;
    }
    
    .rental-container h1 {
        color: #2d3e50;
        text-align: center;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .rental-tabs {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .rental-tab {
        padding: 8px 15px;
        border-radius: 20px;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s ease;
    }
    
    .rental-tab.active {
        background-color: #f0f2f7;
        color: var(--bottums-color);
        font-weight: bold;
    }
    
    .rental-tab:not(.active) {
        color: #666;
    }
    
    .rental-tab-content {
        display: none;
    }
    
    .rental-tab-content.active {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .rental-card {
        border: 1px solid #e9e9e9;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        cursor: pointer;
        transition: transform 0.2s;
    }
    
    .rental-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .destination {
        color: #333;
        font-weight: bold;
        margin-bottom: 5px;
        font-size: 15px;
    }
    
    .property-count {
        color: #666;
        font-size: 14px;
    }
    
    @media (max-width: 768px) {
        .rental-tab-content.active {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 480px) {
        .rental-tab-content.active {
            grid-template-columns: 1fr;
        }
    }




    .features-container {
        display: flex;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    .feature-card {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 15px;
        max-width: 33.33%;
    }

    .icon-container {
        width: 40px;
        height: 40px;
        border: 2px solid var(--bottums-color);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
    }

    .icon-person {
        font-size: 20px;
        color: var(--bottums-color);
    }

    .icon-clock {
        font-size: 20px;
        color: var(--bottums-color);
    }

    .icon-doc {
        font-size: 20px;
        color: var(--bottums-color);
    }

    .feature-title {
        color: var(--bottums-color);
        font-weight: bold;
        margin-bottom: 5px;
        font-size: 16px;
    }

    .highlight {
        font-weight: normal;
    }

    .feature-description {
        color: #555;
        font-size: 14px;
        line-height: 1.5;
    }

    @media (max-width: 768px) {
        .features-container {
            flex-direction: column;
        }
        
        .feature-card {
            max-width: 100%;
            margin-bottom: 30px;
        }
    }
