body {
  margin: 0%;
  padding: 0%;

}
.navbar {
    display: flex;
    justify-content: space-between;
    background: #222;
   padding :  5px;
    text-align: right;
   
}

.logo {
    color: #fff;
    text-align: left;
}

.nav-links {
    list-style: none;
    display: flex;
    
}

.nav-links li {
    margin-left: 20px;
    
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.nav-links a:hover {
    color: orange;
}

.hero{
 height:100%;
 width: 100%;


}

.hero {
    height: 100vh;
    background-image: url("hotel.jpg"); /* fix path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    color: white;
    text-align: center;
}

/* dark overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

/* text on top */
.hero h1 {
    position: relative;
    z-index: 1;
    font-size: 50px;
}
.about-hero{
 height:100%;
 width: 100%;


}
.about-hero {
    height: 100vh;
    background-image: url("hotel.jpg"); /* fix path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    color: white;
    text-align: center;
}
.about-hero h1:hover{
    color: yellow;
}

.about-hero p:hover{
    color: yellow;
}
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

/* Gallery images */
.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

/* Hover effect */
.gallery-img:hover {
    transform: scale(1.05);
}

/* Section */
.rooms {
  padding: 40px 60px;
}

.rooms h2 {
  margin-bottom: 30px;
}

/* Cards */
.room-container {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  background: white;
  width: 250px;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

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

.card img {
  width: 100%;
  border-radius: 10px;
}

.card h3 {
  margin: 15px 0 5px;
}

.card p {
  color: #555;
  margin-bottom: 10px;
}

/* Button */
.card button {
  background: orange;
  border: none;
  padding: 10px 15px;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.card button:hover {
  background: darkorange;
}

