:root {
    --primary-color: #ff65c3;
    --secondary-color: #2492e9;
    --primary-pink: #ff65c3;
    --primary-blue: #2492e9;
    --light-bg: #f8f8f8;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
}

.gradient-bg {
    background: linear-gradient(270deg, var(--primary-blue) 0%, var(--primary-pink) 100%);
}

.gradient-bg-reverse {
    background: linear-gradient(90deg, var(--primary-pink) 0%, var(--primary-blue) 100%);
}

.gradient-footer {
    background: #F5F5F5;
    color: #000;
    /* background: linear-gradient(180deg, var(--primary-pink) 0%, var(--primary-blue) 100%); */
}

header.header {
    position: fixed;
    background-color: var(--primary-pink);
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}

.navbar {
    background-color: var(--primary-pink);
    height: 98px;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
}

a{
    text-decoration: none;
}

a:hover{
    color: #070707;
    text-decoration: none;
}

.header.fixed .navbar{
    height: 60px;
}

.hero-section {
    background-color: var(--light-bg);
    height: 842px;
    position: relative;
}

.hero-overlay {
    background-color: rgba(98, 98, 98, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.enquiry-form {
    background-color: rgba(255, 101, 195, 0.9);
    border-radius: 20px;
    padding: 30px;
}

select option{
    color: #000000;
}

.form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    color: #fff !important;
}

.form-control.sort-select{
    color: #000000 !important;
}

.form-control:focus{
    outline: 0;
    box-shadow: none;
    border-color: #2492e9;
    background-color: transparent;
}

.form-control::placeholder {
    color: #fff;
}

.section-title {
    font-size: 62px;
    font-weight: 700;
    margin-bottom: 60px;
}

.venue-card img.img-fluid {
    height: 230px;
    object-fit: cover;
}

.venue-card, .decor-card, .food-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.venue-card:hover, .decor-card:hover, .food-card:hover {
    transform: translateY(-5px);
}

.venue-info {
    background-color: #fafafa;
    padding: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.location-card {
    background-color: #f6f6f6;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    height: 201px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.tag {
    background-color: var(--primary-pink);
    border-radius: 20px;
    padding: 4px 12px;
    color: white;
    font-size: 12px;
    display: inline-block;
    margin-right: 5px;
}

.gradient-bg {
    background: linear-gradient(90deg, rgba(36, 146, 233, 1) 0%, rgba(255, 101, 195, 1) 100%);
}

.gradient-bg-vertical {
    background: linear-gradient(180deg, rgba(255, 101, 195, 1) 0%, rgba(36, 146, 233, 1) 100%);
}

.room-card {
    border-radius: 10px;
    border: 1px solid #dbdbdb;
    /* height: 283px; */
}

.feature-icon {
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

.book-btn {
    border-radius: 100px;
    padding: 8px 25px;
    font-size: 16px;
}

footer {
    color: white;
    padding-top: 80px;
}

footer a {
    color: #000000;
    text-decoration: none;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.filter-title {
    font-size: 62px;
    font-weight: 700;
    margin: 100px 0 40px 0;
}

.venue-card {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.venue-img {
    height: 190px;
    object-fit: cover;
    width: 100%;
}

.venue-details {
    background-color: var(--light-bg);
    padding: 15px;
    height: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.form-check-input:checked {
    background-color: #ff65c3;
    border-color: #ff65c3;
}

.venue-name {
    font-size: 20px;
    font-weight: 600;
    color: #070707;
    margin-bottom: 5px;
}

.venue-location {
    font-size: 10px;
    color: #000000;
    margin-bottom: 8px;
}

.venue-description {
    font-size: 12px;
    line-height: 20px;
    color: #000000;
    margin-bottom: 10px;
    height: 40px;
    overflow: hidden;
}

.venue-specs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    font-size: 10px;
}

.spec-item {
    text-align: center;
}

.filter-sidebar {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.filter-section {
    background: #fdfdfd;
    border: 1px solid #f3f3f3;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.filter-title-small {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f3f3f3;
}

.filter-option {
    color: #797979;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.footer-gradient {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0 40px;
    color: #ffffff;
    margin-top: 100px;
}

.footer-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-link {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-contact {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-divider {
    border-top: 1px solid #000000;
    margin: 40px 0 20px;
}

.copyright {
    font-size: 20px;
}

.sort-dropdown {
    background: #f4f4f4;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 15px 20px;
    width: 190px;
}

.pagination-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    font-size: 12px;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
}

h3.card-title {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 10px;
}

.pagination-circle.active {
    background-color: var(--primary-color);
    color: white;
}

.splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    width: 580px;
    overflow: hidden;
    transition: .2s;
    border-width: 2px !important;
    margin: 10px 4px;
}

.splide--nav > .splide__track > .splide__list > .splide__slide.is-active {
    box-shadow: 2px 3px 8px #000000a3;
}

.splide__slide img {
    width: auto;
    height: auto;
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 100%;
}
/* Slider CSS End  */

.info-item span{
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: #F1F1F1F1;
    border-radius: 20px;
    margin-right: 30px;
    text-align: center;
    line-height: 80px;
    font-size: 32px;
}

.gallery {
    position: relative;
}
    
.gallery-slider {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-thumbs {
    height: 70px;
    box-sizing: border-box;
    padding: 10px 0;
    overflow-x: hidden;
}

.gallery-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.6;
    border-radius: 5px;
    overflow: hidden;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #0d6efd;
}

.gallery-slider .swiper-slide img,
.gallery-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sort-select {
    border-radius: 5px;
    border: 1px solid #ced4da;
}

.swiper-button-prev, .swiper-button-next {
    color: white;
    background: rgba(0,0,0,0.5);
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.swiper-button-prev:after, .swiper-button-next:after {
    font-size: 16px;
    font-weight: bold;
}

.no-results {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.venues-carousel.owl-theme .owl-nav [class*='owl-'] {
    width: 40px;
    height: 40px;
    line-height: 41px;
    padding: 0;
    font-size: 20px;
    background: #FFFFFF;
    color: #ff65c3;
    border: 1px #ff65c3 solid;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.venues-carousel.owl-theme .owl-nav [class*='owl-next']{
    left: auto;
    right: 0;
}

.owl-carousel .owl-item .room-card img{
    display: inline-block;
    width: auto;
}

.modal-body{
    background-color: #ff65c3;
    padding: 50px;
    border-radius: 10px;
    display: block;
}

.modal-body form .form-group .iti {
    width: 100%;
}

.modal-body form .form-group label{
    color: #FFFFFF;
    margin-bottom: 10px;
}

.modal-content{
    border-radius: 10px;
    border: 0;
}

.modal-body .btn-close{
    position: absolute;
    top: 15px;
    right: 15px;
    color: #F5F5F5;
}

.whatsapp_redirect {
    position: fixed;
    bottom: 25px;
    right: 20px;
    display: inline-block;
    max-width: 60px;
}

.contact-banner {
    padding: 60px 0;
    background: white;
    margin-top: 100px;
}

.contact-banner h1 {
    font-size: 3.5rem;
    line-height: 4.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-banner p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 992px) {

.header.fixed .navbar{
    height: auto;
}

.navbar-toggler{
    border: 0;
    padding: 0;
}

.navbar-toggler:focus{
    outline: 0;
    box-shadow: none;
}

.header .navbar .nav-item .nav-link{
    padding: 20px 0;
}

.header .navbar ul.navbar-nav{
    margin-top: 15px;
}

.section-title {
    font-size: 42px;
}

.hero-section {
    height: auto;
    padding: 120px 0 60px;
}

.navbar {
    height: auto;
}

.filter-sidebar{
    position: fixed;
    display: none;
    top: 0;
    z-index: 21;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    padding: 50px 30px 30px;
    overflow-x: hidden;
    left: 0;
    border-radius: 0;
}

.filter-sidebar a.filter_mob_close{
    color: #000000;
    font-size: 24px;
    line-height: 40px;
    position: absolute;
    top: 10px;
    right: 20px;
}

}