/* Accommodation Hero with Background Slideshow */
.accommodation-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slideshow .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slideshow .slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Slideshow Navigation */
.slideshow-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 2;
}

.slideshow-nav button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slideshow-nav button.active {
    background: var(--primary-green);
    transform: scale(1.2);
}

/* DigsConnect-style Accommodation Card */
.accommodation-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(60,60,60,0.10), 0 1.5px 4px rgba(60,60,60,0.08);
  border: 1.5px solid #e6e6e6;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  min-width: 320px;
  max-width: 370px;
  margin: 0 auto 32px auto;
}
.accommodation-card:hover {
  box-shadow: 0 16px 40px rgba(60,60,60,0.16), 0 2px 8px rgba(60,60,60,0.10);
  transform: translateY(-4px) scale(1.02);
}
.accommodation-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  position: relative;
  background: #f5f5f5;
}
.accommodation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  transition: transform 0.4s;
}
.accommodation-card:hover .accommodation-image img {
  transform: scale(1.04);
}
.price-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: #fff;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 16px;
  padding: 7px 18px;
  box-shadow: 0 2px 8px rgba(60,60,60,0.10);
  border: 1.5px solid #e6e6e6;
}
.accommodation-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 18px 22px;
}
.accommodation-details h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #222;
  letter-spacing: 0.01em;
}
.accommodation-location {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #666;
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.accommodation-location svg {
  width: 18px;
  height: 18px;
  margin-right: 2px;
  color: var(--primary-green);
}
.accommodation-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.accommodation-meta .type {
  background: #f0f7f3;
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 6px;
  padding: 3px 10px;
}
.accommodation-meta .rating {
  color: #ffb400;
  font-weight: 600;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 2px;
}
.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 18px 0;
}
.amenities span {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f5f5f5;
  color: #444;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 0.88rem;
  font-weight: 500;
}
.amenities svg {
  width: 16px;
  height: 16px;
  color: var(--primary-green);
}
.accommodation-details .btn {
  margin-top: auto;
  width: 100%;
  background: var(--primary-green);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 12px;
  padding: 12px 0;
  transition: background 0.2s;
  border: none;
  box-shadow: 0 2px 8px rgba(60,60,60,0.08);
}
.accommodation-details .btn:hover {
  background: var(--dark-green);
}
@media (max-width: 600px) {
  .accommodation-card {
    min-width: 90vw;
    max-width: 98vw;
  }
  .accommodation-details {
    padding: 14px 8px 12px 8px;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .slideshow-nav {
        bottom: 30px;
    }
}

/* --- User's Card Styles --- */
.card {
  width: 320px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin: 20px auto;
}
.image-container {
  position: relative;
}
.image-container img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: orange;
  color: white;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
}
.card-content {
  padding: 16px;
}
.card-content h2 {
  margin: 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.stars {
  color: #f4c430;
  font-size: 1rem;
}
.card-content p {
  margin: 8px 0;
  font-size: 0.9rem;
  color: #333;
}
.icon {
  margin-right: 8px;
}
.tags {
  margin: 10px 0;
}
.tag {
  display: inline-block;
  background: #333;
  color: white;
  padding: 6px 12px;
  margin-right: 8px;
  border-radius: 20px;
  font-size: 0.75rem;
}
.footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.explore-btn {
  background: #28a745;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}
.price {
  font-weight: bold;
}