*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
    
}
html{
    scroll-behavior: smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    overflow-x:hidden;
}

/* HERO SECTION */

.hero{
    height:100vh;
    position:relative;
    overflow:hidden;
    color:#fff;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.45)
    ),
    url('./images/hotel.png');

    background-size:cover;
    background-position:center;

    animation:zoomBg 15s ease-in-out infinite alternate;

    z-index:-1;
}

@keyframes zoomBg{
    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.08);
    }
}

/* NAVBAR */

.navbar{
    width:90%;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:30px 0;

    animation:slideDown 1s ease;
}

@keyframes slideDown{
    from{
        opacity:0;
        transform:translateY(-40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

.logo{
    font-size:1.3rem;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-size:15px;
    transition:.3s;
}

.nav-links a:hover{
    color:#d4a373;
}

.book-btn{
    text-decoration:none;
    color:white;
    border:1px solid white;
    padding:14px 28px;
    transition:.3s;
}

.book-btn:hover{
    background:#d4a373;
    border-color:#d4a373;
}

.menu-toggle{
    display:none;
    font-size:1.8rem;
    color:white;
    cursor:pointer;
}

/* HERO CONTENT */

.hero-content{
    height:80vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:0 20px;
}

.hero-content h1{
    font-size:clamp(3rem,7vw,6rem);
    font-family:Georgia, serif;
    margin-bottom:20px;

    opacity:0;
    transform:translateY(60px);

    animation:fadeUp 1.2s ease forwards;
}

.hero-content p{
    font-size:1.3rem;
    max-width:700px;
    margin-bottom:30px;

    opacity:0;
    transform:translateY(60px);

    animation:fadeUp 1.2s ease forwards;
    animation-delay:.4s;
}

.hero-btn{
    text-decoration:none;
    background:#d4a373;
    color:white;

    padding:18px 40px;

    letter-spacing:2px;
    transition:.3s;

    opacity:0;
    transform:translateY(60px);

    animation:fadeUp 1.2s ease forwards;
    animation-delay:.8s;
}

.hero-btn:hover{
    background:#b8844e;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(60px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* MOBILE */

@media(max-width:768px){

    .navbar{
        width:100%;
        padding:20px;
        position:relative;
        z-index:1000;
    }

    .menu-toggle{
        display:block;
        z-index:1001;
    }

    .book-btn{
        display:none;
             padding:12px 22px;
    font-size:0.5rem;
    }

    .nav-links{
        position:absolute;
        top:100%;
        left:0;

        width:100%;

        background:#000;

        flex-direction:column;
        justify-content:center;
        align-items:center;

        gap:25px;

        padding:30px 0;

        display:none;

        z-index:999;
    }

    .nav-links.active{
        display:flex;
    }

    .logo{
        font-size:1rem;
        letter-spacing:2px;
    }

    .hero-content{
        min-height:70vh;
        padding:40px 20px;
    }

    .hero-content h1{
        font-size:2rem;
        line-height:1.2;
    }

    .hero-content p{
        font-size:1rem;
        max-width:90%;
    }

    .hero-btn{
         padding:12px 22px;
    font-size:0.5rem;
    }
}



/* section 1 */
.about{
    padding:120px 8%;
    background:#f8f8f8;
}

.about-container{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;

    align-items:center;
}

.about-text span{
    color:#c9a36a;
    font-size:.85rem;
    letter-spacing:3px;
    font-weight:600;
}

.about-text h2{
    font-size:4rem;
    font-family:Georgia, serif;
    margin:20px 0;
    color:#111;
}

.about-text p{
    line-height:2;
    color:#777;
    max-width:500px;
    margin-bottom:40px;
}

.about-btn{
    display:inline-block;
    text-decoration:none;

    background:#c9a36a;
    color:white;

    padding:18px 40px;
    letter-spacing:2px;
}

/* IMAGE COLLAGE */

.about-images{
    position:relative;
    height:600px;
}

.about-images img{
    object-fit:cover;
    position:absolute;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.img1{
    width:280px;
    height:310px;

    top:0;
    left:80px;
}

.img2{
    width:420px;
    height:460px;

    top:60px;
    right:0;
}

.img3{
    width:370px;
    height:260px;

    bottom:0;
    left:20px;
} 


@media(max-width:768px){

    .about{
        padding:80px 20px;
    }

    .about-container{
        grid-template-columns:1fr;
        gap:60px;
        text-align:center;
    }

    .about-text p{
        max-width:100%;
    }

    .about-text h2{
        font-size:2.5rem;
    }

    .about-images{
        position:relative;
        width:100%;
        max-width:400px;
        height:380px;
        margin:auto;
    }

    .img1{
        width:170px;
        height:190px;
        top:0;
        left:50px;
    }

    .img2{
        width:240px;
        height:280px;
        top:40px;
        right:0;
    }

    .img3{
        width:220px;
        height:160px;
        bottom:0;
        left:0;
    }
}


/* footer */
footer {
  background: #420606;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.footer-column {
  flex: 1 1 250px;
  max-width: 300px;
}

.footer-column h3 {
  margin-bottom: 15px;
}

.footer-column p {
  margin: 5px 0;
}

.social-icons a {
  color: #fff;
  margin: 0 8px;
  font-size: 18px;
  text-decoration: none;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.subscribe-form input {
  padding: 8px;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.subscribe-form button {
  padding: 8px 12px;
  border: none;
  background: #ff4b2b;
  color: #fff;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 30px;
  font-size: 14px;
}




.featured-rooms {
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn 1s ease-in-out;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.room-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.room-card img {
  width: 100%;
  border-radius: 8px;
}

.book-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background: #f12005;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.book-btn:hover {
  background: #128C7E;
  animation: pulse 0.6s infinite alternate;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

/* Responsive stacking */
@media (max-width: 992px) {
  .rooms-grid {
    grid-template-columns: 1fr; /* stack vertically on smaller screens */
  }
  .room-card {
    text-align: center;
  }
  .book-btn {
    margin: 15px auto 0;
  }
}




/* amenities */
.amenities {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.amenities h2 {
  margin-bottom: 40px;
  font-size: 2rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.amenity {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.amenity:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.amenity i {
  font-size: 2rem;
  color: #f12005; /* accent color */
  margin-bottom: 10px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.amenity {
  animation: fadeInUp 0.8s ease forwards;
}



/* testimonial */
.ratings-carousel {
  overflow: hidden;
  white-space: nowrap;
}

.carousel-track {
  display: inline-flex;
  animation: scrollLoop 20s linear infinite;
}

.rating-card {
  flex: 0 0 250px;
  margin: 0 10px;
  background: #333;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
}

@keyframes scrollLoop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); } /* scroll half, then loop */
}



/* gallery */
.gallery-section{
    padding:120px 20px;
    background:#f8f8f8;
}

.gallery-header{
    text-align:center;
    margin-bottom:80px;
}

.gallery-header span{
    color:#c9a36a;
    letter-spacing:3px;
    font-size:.8rem;
    font-weight:600;
}

.gallery-header h2{
    font-size:4rem;
    margin:15px 0;
    color:#111;
    font-family:Georgia, serif;
}

.gallery-header p{
    color:#777;
    max-width:600px;
    margin:auto;
}

.card-stack{
    width:450px;
    height:600px;
    margin:auto;
    position:relative;
}

.gallery-card{
    position:absolute;
    width:100%;
    height:100%;

    border-radius:20px;
    overflow:hidden;

    cursor:grab;

    user-select:none;

    box-shadow:
    0 20px 40px rgba(0,0,0,.15);

    background:white;

    transition:
    transform .3s ease,
    opacity .3s ease;
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.caption{
    position:absolute;
    bottom:0;
    left:0;

    width:100%;

    padding:20px;

    color:white;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.8)
    );

    font-size:1.1rem;
    letter-spacing:1px;
}

/* Mobile */

@media(max-width:768px){

    .gallery-header h2{
        font-size:2.5rem;
    }

    .card-stack{
        width:90%;
        height:500px;
    }

    .caption{
        font-size:.95rem;
    }
}


/* choose  */
.why-us{
    padding:120px 8%;
    background:
    linear-gradient(
    rgba(0,0,0,.7),
    rgba(0,0,0,.7)),
    url('./images/hero.png');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    margin-bottom: 1rem;
}

.section-title{
    text-align:center;
    margin-bottom:80px;
}

.section-title span{
    color:#d4a373;
    letter-spacing:4px;
    font-size:.85rem;
}

.section-title h2{
    color:#fff;
    font-size:3.5rem;
    margin:15px 0;
    font-family:Georgia, serif;
}

.section-title p{
    color:#ddd;
    max-width:600px;
    margin:auto;
}

.glass-grid{
    max-width:1100px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.glass-card{
    padding:40px;

    border-radius:25px;

    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border:
    1px solid rgba(255,255,255,.15);

    box-shadow:
    0 10px 40px rgba(0,0,0,.2);

    transition:.5s;

    opacity:0;
}

.glass-card:hover{
    transform:translateY(-10px);

    background:
    rgba(255,255,255,.12);
}

.glass-card i{
    font-size:2rem;
    color:#d4a373;
    margin-bottom:20px;
}

.glass-card h3{
    color:white;
    margin-bottom:15px;
    font-size:1.4rem;
}

.glass-card p{
    color:#ddd;
    line-height:1.8;
}

.left{
    transform:translateX(-100px);
}

.right{
    transform:translateX(100px);
}

.glass-card.show{
    opacity:1;
    transform:translateX(0);
}

@media(max-width:768px){

    .glass-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:2rem;
    }

    .glass-card{
        padding:30px;
    }

}


.whatsapp-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 25px;
    background: red;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s ease;
}

.whatsapp-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, .3);
}