/* ===============================================
   MANORAM HOSPITALITY MUMBAI - CUSTOM STYLES
   =============================================== */

/* ===============================================
   ROOT VARIABLES & THEME COLORS
   =============================================== */
:root {
    /* Primary Colors from Logo */
    --primary-purple: #2a186c;
    --primary-red: #d02a1e;
    
    /* Light Theme Colors */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --text-dark: #333333;
    --text-muted: #6c757d;
    --gray-100: #f1f3f4;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* ===============================================
   BOOTSTRAP OVERRIDES
   =============================================== */
.btn-primary {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
    border-radius: 0px;
    padding: 4px 10px;
    font-weight: 500;
    /* text-transform: uppercase; */
    /* letter-spacing: 1px; */
    transition: var(--transition);
    font-size:0.9rem;
}

.btn-primary:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.bg-primary {
    background-color: var(--primary-purple) !important;
}

/* ===============================================
   GLOBAL STYLES
   =============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-padding {
    padding: var(--section-padding);
}

.section-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-red));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===============================================
   NAVIGATION STYLES
   =============================================== */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.logo {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 10px;
    padding: 8px 0 !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-purple) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-red);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.book-now-btn {
    margin-left: 20px;
    font-size: 14px;
}

/* ===============================================
   HERO SECTION STYLES
   =============================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-carousel .owl-item {
    height: 100vh;
    min-height: 600px;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 2, 35, 0.6);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 2px solid white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 20px;
    transition: var(--transition);
}

.owl-nav button:hover {
    background-color: var(--primary-red) !important;
    border-color: var(--primary-red);
}

.owl-nav .owl-prev {
    left: 30px;
}

.owl-nav .owl-next {
    right: 30px;
}
/* Remove default Owl Carousel dot styling */
.owl-dots .owl-dot span {
  display: none !important;
}

/* Custom dot container */
.owl-dots {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  gap: 10px;
  justify-content: center;
}

/* Custom dots */
.owl-dots .owl-dot {
  width: 12px !important;
  height: 12px !important;
  background-color: rgba(141, 140, 140, 0.5) !important;
  border-radius: 50%;
  transition: var(--transition);
}

/* Active dot */
.owl-dots .owl-dot.active {
  background-color: var(--primary-red) !important;
}
.hotel-card img{border-radius:10px;}
.hotel-card-body h5{margin-top:15px;}


/* ===============================================
   ABOUT SECTION STYLES
   =============================================== */
.about-content {
    padding-right: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-item i {
    color: var(--primary-purple);
    font-size: 2rem;
}

.feature-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* ===============================================
   ROOMS & FACILITIES SWIPER STYLES
   =============================================== */
.rooms-swiper,
.facilities-swiper {
    padding: 20px 0 60px 0;
}

.room-card,
.facility-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.room-card:hover,
.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.room-image,
.facility-image {
    height: 250px;
    overflow: hidden;
}

.room-image img,
.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.room-card:hover .room-image img,
.facility-card:hover .facility-image img {
    transform: scale(1.1);
}

.room-content,
.facility-content {
    padding: 25px;
}

.room-content h3,
.facility-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-purple);
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.room-amenities span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.room-amenities i {
    font-size: 1.2rem;
    color: var(--primary-red);
}

.room-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin: 20px 0;
}

.room-price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.swiper-pagination-bullet {
    background-color: var(--primary-purple);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-red);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-purple);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--primary-red);
}

/* ===============================================
   PHOTO GALLERY STYLES
   =============================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    grid-auto-rows: 250px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:nth-child(3n+1) {
    grid-row: span 2;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--box-shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 24, 108, 0.7);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ===============================================
   ATTRACTIONS SECTION STYLES
   =============================================== */
.attraction-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.attraction-image {
    height: 200px;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.attraction-card:hover .attraction-image img {
    transform: scale(1.1);
}

.attraction-content {
    padding: 20px;
}

.attraction-content h4 {
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.attraction-distance {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    margin-top: 15px;
}

.attraction-distance i {
    color: var(--primary-red);
}

/* ===============================================
   BOOKING SECTION STYLES
   =============================================== */
.booking-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-form .form-label {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
}

.booking-form .form-control,
.booking-form .form-select {
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 15px;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    color: white;
}

.booking-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* ===============================================
   CONTACT SECTION STYLES
   =============================================== */
.contact-form-container {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-info {
    padding: 40px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: fit-content;
}

.contact-info h4 {
    color: var(--primary-purple);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-item h5 {
    color: var(--primary-purple);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-muted);
    margin: 0;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-container iframe {
    border-radius: var(--border-radius);
}

/* ===============================================
   FOOTER STYLES
   =============================================== */
.footer {
    background-color: #180d3f !important;
    padding: 60px 0 20px 0;
}

.footer-logo {
    height: 100px;
    width: auto;
    
}

.footer h5 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer p {
    color: var(--gray-300);
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer p i {
    color: var(--primary-red);
    margin-right: 8px;
    font-size: 1.1rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px 0;
}

.copyright {
    color: var(--gray-300);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-purple);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-red);
    color: white;
    transform: translateY(-2px);
}

/* ===============================================
   RESPONSIVE STYLES
   =============================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-auto-rows: 200px;
    }
    
    .booking-form-container {
        padding: 30px;
    }
    
    .contact-info {
        margin-top: 30px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-carousel .owl-item {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .owl-nav button {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-item:nth-child(3n+1) {
        grid-row: span 1;
    }
    
    .booking-form-container {
        padding: 25px;
    }
    
    .contact-form-container,
    .contact-info {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .navbar-brand .logo {
        height: 40px;
    }
    
    .book-now-btn {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================================
   ANIMATION CLASSES
   =============================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

/*.slide-in-right {*/
/*    opacity: 0;*/
/*    transform: translateX(50px);*/
/*    transition: all 0.8s ease;*/
/*}*/

/*.slide-in-right.animate {*/
/*    opacity: 1;*/
/*    transform: translateX(0);*/
/*}*/

/* ===============================================
   FORM VALIDATION STYLES
   =============================================== */
.was-validated .form-control:valid {
    border-color: #28a745;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.8-.77-.8-.77-.8.77zm1.54-4.96L8.5 6.5h-1L6 5.27l-.5.77-1.5-2.77zM2.3.27l.8.77-.8.77-.8-.77z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* ===============================================
   PRELOADER STYLES
   =============================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.preloader-logo {
    height: 80px;
    width: auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===============================================
   LOADING STATES
   =============================================== */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===============================================
   UTILITY CLASSES
   =============================================== */
.text-primary-purple {
    color: var(--primary-purple) !important;
}

.text-primary-red {
    color: var(--primary-red) !important;
}

.bg-primary-purple {
    background-color: var(--primary-purple) !important;
}

.bg-primary-red {
    background-color: var(--primary-red) !important;
}

.border-primary-purple {
    border-color: var(--primary-purple) !important;
}

.border-primary-red {
    border-color: var(--primary-red) !important;
}


        table#stylized {
            margin-top: 0px;
            margin-bottom: 10px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
            padding: 12px 0;
            background-repeat: repeat;
            background-color: #fff;
        }

        #stylized .btn {
            background: #DCAC46;
            color: #fff;
            font-size: 16px;
        }

        td {
            font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
        }

        .calender {
            background: #272738 url(https://eglobe-solutions.com/extras/Content/WebsiteTemplate/L6deluxe/libs/images/calendar-icon.png) 90% no-repeat;
            cursor: pointer;
            background-color: #fff;
            border: solid 1px #CCCCCC;
            color: #000;
            text-align: left;
            padding-left: 5px;
        }

        .ui-datepicker-trigger {
            margin-left: 2px;
            margin-top: 10px;
            margin-bottom: -6px;
            padding-right: 3px;
        }

        div.ui-datepicker {
            font-size: 15px;
        }

        input,
        select {
            width: 90%;
            height: 45px;
            padding-left: 5px;
            padding-left: 5px;
            border-radius: 4px;
            border: 1px solid #ccc
        }

        @media screen and (-webkit-min-device-pixel-ratio:0) {
            div.ui-datepicker {
                font-size: 15px;
            }
        }

        @-moz-document url-prefix() {
            div.ui-datepicker {
                font-size: 15px;
                margin-top: -80px;
            }
        }

        #h2 {
            font: normal 14px "Droid Serif", serif;
        }

        @media only screen and (max-width: 768px) {

            #stylized .td2,
            .td3,
            .td4,
            .td5,
            .td6,
            .td7 {
                float: left;
                height: 35px;
                width: 100%;
                text-align: left;
                padding: 4%;
            }

            #stylized .td1 {
                float: left;
                height: 5px;
                width: 100%;
                text-align: left;
                padding: 4%;
            }

            #stylized .td6 {

                margin-bottom: 15px 0;
                padding: 4%
            }
        }

        @media only screen and (max-width: 480px) {

            #stylized .td2,
            .td3,
            .td4,
            .td5,
            .td6,
            .td7 {
                float: left;
                height: 70px;
                width: 100%;

                padding: 4%;
            }

            #stylized .td1 {
                float: left;
                height: 5px;
                width: 100%;
                text-align: left;
                padding: 4%;
            }

            #stylized .td6 {

                margin-bottom: 15px 0;
                padding: 4%
            }

        }
 




@media (max-width: 768px) {

input, select {
    width: 100%;

}
}