:root {
    --font-heading: 'Playfair Display', serif;
    --font-subheading: 'Raleway', sans-serif;
    --font-base: 'Source Sans Pro', sans-serif;
    --color-primary: #A70000;
    --color-primary-light: #FF5252;
    /* --color-primary: #0A66C2;
  --color-secondary: #FFD700;
  --color-dark: #222;
  --color-light: #f5f5f5; */
    --color-text: #767676;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.25rem;
    --fs-xl: 2rem;
    --heading-xl: 3rem;
    --heading-lg: 2.25rem;
    --heading-md: 1.5rem;
    --heading-sm: 1.2rem;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body {
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--color-bg);
    color: var(--color-text);
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../font/PlayfairDisplay-VariableFont_wght.ttf') format('woff2'), url('../font/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}


/* Raleway – For Navbar and Subheadings */

@font-face {
    font-family: 'Raleway';
    src: url('../font/Raleway-VariableFont_wght.ttf') format('woff2'), url('../font/Raleway-VariableFont_wght.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}


/* Source Sans Pro – For Body Text */

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../font/SourceSans3-VariableFont_wght.ttf') format('woff2'), url('../font/SourceSans3-VariableFont_wght.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-subheading);
    font-weight: 600;
}


/* CSS */

.btn-main {
    appearance: none;
    background-color: #FFBABA;
    border-width: 0;
    box-sizing: border-box;
    color: var(--color-primary);
    cursor: pointer;
    display: inline-block;
    font-family: Clarkson, Helvetica, sans-serif;
    font-size: var(--fs-base);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1em;
    margin: 0;
    opacity: 1;
    outline: 0;
    padding: 1rem 2rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-rendering: geometricprecision;
    text-transform: uppercase;
    transition: opacity 300ms cubic-bezier(.694, 0, 0.335, 1), background-color 100ms cubic-bezier(.694, 0, 0.335, 1), color 100ms cubic-bezier(.694, 0, 0.335, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    white-space: nowrap;
    /* border-radius: 1rem; */
}

.btn-main:hover {
    color: white;
    z-index: 2;
    position: relative;
}

.btn-main:before {
    animation: opacityFallbackOut .5s step-end forwards;
    backface-visibility: hidden;
    background-color: var(--color-primary);
    clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
    /* border-radius: 1rem; */
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateZ(0);
    transition: clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1), -webkit-clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1);
    width: 100%;
    z-index: 1;
}

.btn-main:hover:before {
    animation: opacityFallbackIn 0s step-start forwards;
    clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
}

.btn-main:after {
    background-color: #FFFFFF;
}

.btn-main span {
    z-index: 1;
    position: relative;
}

.btn-icon {
    height: 40px;
    width: 40px;
    border-radius: 1rem;
    padding: 0.3rem;
    background-color: var(--color-primary-light);
}

.btn-icon:hover {
    box-shadow: var(--shadow-sm);
}

.btn-fix-whatsapp {
    position: fixed;
    bottom: 12rem;
    right: 2rem;
    z-index: 999;
    width: 120px;
    animation: floatUpDown 2.5s ease-in-out infinite;
}

.btn-fix {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: floatUpDown 2.5s ease-in-out infinite;
    cursor: pointer;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.btn-fix img {
    width: 100px;
    object-fit: contain;
}

.btn-fix span {
    background-color: var(--color-primary-light);
    font-size: var(--fs-sm);
    padding: 0.4rem 0.8rem;
    color: white;
    font-weight: bold;
}

p,
a {
    font-family: var(--font-base);
    letter-spacing: 0.4px;
}

.heading-xl {
    font-size: var(--heading-xl);
    font-family: var(--font-heading);
    font-weight: bold;
}

.heading-lg {
    font-size: var(--heading-lg);
    font-family: var(--font-heading);
    font-weight: bold;
}

.heading-md {
    font-size: var(--heading-md);
    font-family: var(--font-heading);
    font-weight: bold;
}

.text-lg {
    font-size: var(--fs-lg);
    color: var(--color-text);
}

.text-base {
    font-size: var(--fs-base);
    color: var(--color-text);
}

.text-xl {
    font-size: var(--fs-xl);
    color: var(--color-text);
}

.text-sm {
    font-size: var(--fs-sm);
    color: var(--color-text);
}

.topbar {
    background-color: #101e41;
    border-bottom: 1px solid;
    color: #fff;
    font-size: var(--fs-sm);
    padding: 0.4rem 2rem;
}

.main-navbar {
    background-color: #ffd7d7;
    padding: 0.5rem 2rem;
}

.navbar .nav-link {
    color: var(--color-primary);
    font-size: var(--fs-lg);
    font-weight: 600;
    padding: 0.8rem 2rem !important;
    font-family: var(--font-heading);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--color-primary-light);
}

.icon-head {
    width: 25px;
}

.icon-head img {
    width: 100%;
}


/* Custom Hamburger Animation */

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler .bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

.navbar-toggler:focus {
    outline: 0;
    box-shadow: none;
}

.navbar-toggler.collapsed .bar:nth-child(1) {
    transform: rotate(0deg) translateY(0px);
}

.navbar-toggler.collapsed .bar:nth-child(2) {
    opacity: 1;
}

.navbar-toggler.collapsed .bar:nth-child(3) {
    transform: rotate(0deg) translateY(0px);
}

.navbar-toggler:not(.collapsed) .bar:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.navbar-toggler:not(.collapsed) .bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

.navbar-brand {
    max-width: 250px;
}

.navbar-brand img {
    width: 100%;
}

.custom-dropdown .dropdown-menu {
    display: block;
    /* override Bootstrap */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}


/* Show with animation on hover */

.custom-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.page-hero {
    min-height: 40vh;
    padding: 3rem 1rem;
    background-image: url('../images/slider/slider-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(rgb(47 12 12 / 40%), rgb(2 1 1 / 40%));
    z-index: -1;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--heading-xl);
    color: white;
    font-weight: 600;
}

.breadcrumb-item {
    font-size: var(--fs-lg);
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.breadcrumb a {
    text-decoration: none;
}

.hero-section {
    background-color: #ffd7d7;
    padding: 0 2rem;
    padding-bottom: 2rem;
    position: relative;
}

.hero-section::after {
    /* content: ''; */
    position: absolute;
    top: 1rem;
    left: 2rem;
    border-radius: 0.5rem;
    width: calc(100% - 4rem);
    height: calc(100% - 3rem);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.288), rgba(0, 0, 0, 0.1));
    pointer-events: none;
    z-index: 1;
}

.hero-section .swiper-slide img {
    height: calc(100vh - 150px);
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}

.hero-section .swiper-button-prev,
.hero-section .swiper-button-next {
    color: white;
    border: 1px solid;
    padding: 1rem;
    height: 80px;
    width: 80px;
    border-radius: 54px;
    z-index: 3;
    transition: all 0.3s ease-in-out;
}

.hero-section .swiper-button-prev:hover,
.hero-section .swiper-button-next:hover {
    /* background-color: white;
 color: var(--color-primary); */
    transform: scale(1.2);
}

.section {
    padding: 5rem;
}

.section .content-main {
    padding: 2rem;
    display: flex;
    align-items: start;
    flex-direction: column;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-header.center {
    align-items: center;
    width: 100%;
}

.section-header .heading {
    font-size: var(--fs-xl);
    color: var(--color-primary-light);
    font-weight: 600;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    position: relative;
    gap: 1rem;
}

.section-header .heading::after {
    content: '';
    height: 3px;
    width: 50px;
    background-color: var(--color-primary-light);
    position: relative;
}

.section-header .subheading {
    font-size: var(--heading-md);
    font-weight: 600;
    font-family: var(--font-subheading);
}

.content-heading {
    font-size: var(--heading-md);
    font-weight: 600;
    font-family: var(--font-subheading);
}

.about-facility-card {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.about-facility-card .facility {
    background: rgba(255, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.6rem;
    padding: 0.5rem 1rem;
    color: var(--color-primary);
    display: flex;
    gap: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.about-facility-card .facility img {
    width: 25px;
}

.about-facility-card p {
    margin: 0;
}

.about-facility-card .facility:hover {
    border: 1px solid var(--color-primary-light);
}

.rooms .rooms-headcard {
    padding: 3rem;
    box-shadow: inset 0 6px 62px rgb(189 78 78 / 25%), inset 0 -6px 10px rgb(255 157 157 / 10%);
    border-radius: 2rem;
    position: relative;
}

.rooms .rooms-headcard .card-grid {
    display: flex;
    align-items: center;
    position: absolute;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    width: 90%;
    background-color: white;
    padding: 1rem;
    border-radius: 1rem;
    left: 5%;
    bottom: -3rem;
}


/* .rooms .rooms-headcard .card-grid > */

.rooms .rooms-headcard .card-grid p {
    margin-bottom: 0;
    font-size: var(--fs-sm);
}

.rooms .rooms-headcard .card-grid h5 {
    margin-bottom: 0;
    font-size: var(--heading-sm)
}

.rooms .rooms-headcard .card-grid img {
    width: 60px;
    height: 60px;
    padding: 0.5rem;
    background-color: #ff000026;
    border-radius: 5rem;
}

.rooms .rooms-detail {
    display: flex;
    flex-wrap: wrap;
    margin-top: 7rem;
}

.rooms .rooms-detail .room-detail-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* border: 1px solid rgb(225, 225, 225); */
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    padding: 1rem;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
}

.rooms .rooms-detail .room-detail-card:hover {
    border: 1px solid var(--color-primary-light);
    background-color: #ff818124;
}

.rooms .rooms-detail .room-detail-card img {
    border-radius: 1rem;
}

.rooms .rooms-detail .room-detail-card h4 {
    font-size: var(--heading-sm);
    margin-bottom: 0;
}

.info-banner {
    position: relative;
    background-image: linear-gradient(to right, rgb(251 201 201 / 22%), rgb(185 185 185 / 60%)), url(../images/slider/banner.jpg);
    /* replace with your actual image path */
    background-size: cover;
    background-position: center;
    padding: 5rem 3rem;
    min-height: 300px;
    z-index: 1;
    background-attachment: fixed;
    margin: 3rem 0 0 0;
}

.info-banner .container {
    position: relative;
    z-index: 2;
}

.info-banner h3 {
    font-size: var(--heading-lg);
    font-family: var(--font-heading);
    color: #fff;
}

.info-banner p {
    color: #ececec;
    font-size: var(--fs-base);
}

.info-banner h5 {
    color: white;
    font-size: var(--heading-sm);
}

.transparent-card {
    background: rgba(224, 150, 150, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: #fff;
    transition: background 0.3s ease;
}

.transparent-card:hover {
    background: rgba(255, 159, 159, 0.25);
}

.testimonialSwiper {
    width: 100%;
}

.testimonial-card {
    max-width: 600px;
    margin: 0 auto;
    color: #333;
    font-family: 'Source Sans Pro', sans-serif;
    text-align: center;
    position: relative;
    padding: 3rem;
    border-radius: 1rem;
    background-color: #ffd7d745;
    border: 1px solid var(--color-primary-light);
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.testimonial-card .profile {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ececec;
    background-color: #FF5252;
    border-radius: 50px;
    line-height: 2rem;
    padding: 0.4rem;
    margin-bottom: 0;
}

.testimonial-card h5 {
    font-size: var(--heading-sm);
}

.testimonial-card::after {
    content: '';
    background-image: url(../images/icons/quotation-mark.png);
    width: 150px;
    height: 150px;
    position: absolute;
    top: 40%;
    right: 15%;
    background-size: contain;
    opacity: 0.3;
    z-index: -1;
}

.testimonial-card .ratings {
    width: 100px;
    height: fit-content;
}

.footer {
    overflow-x: hidden;
}

.footer .card {
    background: #101e41;
    border-radius: 0;
}

.footer .border-bottom {
    border-bottom: 1px solid #9e9e9e29 !important;
}

.footer .border-right {
    border-right: 1px solid #9e9e9e29 !important;
}

.footer .mr-46 {
    margin-right: 44px;
}

.footer a {
    text-decoration: none;
    color: #fff;
    font-size: var(--fs-sm);
}

.footer h3 {
    font-size: var(--heading-sm);
}

.footer .item-list li {
    list-style: none;
    padding: 5px;
}

.footer-icon {
    width: 40px;
}

.footer .footer-ph {
    height: 50px;
    width: 50px;
    background-color: #fff;
    color: #FF5252;
    padding: 0.5rem;
    border-radius: 50%;
    display: inline-block;
}


/* .footer .dots i {
    font-size: 25px;
    margin-left: 5px;
} */

.footer .text-content {
    font-size: 30px;
    color: #fff;
    font-weight: 500;
}

.footer .social-icons {
    display: inline-flex;
}

.footer .social-icons li {
    padding: 10px;
    list-style: none;
}

.footer .search {
    height: 53px;
    border: 1px solid #eee;
    background-color: #101e41;
    border-radius: 40px;
    padding: 2px;
}

.footer .search_input {
    color: white;
    border: 0;
    outline: 0;
    background: none;
    width: 0;
    margin-top: 2px;
    caret-color: transparent;
    line-height: 40px;
    transition: width 0.4s linear;
}

.footer .search .search_input {
    padding: 0 10px;
    width: 100%;
    caret-color: red;
    transition: width 0.4s linear;
}

.footer .search:hover>.search_icon {
    background: red;
    color: #fff;
}

.footer .search_icon {
    height: 46px;
    width: 46px;
    margin-right: 2px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: white;
    padding: 20px;
    background-color: black;
}

.footer a:link {
    text-decoration: none;
}

.bg-red-footer {
    background-color: var(--color-primary);
}

.amenities-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: white;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border-radius: 1rem;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
}

.amenities-card:hover {
    box-shadow: var(--shadow-md);
    border: 1px solid #FFBABA;
}

.amenities-card h5 {
    font-size: var(--heading-sm);
}

.amenities-card li {
    font-size: var(--fs-sm);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    border: 3px solid #FFBABA;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    gap: 1rem;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.line-top,
.line-bottom {
    width: 70%;
    height: 2px;
    background-color: #fff;
}

.overlay i {
    color: #fff;
}


/* Modal Styles */

.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.custom-modal .modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    object-fit: contain;
}

.animate-scale {
    animation: scaleUp 0.4s ease;
}

@keyframes scaleUp {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    transform: translateY(-50%);
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin-bottom: 1rem;
}

.form-field label {
    margin-bottom: 0;
    line-height: 1rem;
    font-size: var(--fs-base);
}

.form-field input,
.form-field textarea,
.form-field select {
    border-radius: 0;
    padding: 1rem;
    border-color: #e1e1e1;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field input:hover,
.form-field textarea:hover,
.form-field select:focus,
.form-field select:hover {
    box-shadow: none;
    border: 1px solid #FFBABA;
    background-color: #ffd7d735;
}

.room-card {
    border: 1px solid #ffd7d7;
    padding: 1rem;
}

.room-details {
    /* padding:0 0 0 3rem; */
    flex-direction: column;
    gap: 1rem;
    display: flex;
    align-items: flex-start;
    /* justify-content: center;
    height: 100%; */
}

.room-details h4 {
    font-size: var(--heading-lg);
}

.room-details .amenities-card .amenities {
    padding: 0.3rem 0.5rem;
    border: 1px solid #ffd7d7;
    border-radius: 0.5rem;
    color: var(--color-primary);
    background-color: #a7000009;
    font-size: var(--fs-sm);
}

.room-details .amenities-card .amenities:hover {
    background-color: #a7000015;
}


.room-detail-card span{ font-size:14px; color:#000; font-family: arial; float:left;}

