/* Custom Styles for Grand Shalimar Hotel */

/* General Body Styling */
body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}


/* Navbar Enhancements */
.navbar {
    transition: background-color 0.3s ease;
}


/* Enhanced Navbar Styling */
.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 0.5rem;
    color: white !important;
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    /* background-color: rgba(239, 104, 0, 0.85); */
    background-color: #ad8b3a;
    color: #fff !important;
}

.navbar-nav .nav-link.active {
    background-color: #ef6800;
    color: #fff !important;
}

/* Dropdown Menu Styling */
.navbar .dropdown-menu {
    background-color: #212529;
    border-radius: 0.5rem;
    border: none;
}

.navbar .dropdown-item {
    color: white;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
    text-decoration: none !important;    
}

.navbar .dropdown-item:hover {
    background-color: #ef6800;
    color: white;
}

/* Sticky Navbar with Transparent Effect */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: rgba(33, 37, 41, 0.9); /* Slightly transparent dark */
}

/* Light Background Nav Fix */
.navbar.bg-light .navbar-nav .nav-link {
    color: #000 !important;
}
.navbar.bg-light .navbar-nav .nav-link:hover {
    background-color: #ef6800;
    color: #fff !important;
}
.navbar.bg-light .navbar-brand {
    color: #000 !important;
}

/* end Enhanced Navbar Styling */




.gs-bg-gold {
	background-color:#ad8b3a;
	color: #FFFFFF !important;
}


.gs-text-gold {
	color:#ad8b3a;
}















/* Hero Carousel Customizations */
.carousel-item {
    height: 70vh;
    min-height: 400px;
    background: no-repeat center center scroll;
    background-size: cover;
    position: relative;
}


    .carousel-item {
      height: 70vh;
      min-height: 400px;
    }
    
    .carousel-caption {
      /*background: rgba(0,0,0,0.4);*/
      background: rgba(173, 139, 58, 0.5);      
      padding: 20px;
      border-radius: 8px;
    }
    .w-33 { max-width: 33%; }



.carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: brightness(100%);
    /*filter: brightness(60%);*/    
}






.carousel-caption {
    background-color: rgba(173, 139, 58, 0.5);
    padding: 20px;
    border-radius: 8px;
    bottom: 20%;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.carousel-caption p {
    font-size: 1.25rem;
    color: #eee;
    margin-bottom: 25px;
}


/* Buttons */
.btn-primary {
    background-color: #ef6800;
    border-color: #ef6800;
}
.btn-primary:hover {
    background-color: #c65300;
    border-color: #c65300;
}
.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}
.btn-success:hover {
    background-color: #218838;
    border-color: #218838;
}




:root {
  --bs-orange: #ef6800;
}
.text-orange {
  color: var(--bs-orange) !important;
}
.bg-orange {
  background-color: var(--bs-orange) !important;
}




/* Sections Padding */
section {
    padding: 60px 0;
}

/* Card Enhancements (for Rooms/Gallery) */
.card {
    border: none;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Footer Styling */
footer {
    background-color: #212529 !important;
}
footer a {
    color: #adb5bd;
}
footer a:hover {
    color: #fff;
}

/* WhatsApp Quick Contact Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease;
}
.whatsapp-button:hover {
    background-color: #128c7e;
    color: white;
}

/* Google Map Embed (Responsive) */
.google-map-embed {
    width: 100%;
    height: 450px;
    border: 0;
    overflow: hidden;
}
.google-map-embed iframe {
    width: 100%;
    height: 100%;
}

/* General Link Styling */
a {
    color: #ef6800;
    text-decoration: none;
}
a:hover {
    color: #c65300;
    text-decoration: underline;
}

/* Utility classes for consistency */
.text-primary {
    color: #ef6800 !important;
}
.text-success {
    color: #28a745 !important;
}
.text-info {
    color: #17a2b8 !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }
    .carousel-caption p {
        font-size: 1rem;
    }
    .carousel-caption {
        bottom: 10%;
        padding: 10px;
    }
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        bottom: 15px;
        right: 15px;
    }
}