  
  @import url('https://fonts.googleapis.com/css2?family=Inter&family=Montserrat&family=Open+Sans&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
  
  * {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 auto;

  }

  body{

font-family: Roboto;

  }

.header {

    display: flex;
        background: #f4f4f4;

}

.menu-header {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    text-decoration: none;
    padding: 10px;
    display: block;
}

.nav-links li a:hover {
    color: #E64A19;
    transition: 0.3s;
        display: block;


}

.nav-links li a {
    text-decoration: none;
    color: #0000EE;
}

.menu-icon {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    width: 24px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    /* transform: rotate(0deg);
    transition: .25s ease-in-out; */
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

/* Hamburger animation */
/* .hamburger.open span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger.open span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
} */

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    background: white;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 10px 0;
    box-sizing: border-box;
    z-index: 1000;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin: 0;
}

.mobile-menu li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 12px 20px;
}

.mobile-menu li a:hover {
    background-color: #f5f5f5;
}

.mobile-menu .book-now {
    color: #ff6b6b;
    font-weight: bold;
}

.mobile-menu.active {
    display: block;
}

/* Media queries for responsive navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-icon {
        display: flex;
        align-items: center;
    }
    
    .mobile-menu {
        display: none;
    }
    
    .mobile-menu.active {
        display: block;
    }
}




.logo-img {

padding: 10px;
width: 50px;

}

.bg-img{
    width: 100%;
}

    .hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.2);
            z-index: 1;
        }

        .bg-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            filter: brightness(0.9);
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            width: 90%;
            max-width: 800px;
            z-index: 2;
        }

        .hero-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-description {
            font-size: 1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
                color: white;
        }

        .search-form {
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 10px;
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .search-input {
            flex: 1 1 200px;
            margin: 5px;
            position: relative;
        }

        .search-input input, .search-input select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 0.9rem;
        }

        .search-input label {
            display: block;
            margin-bottom: 5px;
            font-size: 0.8rem;
            color: #333;
            text-align: left;
        }

        .search-button {
            background-color: #FF9F00;
            color: white;
            border: none;
            border-radius: 5px;
            padding: 12px 20px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            flex: 1 1 100px;
            margin: 5px;
            transition: background-color 0.3s ease;
        }

        .search-button:hover {
            background-color: #e89000;
        }

        .radio-container {
            display: flex;
            align-items: center;
        }

        .radio-input {
            margin-right: 5px;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-description {
                font-size: 0.9rem;
            }
            
            .search-form {
                flex-direction: column;
            }
            
            .search-input {
                margin-bottom: 10px;
            }
            
            .search-button {
                width: 100%;
            }
        }



        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            margin-top: 100px;
        }

        .hotels-heading {
            text-align: center;
            margin-bottom: 15px;
        }

        .hotels-heading h1 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 15px;
        }

        .hotels-description {
            text-align: center;
            color: #777;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        .hotels-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .hotel-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .hotel-card:hover {
            transform: translateY(-5px);
        }

        .hotel-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .hotel-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .hotel-card:hover .hotel-image img {
            transform: scale(1.05);
        }

        .hotel-info {
            padding: 20px;
        }

        .hotel-name {
            font-size: 1.2rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }

        .hotel-price {
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .hotel-actions {
            display: flex;
            gap: 10px;
        }

        .book-btn {
            display: none;
            flex: 1;
            background-color: #FF5722;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .more-info-btn {
            text-decoration: none;
            color: black;
        }

        .more-info-btn:hover {
            color: #E64A19;
            transition: 0.3s;
        }

        .info-btn {
            background-color: white;
            color: #333;
            border: 1px solid #ddd;
            padding: 10px 15px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .info-btn:hover {
            background-color: #f5f5f5;
        }

        @media (max-width: 992px) {
            .hotels-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hotels-grid {
                grid-template-columns: 1fr;
            }
            
            .hotels-heading h1 {
                font-size: 2rem;
            }
        }



.why-us {
    margin-top: 100px;
}

       .services-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .services-header h1 {
            font-size: 28px;
            font-weight: bold;
        }

        .services-header .highlight {
            color: #FF9F43;
        }

        .services-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            flex: 1 1 300px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background-color: #FFE0B2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }

        .service-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .service-description {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        /* For tablet view */
        @media (max-width: 768px) {
            .service-card {
                flex: 1 1 calc(50% - 20px);
            }
        }

        /* For mobile view */
        @media (max-width: 576px) {
            .service-card {
                flex: 1 1 100%;
            }
            
            .services-header h1 {
                font-size: 24px;
            }
        }

.our-rooms{
    margin-top: 100px;
}

        .rooms-header {
            text-align: left;
            margin-bottom: 50px;
            padding-left: 20px;
            display: flex;
        }

        .rooms-header h1 {
            font-size: 28px;
            font-weight: bold;
        }

        .rooms-header .highlight {
            color: #FF9F00;
        }

        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 15px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .images-grid {
            grid-column: span 12;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        .room-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            transition: transform 0.3s ease;
        }

        .promo-txt  {
margin-bottom: 50px;
margin-left: 30px;
margin-right: 30px;
}

        .room-item:hover {
            transform: translateY(-5px);
        }

        /* Grid positioning */
        .promo {
            grid-column: span 12;
            grid-row: span 1;
            background-color: #FF9F00;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .promo-content {
            color: white;
            max-width: 800px;
            margin: 0 auto;
        }

        .promo-content p {
            margin: 15px 0 25px;
            font-size: 14px;
            line-height: 1.5;
        }

        .promo-btn {
            background-color: white;
            color: #333;
            padding: 10px 20px;
            border-radius: 25px;
            text-align: center;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
            width: fit-content;
        }

        .promo-btn:hover {
            background-color: #f5f5f5;
        }

        .room-image {
            grid-column: span 3;
            grid-row: span 2;
        }

        .room-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Responsive layout */
        @media (max-width: 992px) {
            .images-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .images-grid {
                grid-template-columns: 1fr;
            }
            
            .promo, .room-item {
                grid-column: span 1;
            }
            
            .room-item img {
                height: 250px;
            }
            
            .promo {
                padding: 20px;
                min-height: 180px;
            }

                    .rooms-grid {
            display: flex;
            grid-template-columns: repeat(12, 1fr);
            gap: 15px;
            max-width: 1200px;
            margin: 0 auto;
            flex-direction: column;
        }
        }


                .about-section {
            max-width: 1200px;
            margin: 150px auto;
            display: flex;
            background-color: white;
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
        }

        .about-content {
            flex: 1;
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-txt {
            padding: 50px 200px;
        }

        /* Overlay styles removed */

        h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #333;
        }

        p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .contact-btn {
            display: inline-block;
            background-color: #FF5722;
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .contact-btn:hover {
            background-color: #E64A19;
        }

        @media (max-width: 768px) {
            .about-section {
                flex-direction: column;
            }
            
            .about-content {
                padding: 30px;
            }
            
            .about-image {
                height: 300px;
            }

            .about-txt {
            padding: 50px 40px;
        }
        }


                footer {
            background-color: #1a365d;
            color: white;
            padding: 40px 0;
            font-size: 14px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footer-section {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
        }
        
        .footer-section h4 {
            font-size: 16px;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-section ul li {
            margin-bottom: 8px;
        }
        
        .footer-section a {
            color: #e2e8f0;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .footer-section a:hover {
            color: #90cdf4;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 12px;
        }
        
        .social-icons a {
            color: white;
            font-size: 18px;
        }
        
        .bottom-bar {
            border-top: 1px solid #2d4a6d;
            padding-top: 20px;
            margin-top: 20px;
            text-align: center;
            width: 100%;
        }
        
        .bottom-bar p {
            margin: 5px 350px;
            color: #cbd5e0;
        }
        
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
            }
            
            .footer-section {
                margin-bottom: 30px;
            }

            .disclaimer{
            margin-left: 50px !important;
            margin-right: 50px !important;
            }

            .bottom-bar p {
            margin: 5px 150px;
            color: #cbd5e0;
        }

        .disclaim-img{
            display: grid !important;
            justify-items: center;
        }


        }


        .disclaimer {
            margin-left: 350px;
            margin-right: 350px;
            font-size: 12px;
        }

        .resp-play {
            width: 90px;
            margin-left: 15px;
        }

        .gamb-aware {
            width: 100px;
            margin-left: 15px;

        }

        .disclaim-img{
                    display: flex;
                    align-items: center;
                    justify-content: center;
        }

        .disclaim-img img{
                margin: 10px 50px;
        }


