* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: url("../img/1221f4f9f8433ec2a3c22d53c4c121d3.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

#navbarNav {
  font-size: 15px;
}

/* Logo */
.logo {
  font-size: 26px;
  font-weight: bold;
  color: white;
  display: none; /* IMPORTANT */
}

.logo span {
  color: #ffcc00;
}

/* Menu */
.menu a {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  font-size: 16px;
  transition: 0.3s;
}

.menu a:hover {
  color: #ffcc00;
}

.banner-container {
  width: 100%;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  position: relative;
  margin-top: 30px;
}

.banner-container img {
  width: 100%;
  height: 100%;
  display: block;
}

.banner-container .location-box {
  position: absolute;
  bottom: 20px;
  left: 75%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  display: none; /* IMPORTANT */
}

.logo span {
  color: #ffcc00;
}

/* Hide logo initially */
.navbar-brand {
  display: none;
  font-weight: bold;
  font-size: 24px;
}

.navbar-brand span {
  color: #ffc107;
}

/* Menu */
.menu a {
  color: #fff;
  text-decoration: none;
  margin-left: 25px;
  font-size: 16px;
  transition: 0.3s;
}

.menu a:hover {
  color: #ffcc00;
}

/* GRID */
.hostel-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.hostel-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  position: relative;
}

.hostel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* IMAGE */
.hostel-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* PRICE TAG */
.price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff6b00;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: bold;
}

/* CONTENT */
.card-content {
  padding: 15px;
  flex-wrap: wrap;
}

.card-content h3 {
  margin: 0;
  color: #222;
}

.card-content p {
  font-size: 14px;
  color: #555;
  margin: 5px 0 10px;
}

/* FACILITIES */
.facilities {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facilities li {
  font-size: 14px;
  margin: 6px 0;
}

/* BUTTON */
.btn {
  background: #007bff;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}

.btn:hover {
  background: #0056b3;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  /* .hostel-container{
        grid-template-columns: repeat(2, 1fr);
    } */
}

@media (max-width: 600px) {
  .hostel-container {
    grid-template-columns: 1fr;
  }
}

/* CSS */
.button-85 {
  padding: 0.6em 2em;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-85:before {
  content: "";
  background: linear-gradient(
    45deg,
    #0033ff,
    #00aeff,
    #0d00ff,
    #2f00ff,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.button-85:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.hostel-box {
  background: #fff;
  border: 2px solid #e0e0e0;
  color: #333;
  padding: 20px;
  margin: 20px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.6;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  cursor: pointer;
  text-align: center;

  margin-top: 50px;
}

/* box hover effect */
.hostel-box:hover {
  color: #0d6efd;
  border-color: #0d6efd;
  box-shadow: 0 15px 35px rgba(13, 110, 253, 0.35);
  transform: translateY(-6px);
}

/* GRID */
/* .card-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
} */

/* CARD */
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: 0.4s;
  overflow: hidden;
  position: relative;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(13, 110, 253, 0.35);
}

/* IMAGE */
.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* CONTENT */
.card-body {
  padding: 15px;
  text-align: center;
}

/* CLOSE */
.close {
  display: none;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

.body {
  background-image: url(../img/1221f4f9f8433ec2a3c22d53c4c121d3.jpg);
}

.prev {
  left: -20px;
}
.next {
  right: -20px;
}

.footer {
  background-color: #0c9af3;
  margin-top: 50px;
  padding: 20px;
}
.copy {
  background-color: #032c57e7;
  color: white;
  margin-top: 20px;
}
