/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
  }
  

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #c39d63;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #b38d53;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Header Styles */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0px 0 30px;
    transition: all 0.3s ease;
}

header.scrolled {
    background: white;
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.logo img{
    width: 150px;
    height: 130px;
    object-fit: contain;
}

header.scrolled .logo {
    color: #000;
}

.main-menu ul {
    display: flex;
}

.main-menu ul li {
    margin-left: 50px;
}

.main-menu ul li a {
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

header.scrolled .main-menu ul li a {
    color: #333;
}

.main-menu ul li a:hover {
    color: #c39d63;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

#header:has(.main-menu.active) .mobile-menu-btn{
    color: #000;
}

header.scrolled .mobile-menu-btn {
    color: #333;
}

/* Hero Section */
.hero {
    height: auto;
    /* background: url('../images/banner.webp') no-repeat center center/cover; */
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    padding: 180px 160px 80px;
    position: relative;
}

.hero video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h6 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #c39d63;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-content p {
    margin-bottom: 40px;
    font-size: 17px;
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 100px;
}

.about-img {
    flex: 1;
    position: relative;
}

.about-img .img-1 {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
}

.about-img .img-2 {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.about-text {
    flex: 1;
}

.about-text h6 {
    font-size: 18px;
    color: #c39d63;
    margin-bottom: 15px;
}

.about-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 30px;
    color: #666;
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 50px;
    color: #c39d63;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
}

/* Menu Section */
.masonry {
    column-count: 3;
    column-gap: 15px;
    margin: 0 auto;
}

.masonry-item {
    display: inline-block;
    width: 100%;
    height: 500px;
    margin-bottom: 15px;
    break-inside: avoid;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background: white;
}

.masonry-item img{
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.masonry-content {
    padding: 15px;
}

.masonry-content h3 {
    margin-top: 0;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .masonry {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .masonry {
        column-count: 1;
    }
}

/* Testimonials Section */
.testimonials {
    background: url('https://preview.colorlib.com/theme/roberto/img/bg-img/tes.jpg') no-repeat center center/cover;
    position: relative;
    color: white;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.testimonials .section-title h2,
.testimonials .section-title p {
    color: white;
    position: relative;
    z-index: 1;
}

.testimonial-slider {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    text-align: center;
    padding: 0 20px;
}

.testimonial-slide i {
    font-size: 50px;
    color: #c39d63;
    margin-bottom: 30px;
}

.testimonial-slide p {
    font-size: 20px;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
}

.author-info h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info span {
    color: #c39d63;
}

/* Reservation Section */
.reservation {
    background: white;
}

.reservation-form {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

/* Footer */
footer {
    background: #222;
    color: #aaa;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-widget h6 {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-widget p {
    margin-bottom: 20px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact p i {
    margin-right: 10px;
    color: #c39d63;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c39d63;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #c39d63;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
}

.room-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/ms6.jpeg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 2rem;
}

.room-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.room-hero p {
    font-size: 1.2rem;
    max-width: 800px;
}

/* Room Types Section */
.room-types {
    padding: 5rem 5%;
}

.room-card {
    display: flex;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.room-card img {
    width: 50%;
    object-fit: cover;
}

.room-info {
    width: 50%;
    padding: 2rem;
}

.room-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.room-info p {
    margin-bottom: 1.5rem;
    color: #7f8c8d;
}

.room-features {
    margin-bottom: 2rem;
    list-style: none;
}

.room-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.room-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
}

.book-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.book-btn:hover {
    background-color: #2980b9;
}

/* Amenities Section */
.room-amenities {
    padding: 5rem 5%;
    background-color: #f9f9f9;
    text-align: center;
}

.room-amenities h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.amenity-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #3498db;
}


/* Responsive Styles */

@media(max-width: 1200px){
    .hero{
        padding: 180px 60px 80px;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 60px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-img .img-2 {
        right: 0;
    }
}

@media (max-width: 768px) {
    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        padding: 80px 30px 30px;
        transition: all 0.5s ease;
        z-index: 999;
    }
    
    .main-menu.active {
        right: 0;
    }
    
    .main-menu ul {
        flex-direction: column;
    }
    
    .main-menu ul li {
        margin: 15px 0;
    }
    
    .main-menu ul li a {
        color: #333;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1000;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .room-card {
        flex-direction: column;
    }
    
    .room-card img, .room-info {
        width: 100%;
    }
    
    .room-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .reservation-form {
        padding: 30px 20px;
    }
    .hero{
        padding: 180px 40px 80px;
    }
}