/* ========== BASE COLORS & BUTTONS ========== */
.button {
  background-color: #0e1927;
  color: #fcad47;
}

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* ========== DASHBOARD LAYOUT ========== */
.dashboard {
  display: flex;
  min-height: 100vh;
}

.dashboard-app {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-top: 110px;
  transition: margin-left 0.3s ease;
}

/* Push content right on desktop to make space for sidebar */
@media (min-width: 992px) {
  .dashboard-app {
    margin-left: 250px;
  }
  .dashboard-nav.offcanvas {
    transform: none !important;
    visibility: visible !important;
  }
}

/* ========== SIDEBAR ========== */
.dashboard-nav {
  background-color: #0c1b2a !important;
  width: 250px !important;
  min-height: 100vh;
  margin-top: 90px;
}

/* Sidebar links */
.dashboard-nav-item {
  display: block;
  color: #fab536;
  padding: 10px 15px;
  text-decoration: none;
  transition: 0.3s;
}

.dashboard-nav-item:hover,
.dashboard-nav-item.active {
  background-color: #162c46;
  border-radius: 5px;
  color: #f1c343;
}

/* Mobile behavior */
@media (max-width: 991px) {
  .dashboard-nav {
    transform: translateX(-100%);
  }

  .dashboard-nav.mobile-show {
    transform: translateX(0);
  }

  .dashboard-app {
    margin-left: 0;
  }
}


/* ========== CONTENT STYLES ========== */
.dashboard-content {
  flex-grow: 2;
  padding: 25px;
}

@media (max-width: 768px) {
  .dashboard-content {
    padding: 15px;
  }
}

/* Overview Card */
.overview {
  background: #f8f9fa;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 20px;
}

.divino {
  background-color: #0e1927;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
}

/* Headings */
#overview h1,
#overview h2 {
  color: #2c3e50;
}

/* ========== ELITE BUTTON ========== */
.elite {
  background-color: #0e1927;
  width: fit-content;
  padding: 3px 12px;
  color: #f1c343;
  display: flex;
  align-items: center;
  border-radius: 10px;
  transition: 0.3s;
}

#overview .elite:hover {
  background: #15284b;
}

#overview .elite a {
  color: rgb(245, 191, 75);
  text-decoration: none;
}

/* ========== PRICE CARD ========== */
.price-card {
  background: #fff;
  color: #333;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card h5 {
  font-weight: bold;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 5px;
  display: inline-block;
}

.price-card p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.price-card .btn {
  background-color: #0e1927;
  color: #fff;
  border-radius: 50px;
  padding: 10px 25px;
  width: 100%;
}

/* ========== AMENITIES ========== */
.amenities {
  background-color: rgb(215, 224, 236);
  box-shadow: 10px 8px 20px rgba(0, 0, 0, 0.1);
}

.amenity-card {
  text-align: center;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #eaf7f6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
  font-size: 40px;
  color: #007b8f;
  margin-bottom: 15px;
}

/* ========== GALLERY ========== */
.gallery-item {
  position: relative;
  width: 100%;
  padding-top: 65%;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ========== MAP ========== */
.map {
  height: 80vh;
}

/* ========== RESPONSIVE FIXES ========== */
@media (max-width: 768px) {

  .price-card,
  .overview {
    margin: 10px;
  }

  h1,
  h2 {
    text-align: center;
  }

  .gallery-item {
    padding-top: 75%;
  }
}