/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


a { 
    color: #060606;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #B87C4C;
    text-decoration: none;
}   

img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}


@font-face {
    font-family: 'Satoshi-Light';
    src: url('../fonts/Satoshi-Light.woff2') format('woff2'),
    url('../fonts/Satoshi-Light.woff') format('woff'),
    url('../fonts/Satoshi-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-Regular';
    src: url('../fonts/Satoshi-Regular.woff2') format('woff2'),
    url('../fonts/Satoshi-Regular.woff') format('woff'),
    url('../fonts/Satoshi-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-Medium';
    src: url('../fonts/Satoshi-Medium.woff2') format('woff2'),
    url('../fonts/Satoshi-Medium.woff') format('woff'),
    url('../fonts/Satoshi-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-Bold';
    src: url('../fonts/Satoshi-Bold.woff2') format('woff2'),
    url('../fonts/Satoshi-Bold.woff') format('woff'),
    url('../fonts/Satoshi-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-Black';
    src: url('../fonts/Satoshi-Black.woff2') format('woff2'),
    url('../fonts/Satoshi-Black.woff') format('woff'),
    url('../fonts/Satoshi-Black.ttf') format('truetype');
    font-weight: 900;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-BoldItalic';
    src: url('../fonts/Satoshi-BoldItalic.woff2') format('woff2'),
    url('../fonts/Satoshi-BoldItalic.woff') format('woff'),
    url('../fonts/Satoshi-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: italic;
}

body {
    font-family: 'Satoshi-Regular';
    line-height: 1.6;
    color: #3e4946;
    overflow-x: hidden;
    position: relative;
    background: #d6dac8;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
    opacity: 0.06;
}

/* Google Translate top-bar fixes: hide banner and prevent body offset */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

#goog-gt-tt,
.goog-tooltip,
.goog-tooltip skiptranslate {
    display: none !important;
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

/* Ensure any injected translate wrappers don't shift layout */
.skiptranslate { 
    display: none !important; 
}

iframe.goog-te-banner-frame {
    display: none !important;
}

html {
    margin-top: 0 !important;
}

/* Logo Styles */
.logo-svg {
    width: auto;
    height: 50px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Satoshi-Bold';
    line-height: 1.2;
    letter-spacing: 0.5px;
    color: #060606;
    font-size: 3em;
    margin-bottom: 30px;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 1rem;
    position: relative;
    color: #060606;
}

h3 {
    font-size: 1.8em;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1em;
}

/* Luxury Hotel Advertisement Modal Styles */
.luxury-modal-content {
    border: none;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    background: #fefefe;
    border: 3px solid #B87C4C;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.luxury-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #B87C4C, #c49a8c, #B87C4C);
    z-index: 1;
}

.luxury-modal-header {
    border: none;
    padding: 0;
    position: relative;
    background: transparent;
}

.luxury-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 15;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2em;
    color: #3c4a46;
    opacity: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.luxury-modal-close:hover {
    background: #B87C4C;
    color: #fefefe;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(214, 169, 157, 0.3);
}

/* Hero Section */
.luxury-modal-hero {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.luxury-modal-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.luxury-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.luxury-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(60, 74, 70, 0.7) 0%, rgba(214, 169, 157, 0.3) 100%);
    z-index: 2;
}

.luxury-modal-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    gap: 5px;
}

.badge-text,
.badge-discount {
    font-size: 0.7em;
    color: #fefefe;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(214, 169, 157, 0.3);
    line-height: normal;
}

.badge-text {
    background: #B87C4C;
    animation: badgePulse 2s infinite;
}

.badge-discount {
    background: #9CAFAA;
    
}

.luxury-modal-hero-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 10;
    color: #fefefe;
}

.luxury-modal-hero-title {
    font-family: 'Satoshi-Bold';
    font-size: 2.2em;
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 1.2;
    color: #fefefe;
}

.luxury-modal-hero-subtitle {
    font-family: 'Satoshi-Regular';
    font-size: 1.1em;
    opacity: 0.9;
    margin: 0;
}

/* Content Body */
.luxury-modal-content-body {
    padding: 0;
}

.luxury-modal-main-content {
    padding: 35px;
}

.luxury-modal-offer-section {
    text-align: center;
    margin-bottom: 30px;
}

.luxury-modal-title {
    font-family: 'Satoshi-Bold';
    color: #3c4a46;
    margin-bottom: 15px;
    font-size: 1.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.luxury-modal-title i {
    color: #B87C4C;
    font-size: 1.5em;
}

.luxury-modal-description {
    color: #3e4946;
    margin-bottom: 0;
    font-size: 1.1em;
    line-height: 1.7;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.text-highlight {
    color: #B87C4C;
    font-weight: bold;
    background: linear-gradient(45deg, #B87C4C, #c49a8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Actions */
.luxury-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

/* Timer */
.luxury-modal-timer {
    text-align: center;
}

.timer-container {
    background: #B87C4C;
    color: #fefefe;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: timerPulse 1s infinite;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    line-height: normal;
}

.timer-text {
    font-size: 0.9em;
}

.timer-countdown {
    font-weight: bold;
    font-size: 1.1em;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 8px;
    min-width: 50px;
}

/* Additional Interactive Effects */
.btn-pulse {
    animation: buttonPulse 0.6s ease-in-out;
}

.luxury-feature-item.animate-in {
    animation: featureSlideIn 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.luxury-modal-hero-content.animate-in {
    animation: heroContentSlideIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.luxury-modal-badge.animate-in {
    animation: badgeSlideIn 0.6s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

/* Animations */
@keyframes buttonPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes featureSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroContentSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgeSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes timerPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

/* Bootstrap Modal Customizations */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal.fade .modal-dialog {
    transition: transform 0.4s ease-out;
    transform: translate(0, -50px) scale(0.95);
}

.modal.show .modal-dialog {
    transform: translate(0, 0) scale(1);
}


/* Header Styles */
.header {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 16px;
    padding: 10px 40px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.fixed {
    position: fixed;
    background: #3c4a46;
   top: 0;
   padding-left: 20px;
   padding-right: 20px;
}

/* Glassy background container - only within the navbar container width */
.nav-glass-container {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
    border-radius: 9999px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transition: all 0.3s ease;
}

.nav-glass-container:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.2);
}

.nav-glass {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.navbar-expand-lg .navbar-nav .nav-link {
    text-decoration: none;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}


/* Navbar Styles */
.navbar {
    padding: 1rem 0;
}

.navbar .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar-toggler {
    background: transparent;
    border: none;
    color: #fefefe;
    outline: none;
    cursor: pointer;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler .bar {
    width: 25px;
    height: 2px;
    background: #fefefe;
    margin: 5px auto;
    transition: 0.3s;
    display: block;
}

.navbar .nav-link:hover::before {
    width: 100%;
}

.dropdown-toggle::after {
    content: none;
}

/* Button Styles with Blue Theme */
.btn {
    padding: 0.6em 1.6em;
    font-size: 1em;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:disabled,
.btn[disabled] {
    opacity: 0.6;
    pointer-events: none;
}

.btn-primary {
    background: #B87C4C;
    color: #fff;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn.btn-primary:hover,
.btn.btn-primary:active {
    background: #a36a3d;
    color: #fff;
}

.btn-primary:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.5);
    outline-offset: 2px;
}

.btn-secondary,
.btn-secondary:active {
    background: transparent;
    color: #B87C4C;
    border: 1px solid #B87C4C;
    transition: all 0.3s ease;
}

.btn-secondary:hover,
.btn-secondary:active:hover {
    background: #B87C4C;
    color: #fefefe;
    border-color: transparent;
}

.btn-secondary:focus-visible {
    outline: 2px solid #B87C4C;
    outline-offset: 2px;
}

.btn.btn-outline {
    background: transparent;
    color: #B87C4C;
    border: 1.5px solid #B87C4C;
    padding: 0.75rem 1.5rem;
}

.btn.btn-outline:hover {
    transform: translateY(-2px);
}

.btn.btn-outline:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.35);
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    height: 100dvh;
    position: relative;
    padding-bottom: 0;
    z-index: 1;
}

.hero-about {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-about .hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-about .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-about .hero-content {
    position: relative;
    z-index: 2;
}


.hero-slider .slick-list,
.hero-slider .slick-track {
    height: 100%;
}

.hero-slider .slick-slide img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.hero-slider .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .slick-prev::before,
.hero-slider .slick-next::before {
    content: none;
}

.accommodation-slider.hero-slider .slide-bg::before {
    content: none;
}
.hero-slider .slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(0 0 0 / 40%), rgb(0 0 0 / 50%), rgb(0 0 0 / 55%), rgb(0 0 0 / 50%) 100%);
    z-index: 0;
    border-radius: 16px;
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fefefe;
    z-index: 2;
}

.slide-text {
    max-width: 800px;
    padding: 0 20px;
}

.slide-text h1 {
    font-size: 4em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: 1px;
}

.slide-text h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    border-radius: 2px;
}

.slide-text p {
    font-size: 1.2em;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.cta-button {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fefefe;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 3;
}

.slick-slider .slick-prev,
.slick-slider .slick-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fefefe;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5em;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slick-slider .slick-prev {
    left: 20px;
}

.slick-slider .slick-next {
    right: 20px;
}


.offers-section .slick-slider .slick-prev,
.offers-section .slick-slider .slick-next {
    background: rgb(60 74 70 / 20%);
    top: auto;
    bottom: -100px;
}

.offers-section .slick-slider .slick-prev {
    left: calc(50% - 60px);
}

.offers-section .slick-slider .slick-next {
    right: calc(50% - 60px);
}

.offers-section .slick-slider .slick-prev:hover,
.offers-section .slick-slider .slick-next:hover {
    background: rgb(60 74 70 / 30%);
}

.slick-slider .slick-prev:hover,
.slick-slider .slick-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.offers-section .slick-slider i {
    font-size: 1.2rem;
    color: #1a1a1a;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.booking-engine .MbsSearchWidget {
    background: transparent;
}

.hero .booking-engine {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    z-index: 4;
    background: transparent;
}

.booking-engine .Configure-quickBook-Widget .MbsSearchWidget {
    margin: 0 auto;
}

.hero .Configure-quickBook-Widget .MbsSearchWidget  {
    background: rgb(216 220 203) !important;
    border: 1px solid rgba(255, 255, 255, 0.35);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    width: 100%;
    max-width: max-content;
}



.btn-close:focus {
    box-shadow: none;
}


/* Get In Touch Section */
.get-in-touch {
    background: #9CAFAA;
    padding: 40px 0;
    color: #060606;
    margin-top: 20px;
}

.get-in-touch-title {
    font-family: 'Satoshi-Bold';
    font-size: 2.5em;
    color: #060606;
    margin-bottom: 1rem;
    position: relative;
}

.get-in-touch-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #B87C4C;
}

.get-in-touch-subtitle {
    font-family: 'Satoshi-Regular';
    font-size: 1.1em;
    color: #3e4946;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-items-horizontal .contact-item {
    height: 100%;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.contact-details-grid .contact-item {
    flex-direction: column;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 3;
}

.contact-icon i {
    font-size: 1.5em;
    color: #060606;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-family: 'Satoshi-Medium';
    font-size: 0.9em;
    color: #3e4946;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.contact-value {
    font-family: 'Satoshi-Regular';
    font-size: 1em;
    color: #060606;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: #D6DAC8;
    padding: 60px 0 20px;
    color: #060606;
}

.footer-description {
    color: #060606;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.footer-title {
    font-family: 'Satoshi-Medium';
    font-size: 1.2em;
    color: #060606;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #B87C4C;
}

.footer-link {
    color: #B87C4C;
}

.footer-links {
    list-style: none;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links li a {
    color: #060606;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 25px;
}

.footer-links li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #B87C4C;
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: #B87C4C;
}

.footer-links li a:hover::before {
    transform: translateX(3px);
}


.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-direction: row;
    gap: 0;
}

.footer-contact .contact-item i {
    color: #B87C4C;
    font-size: 1.2em;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact .contact-info {
    display: flex;
    flex-direction: column;
}

.footer-contact .contact-info span {
    color: #060606;
    line-height: 1.4;
    margin-bottom: 2px;
}


.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(6, 6, 6, 0.1);
    color: #060606;
    margin-top: 40px;
}

.footer-bottom a:hover {
    color: #c49a8d;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fefefe;
}

.dropdown-toggle i {
    font-size: 0.75em;
    line-height: normal;
}

.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown  .dropdown-menu {
    position: absolute;
    margin-top: 10px;
    top: 40px;
    left: auto;
    right: 0;
    background: #fefefe;
    min-width: 200px;
    max-height: 310px;
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 6px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform:  scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: block;
    padding: 0.5rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown .dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.dropdown .dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.dropdown .dropdown-menu::-webkit-scrollbar-thumb {
    background: #e0dddd;
    border-radius: 10px;
}

.dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #c0c0c0;
}

.dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform:  scale(1);
}

.dropdown .dropdown-item,
.dropdown .dropdown-item.active,
.dropdown .dropdown-item:active,
.dropdown .dropdown-item:hover {
    display: block;
    padding: 0.5rem 1rem;
    color: #060606;
    text-decoration: none;
    font-weight: 500;   
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.dropdown .dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(214 169 157 / 20%), transparent);
    transition: left 0.5s ease;
}

.dropdown .dropdown-item:hover::before {
    left: 100%;
}


.bar {
    background-color: #d8d8d8;
}

/* Footer Styles */

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-link {
    color: #060606;
    font-size: 1.5rem;
    text-decoration: none;
    line-height: 19px;
}


.social-link i, .social-link svg {
    display: inline-block;
    transition: all 0.3s ease;
}
.social-link i:hover {
    color: #B87C4C;
}

.social-link svg:hover .st0{
    fill: #B87C4C;
}

/* About Us */

.page-badge {
    display: inline-block;
    font-size: 1em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #B87C4C;
    margin-bottom: 1rem;
    font-family: 'Satoshi-Medium';
    padding-left: 40px;
    padding-right: 40px;
}

.page-badge::before,
.page-badge::after {
    content: "";
    position: absolute;
    background-size: 30px;
    background-repeat: no-repeat;
    width: 30px;
    height: 100%;
    top: 6px;
}

.page-badge::before {
    left: 0;
    background-image: url('../img/decorative-heading.svg');
}

.page-badge::after {
    right: 0;
    background-image: url('../img/decorative-heading-r.svg');
}


.about .about-lead {
    font-family: 'Satoshi-Regular';
    font-size: 1.05em;
    color: #3e4946;
    margin-bottom: 100px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 24px;
}

.more-btn::after,
.more-btn::before {
    content: "";
    position: absolute;
    border-bottom: 1px dashed #B87C4C;
    height: 0.1px;
}

.more-btn:after {
    bottom: 50%;
    width: 100%;
}

.more-btn:before {
    bottom: 38%;
    width: 80%;
}

.about .more-btn img {
    position: absolute;
    bottom: 0;
    right: 0;
}

.about .about-media img {   
    display: block;
    object-fit: cover;
    height: 500px;
    margin: 0 auto;
    max-width: 400px;
}

/* Offers Section - Horizontal Carousel Design */
.offers-carousel .slick-slide:not(:first-child) .offer-card::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background-color: #e8e6e1;
    z-index: 1;
}

.offer-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: transparent;
    position: relative;
    padding: 0 8px;
}

/* Odd blocks: title on top */
.offers-carousel .slick-slide:nth-child(odd) .offer-card-inner {
    flex-direction: column;
}

.offers-carousel .slick-slide:nth-child(odd) .offer-header {
    order: 1;
    margin-bottom: 20px;
    margin-top: 0;
}

.offers-carousel .slick-slide:nth-child(odd) .offer-image-wrapper {
    order: 2;
    margin-bottom: 0;
    margin-top: 0;
}

/* Even blocks: title on bottom */
.offers-carousel .slick-slide:nth-child(even) .offer-card-inner {
    flex-direction: column;
}

.offers-carousel .slick-slide:nth-child(even) .offer-header {
    order: 2;
    margin-top: 20px;
    margin-bottom: 0;
}

.offers-carousel .slick-slide:nth-child(even) .offer-image-wrapper {
    order: 1;
    margin-bottom: 0;
    margin-top: 0;
}

.offer-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.offer-count {
    font-family: 'Satoshi-Regular';
    font-size: 0.875rem;
    color: #666;
    text-transform: none;
    letter-spacing: 0;
}

.offer-image-wrapper {
    position: relative;
    width: 100%;
    margin: 0 0 25px 0;
    overflow: hidden;
    border-radius: 8px;
    height: 350px;
}

.offer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
}

.offer-card:hover .offer-image {
    transform: scale(1.05);
}

.offer-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
}

.offer-header h3 {
    font-size: 1.5em;
    white-space: nowrap;
    line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.offer-link {
    font-size: 1.2em;
    width: 30px;
}

.offer-plus {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    display: inline-block;
    transition: transform 0.3s ease;
}

.offer-link:hover {
    color: #B87C4C;
    text-decoration: none;
}

.gallery-section .btn-secondary.active {
    background-color: #B87C4C;
    color: #fefefe;
    border-color: #B87C4C;
}

.gallery-img .btn {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 6;
}

i.bi-arrow-right {
    transform: rotate(-45deg);
    display: inline-block;
}

.slick-slider .slick-arrow i.bi-arrow-right {
    transform: rotate(0);
}

.gallery-img-container:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(60 74 70 / 35%);
    z-index: 1;
    border-radius: 16px;
}

/* Keyframe Animations for Customer Metric */
@keyframes metricFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Accommodation Section - Services Design */
.accommodation {
    background-color: rgb(214 218 200 / 20%);
    position: relative;
    overflow: hidden;
}

.accommodation-title {
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
}

.service-card:nth-child(odd) {
    margin-top: 90px;
}

.service-image img {
    object-fit: cover;
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
}

.service-card:hover .service-image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2em;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fefefe;
}

.service-overlay a.service-badge {
    border: 1px solid rgba(255, 255, 255, 0.95);
    color: #fefefe;
    padding: 6px 20px;
    border-radius: 6px;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Satoshi-Bold';
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-title {
    font-family: 'Satoshi-Bold';
    font-size: 1.5em;
    font-weight: 700;
    color: #fefefe;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.service-title > a {
    color: inherit;
}

.service-button-container {
    margin-top: -40px;
}

/* Show button only on mobile devices (768px and below) */
.accommodation-header {
    padding: 0 30px;
}

.slide-image {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 400px;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fefefe;
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.slide-image:hover .slide-overlay {
    transform: translateY(0);
}

.slide-overlay h3 {
    font-family: 'Satoshi-Medium';
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #fefefe;
    border-top: 1px solid #9CAFAA;
    padding-top: 15px;
    font-weight: 500;
}

.slide-overlay p {
    font-family: 'Satoshi-Regular';
    font-size: 0.95em;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

/* Slick Slider Custom Styles */
.accommodation-slider .slick-slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 6px;
}

.accommodation-slider .slick-prev,
.accommodation-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accommodation-slider .slick-prev {
    left: 30px;
}

.accommodation-slider .slick-next {
    right: 30px;
}

.accommodation-slider .slick-prev:hover,
.accommodation-slider .slick-next:hover {
    background: #fefefe;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.accommodation-slider .slick-prev i,
.accommodation-slider .slick-next i {
    color: #B87C4C;
    font-size: 1.2em;
}

/* Accommodation Detail Page Styles */
.breadcrumb-section {
    background: transparent;
    padding: 40px 0;
}
.breadcrumb .breadcrumb-item {
    font-size: 1.2em;
}
.breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
}

.breadcrumb-item a {
    color: #6c757d;
}

.breadcrumb-item.active {
    color: #B87C4C;
}

/* Room Details Section */
.section-title {
    font-family: 'Satoshi-Bold';
    font-size: 2.5em;
    color: #060606;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #B87C4C;
}

/* Room Features Grid */
.room-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f7f7f7;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: #B87C4C;
}

.feature-content h4 {
    font-family: 'Satoshi-Medium';
    font-size: 1em;
    margin-bottom: 0.5rem;
    color: #060606;
    font-weight: 500;
}

.feature-content p {
    color: #3e4946;
    margin: 0;
}

/* Amenities Section */
.room-amenities {
    margin-bottom: 2rem;
}

.amenities-list h4 {
    font-family: 'Satoshi-Medium';
    font-size: 1.3em;
    color: #060606;
    margin-bottom: 1.5rem;
}

.amenities-list ul {
    list-style: none;
    padding: 0;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #3e4946;
}

.amenities-list i {
    color: #B87C4C;
    font-size: 1.1em;
}


/* Booking Sidebar */
.booking-sidebar {
    position: sticky;
    top: 100px;
}

.booking-card {
    background: #fefefe;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.booking-title {
    font-family: 'Satoshi-Bold';
    font-size: 1.5em;
    color: #060606;
    margin-bottom: 1rem;
}

.price-info {
    margin-bottom: 2rem;
    text-align: center;
    padding: 1rem;
    background: #f7f7f7;
    border-radius: 10px;
}

.price {
    font-family: 'Satoshi-Bold';
    font-size: 2.5rem;
    color: #B87C4C;
}

.price-period {
    color: #3e4946;
    font-size: 1em;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    font-family: 'Satoshi-Medium';
    color: #060606;
    margin-bottom: 0.5rem;
    display: block;
}

.booking-form .form-control {
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 0.8rem 1rem;
    font-size: 1em;
    transition: border-color 0.3s ease;
    appearance: auto;
    background: transparent;
}

.booking-form .form-control:focus {
    border-color: #B87C4C;
    box-shadow: 0 0 0 0.2rem rgba(214, 169, 157, 0.25);
}

.btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 6px;
}

.booking-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.booking-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #3e4946;
    font-size: 0.9em;
}

.booking-info i {
    color: #B87C4C;
}

/* Services Card */
.services-card {
    background: #fefefe;
    border-radius: 6px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-card h4 {
    font-family: 'Satoshi-Bold';
    color: #060606;
    margin-bottom: 1.5rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.service-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-info h5 {
    font-family: 'Satoshi-Medium';
    color: #060606;
    margin-bottom: 0.3rem;
    font-size: 1em;
}

.service-info p {
    color: #3e4946;
    font-size: 0.9em;
    margin: 0;
}

.service-price {
    font-family: 'Satoshi-Bold';
    color: #B87C4C;
    font-size: 1.1em;
}

/* Room Categories */




/* Text Truncation Utility Classes */
.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-truncate-1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.scale-in {
    transform: translateY(30px) scale(0.9);
}

.scroll-animate.scale-in.animate-in {
    transform: translateY(0) scale(1);
}

.scroll-animate.slide-left {
    transform: translateX(-50px);
}

.scroll-animate.slide-left.animate-in {
    transform: translateX(0);
}

.scroll-animate.slide-right {
    transform: translateX(50px);
}

.scroll-animate.slide-right.animate-in {
    transform: translateX(0);
}

.scroll-animate.delay-100 {
    transition-delay: 0.1s;
}

.scroll-animate.delay-200 {
    transition-delay: 0.2s;
}

.scroll-animate.delay-300 {
    transition-delay: 0.3s;
}

.scroll-animate.delay-400 {
    transition-delay: 0.4s;
}

.scroll-animate.delay-500 {
    transition-delay: 0.5s;
}

/* Staggered animation for lists */
.scroll-animate.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.stagger.animate-in > * {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.stagger>*:nth-child(1) {
    transition-delay: 0.1s;
}

.scroll-animate.stagger>*:nth-child(2) {
    transition-delay: 0.2s;
}

.scroll-animate.stagger>*:nth-child(3) {
    transition-delay: 0.3s;
}

.scroll-animate.stagger>*:nth-child(4) {
    transition-delay: 0.4s;
}

.scroll-animate.stagger>*:nth-child(5) {
    transition-delay: 0.5s;
}

.scroll-animate.stagger>*:nth-child(6) {
    transition-delay: 0.6s;
}


.room-card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-categories .room-images {
    position: relative;
    overflow: hidden;
    height: 300px;
    border-radius: 12px 12px 0 0;
}

.room-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
}

.room-categories .room-content {
    padding: 30px;
    margin-top: -40px;
    margin-left: 30px;
    position: relative;
    background: #f7f7f7;
    border-radius: 0 0 12px 12px;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.room-header h3 {
    font-size: 1.4em;
    color: #060606;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.room-description {
    color: #3e4946;
    margin-bottom: 20px;
    margin-top: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    color: #8da49e;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
}

.feature i {
    color: #B87C4C;
    font-size: 1.1em;
}

.room-amenities h5 {
    font-family: 'Satoshi-Medium';
    font-size: 1.1em;
    color: #060606;
    margin-bottom: 15px;
}

.room-amenities ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.room-amenities li {
    display: flex;
    align-items: self-start;
    gap: 10px;
    font-size: 0.9em;
    color: #3e4946;
}

.room-amenities li i {
    color: #B87C4C;
    font-size: 1.1em;
}

.room-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.room-categories .btn {
    flex: 1;
}

/* Page Header Styles */


/* Wedding Page Styles */
.wedding-card {
    background: #fefefe;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.wedding-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Wedding Grid Layout - Override default room card to horizontal layout */
.wedding-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.wedding-grid .room-images {
    width: 50%;
    flex-shrink: 0;
}

.wedding-grid .room-content {
    width: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f7f7f7;
    margin-left: -30px;
    margin-top: 30px;
    border-radius: 0 12px 12px 0;
}

.wedding-slider {
    height: 100%;
}

.wedding-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wedding-content {
    padding: 30px;
}

.wedding-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.wedding-header h3 {
    font-size: 1.8em;
    font-weight: 600;
    color: #060606;
    margin: 0;
    flex: 1;
    min-width: 200px;
}



.wedding-description {
    color: #3e4946;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1em;
}

/* Dining Page Styles */
.dining-experience {
    padding: 80px 0;
}

.dining-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
}

.dining-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dining-card--large {
    grid-row: span 2;
}

.dining-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.dining-card--large .dining-image {
    height: 450px;
}

.dining-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.dining-card:hover .dining-image img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.dining-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fefefe;
    padding: 15px 20px;
    text-align: center;
}

.dining-overlay h3 {
    margin: 0;
    font-family: 'Satoshi-Bold', sans-serif;
    font-size: 1.2em;
    letter-spacing: 1px;
}

.dining-content {
    padding: 25px;
}

.dining-content h4 {
    font-size: 1.5em;
    color: #060606;
    margin-bottom: 15px;
}

.dining-content p {
    color: #3e4946;
    line-height: 1.6;
    margin-bottom: 20px;
}

.dining-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-tag {
    background: #f8f9fa;
    color: #3e4946;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-tag i {
    color: #B87C4C;
}

/* Special Dining Section */
.special-dining {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 1.5em;
    color: #060606;
    margin-bottom: 40px;
}

.section-subtitle {
    color: #3e4946;
    font-size: 1.1em;
    margin-bottom: 0;
}

.experience-card {
    background: #fefefe;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.experience-card:hover {
    transform: translateY(-5px);
}

.experience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #B87C4C, #c49587);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.experience-icon i {
    font-size: 2em;
    color: #fefefe;
}

.experience-card h4 {
    font-family: 'Satoshi-Bold', sans-serif;
    color: #060606;
    margin-bottom: 15px;
}

.experience-card p {
    color: #3e4946;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Reservation CTA */
.reservation-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #060606, #2c3e50);
    color: #fefefe;
}

.reservation-cta h3 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.reservation-cta p {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}


/* Page Header with Background Images */
.page-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
}

.page-header-bg {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    border-radius: 16px;
}

.page-header-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 40%), rgb(0 0 0 / 50%), rgb(0 0 0 / 55%), rgb(0 0 0 / 50%) 100%);
    z-index: 2;
    border-radius: 16px;
}

.page-header .container {
    position: relative;
    z-index: 3;
}



.page-header .page-badge {
    color: #B87C4C;
    font-family: 'Satoshi-Bold';
}

.page-header .page-badge::before,
.page-header .page-badge::after {
    top: 2px;
}

.page-title {
    font-family: 'Satoshi-Bold';
    font-size: 3.5em;
    color: #fefefe;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-family: 'Satoshi-Regular';
    font-size: 1.2em;
    color: #fefefe;
    opacity: 0.9;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}




/* Dining Grid Section */
.dining-grid-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 300px;
}

.dining-grid-item:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.dining-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.dining-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dining-grid-item:hover .dining-image img {
    transform: scale(1.1);
}

/* Dining Overlay */
.dining-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #9CAFAA;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dining-grid-item:hover .dining-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: #3e4946;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 95%;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dining-grid-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #060606;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.overlay-content p {
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #6c757d;
    font-weight: 300;
}

/* Contact Page Styles */
.contact-header {
    margin-bottom: 50px;
}

.contact-subtitle {
    font-size: 1.1em;
    color: #3e4946;
    margin-bottom: 0;
    font-weight: 300;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-column .contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-category {
    font-size: 1em;
    color: #3e4946;
    text-transform: capitalize;
    font-weight: 400;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 20px;
}


.contact-image {
    border-radius: 6px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}



/* Gallery Page Styles */
.gallery-content {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    z-index: 10;
}

.gallery-text {
    max-width: 100%;
}

.gallery-title {
    font-family: 'Satoshi-Bold';
    font-size: 3.5em;
    color: #060606;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
}

.gallery-description {
    font-family: 'Satoshi-Regular';
    font-size: 1.1em;
    color: #3e4946;
    line-height: 1.6;
    margin-bottom: 40px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 40px;
    max-width: 100%;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    background: #fff;
}

.gallery-item:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Masonry Layout Variations */
.gallery-item:nth-child(1) {
    grid-row: span 2;
}

.gallery-item:nth-child(3) {
    grid-row: span 2;
}

.gallery-item:nth-child(5),
.gallery-item:nth-child(7) {
    grid-row: span 1;
}

.gallery-item:nth-child(9) {
    grid-row: span 2;
}

.gallery-item:nth-child(11) {
    grid-row: span 2;
}



/* Facilities Page Styles */
.facilities-section {
    min-height: 60vh;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
}

.facilities-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border: 1px solid #cbcbcb;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.facility-item span {
    color: #3e4946;
    font-size: 0.95em;
    font-weight: 400;
    line-height: 1.4;
}

/* Modal Animation Styles */
.modal-slide-down {
    animation: slideDownFromTop 0.6s ease-out;
}

@keyframes slideDownFromTop {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Enhanced modal content animation */
.luxury-modal-content {
    animation: fadeInScale 0.8s ease-out 0.2s both;
}

@keyframes fadeInScale {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Staggered animation for modal elements */
.luxury-modal-hero-content {
    animation: slideInFromLeft 0.6s ease-out 0.4s both;
}

.luxury-modal-badge {
    animation: slideInFromRight 0.6s ease-out 0.5s both;
}

.luxury-modal-offer-section {
    animation: slideInFromBottom 0.6s ease-out 0.6s both;
}

.luxury-modal-actions {
    animation: slideInFromBottom 0.6s ease-out 0.7s both;
}

.luxury-modal-timer {
    animation: slideInFromBottom 0.6s ease-out 0.8s both;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Enhanced Modal Animations */
.modal-backdrop {
    animation: fadeIn 0.3s ease-out;
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

.modal.show .modal-dialog {
    transform: none;
}

.luxury-modal-content {
    animation: fadeInScale 0.6s ease-out 0.1s both;
}

.luxury-modal-hero {
    animation: slideInDown 0.8s ease-out 0.2s both;
}

.luxury-modal-main-content {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.luxury-modal-actions {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.luxury-modal-timer {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.luxury-feature-item {
    animation: slideInLeft 0.6s ease-out both;
}

.luxury-feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.luxury-feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.luxury-feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.luxury-feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.5;
    }
}

/* Enhanced Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpHero {
    from {
        opacity: 0;
        transform: translateY(-40%);
    }

    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

@keyframes fadeInDownHero {
    from {
        opacity: 0;
        transform: translateY(-80%);
    }

    to {
        opacity: 1;
        transform: translateY(-100%);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }

    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes flipInX {
    from {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg);
    }

    to {
        opacity: 1;
        transform: perspective(400px) rotateX(0deg);
    }
}

@keyframes flipInY {
    from {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }

    to {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

@keyframes wobble {
    0% {
        transform: translateX(0%);
    }

    15% {
        transform: translateX(-25%) rotate(-5deg);
    }

    30% {
        transform: translateX(20%) rotate(3deg);
    }

    45% {
        transform: translateX(-15%) rotate(-3deg);
    }

    60% {
        transform: translateX(10%) rotate(2deg);
    }

    75% {
        transform: translateX(-5%) rotate(-1deg);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(184, 124, 76, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(184, 124, 76, 0.8), 0 0 30px rgba(184, 124, 76, 0.6);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {

    0%,
    50% {
        border-color: transparent;
    }

    51%,
    100% {
        border-color: #B87C4C;
    }
}

@keyframes loadingDots {

    0%,
    20% {
        color: rgba(0,0,0,0);
        text-shadow: .25em 0 0 rgba(0,0,0,0),
        .5em 0 0 rgba(0,0,0,0);
    }

    40% {
        color: #B87C4C;
        text-shadow: .25em 0 0 rgba(0,0,0,0),
        .5em 0 0 rgba(0,0,0,0);
    }

    60% {
        text-shadow: .25em 0 0 #B87C4C,
        .5em 0 0 rgba(0,0,0,0);
    }

    80%,
    100% {
        text-shadow: .25em 0 0 #B87C4C,
        .5em 0 0 #B87C4C;
    }
}

/* Animation Utility Classes */
.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fadeInDown {
    animation: fadeInDown 0.8s ease-out forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-scaleIn {
    animation: scaleIn 0.6s ease-out forwards;
}

.animate-rotateIn {
    animation: rotateIn 0.8s ease-out forwards;
}

.animate-bounceIn {
    animation: bounceIn 0.8s ease-out forwards;
}

.animate-slideInUp {
    animation: slideInUp 0.8s ease-out forwards;
}

.animate-slideInDown {
    animation: slideInDown 0.8s ease-out forwards;
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-zoomIn {
    animation: zoomIn 0.6s ease-out forwards;
}

.animate-flipInX {
    animation: flipInX 0.8s ease-out forwards;
}

.animate-flipInY {
    animation: flipInY 0.8s ease-out forwards;
}

.animate-shake {
    animation: shake 0.5s ease-in-out;
}

.animate-wobble {
    animation: wobble 1s ease-in-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.animate-typewriter {
    overflow: hidden;
    border-right: 2px solid #B87C4C;
    white-space: nowrap;
    animation: typewriter 3s steps(40, end), blink 0.75s step-end infinite;
}

.animate-loadingDots::after {
    content: '...';
    animation: loadingDots 1.5s infinite;
}

/* Animation Delays */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-600 {
    animation-delay: 0.6s;
}

.delay-700 {
    animation-delay: 0.7s;
}

.delay-800 {
    animation-delay: 0.8s;
}

.delay-900 {
    animation-delay: 0.9s;
}

.delay-1000 {
    animation-delay: 1s;
}

/* Animation Durations */
.duration-300 {
    animation-duration: 0.3s;
}

.duration-500 {
    animation-duration: 0.5s;
}

.duration-700 {
    animation-duration: 0.7s;
}

.duration-1000 {
    animation-duration: 1s;
}

.duration-1500 {
    animation-duration: 1.5s;
}

.duration-2000 {
    animation-duration: 2s;
}

/* Hover Animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-rotate {
    transition: transform 0.3s ease;
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

.hover-shake:hover {
    animation: shake 0.5s ease-in-out;
}

.hover-wobble:hover {
    animation: wobble 1s ease-in-out;
}

.hover-pulse:hover {
    animation: pulse 1s infinite;
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.slide-left {
    transform: translateX(-50px);
}

.scroll-animate.slide-left.animate-in {
    transform: translateX(0);
}

.scroll-animate.slide-right {
    transform: translateX(50px);
}

.scroll-animate.slide-right.animate-in {
    transform: translateX(0);
}

.scroll-animate.scale-in {
    transform: scale(0.8);
}

.scroll-animate.scale-in.animate-in {
    transform: scale(1);
}

.scroll-animate.rotate-in {
    transform: rotate(-10deg) scale(0.8);
}

.scroll-animate.rotate-in.animate-in {
    transform: rotate(0deg) scale(1);
}

/* Page Load Animations */

.page-load .about-media {
    animation: fadeInLeft 1s ease-out 0.2s both;
}

.page-load .about-content {
    animation: fadeInRight 1s ease-out 0.4s both;
}

.page-load .service-card {
    animation: scaleIn 0.8s ease-out both;
}

.page-load .service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.page-load .service-card:nth-child(2) {
    animation-delay: 0.3s;
}

.page-load .service-card:nth-child(3) {
    animation-delay: 0.5s;
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 1.5s infinite;
}

/* Staggered Animations */
.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

.stagger-6 {
    animation-delay: 0.6s;
}

/* Page Transition Animations */
.page-enter {
    animation: fadeInUp 0.8s ease-out;
}

.page-exit {
    animation: fadeOutDown 0.5s ease-in;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(184, 124, 76, 0.3);
    border-radius: 50%;
    border-top-color: #B87C4C;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


@keyframes focusPulse {
    0% {
        outline-width: 2px;
    }

    50% {
        outline-width: 4px;
    }

    100% {
        outline-width: 2px;
    }
}

/* Image Loading Animation */
img {
    transition: opacity 0.3s ease;
}

/* Text Reveal Animation */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    animation: slideInUp 0.6s ease-out both;
}

/* Icon Animations */
.icon-bounce:hover {
    animation: bounceIn 0.6s ease-out;
}

.icon-rotate:hover {
    animation: rotateIn 0.6s ease-out;
}

.icon-pulse:hover {
    animation: pulse 1s infinite;
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Button Loading State */
.btn-loading {
    position: relative;
    color: transparent;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Success/Error Animations */
.animate-success {
    animation: bounceIn 0.6s ease-out;
    color: #28a745;
}

.animate-error {
    animation: shake 0.6s ease-out;
    color: #dc3545;
}

.gallery-container iframe,
.gallery-container video {
    width: 100%;
    height: 100%;
}

.gallery-container .gallery {
    column-count: 3;       
    column-gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Masonry Gallery Layout */
.gallery-masonry {
    margin: 0 auto;
    position: relative;
}

.gallery-col {
    width: 100%;
    margin-bottom: 12px;
    break-inside: avoid;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.4s;
    display: inline-block;
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.gallery-col.filtering-out {
    opacity: 0;
    transform: scale(0.8);
    visibility: hidden;
}

.gallery-col.filtering-in {
    opacity: 0;
    transform: scale(0.9);
    animation: filterIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes filterIn {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.gallery-col .item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.gallery-col .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-col .item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    min-height: 150px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.gallery-col .item:hover img {
    transform: scale(1.05);
}

/* Masonry sizer for responsive columns */
.gallery-masonry::after {
    content: '';
    display: block;
    clear: both;
}

/* Notification Animations */
.notification-enter {
    animation: slideInRight 0.5s ease-out;
}

.notification-exit {
    animation: slideOutRight 0.5s ease-in;
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Accessibility Styles */
.accessibility-toggle {
    border: none;
    outline: none;
    background-color: #fafafa;
    box-shadow: none;
    cursor: pointer;
    padding: 7px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 9999;
}

.accessibility-toggle img {
    max-width: 40px;
}

/* Accessibility panel */
.accessibility-panel {
    position: fixed;
    bottom: 65px;
    left: 20px;
    background: #fafafa;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
    display: none;
    z-index: 9999;
    overflow: hidden;
}

.accessibility-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px;
    background-color: #eff1f5;
}

.accessibility-btn button {
    padding: 12px;
    font-size: 14px;
    width: 125px;
    height: 100px;
    cursor: pointer;
    background: #fafafa;
    color: #222222;
    border-radius: 10px;
    border: none;
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.2px;
}

.accessibility-btn button:hover {
    border: 2px solid #333f48;
}

.accessibility-btn button img {
    max-height: 30px;
    max-width: 30px;
    margin-bottom: 10px;
}

.accessibility-btn button.active {
    border: 2px solid #333f48;
}

.accessibility-btn button.shrink-img img {
    max-height: 22px;
    max-width: 22px;
}

.accessibility-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222222;
    color: #fafafa;
    padding: 15px;
}

.accessibility-header h5 {
    color: #fafafa;
    font-size: 18px !important;
    text-transform: capitalize !important;
    margin: 0;
}

.accessibility-header button {
    background-color: #dadada;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accessibility-footer {
    padding: 15px;
}

.accessibility-footer button {
    width: 100%;
    background-color: #222222;
    border-radius: 5px;
    padding: 12px 15px;
    color: #fafafa;
    font-size: 13px;
    letter-spacing: 0.4px;
    border: none;
    outline: none;
}

.footer-logo img {
    filter: invert(1);
    margin-bottom: 30px;
}

/* Privacy Policy Modal Styling - Matching Newsletter Modal */
#policyModal .modal-content {
  border-radius: 8px;
  border: 1px solid #ddd;
  max-height: 90vh;
}

#policyModal .modal-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 10;
}

#policyModal .modal-title {
  font-weight: bold;
  color: #333;
  margin: 0;
}

#policyModal .modal-body {
  padding: 30px;
  max-height: calc(90vh - 80px);
  overflow-y: auto;
}

#policyModal .close {
  font-size: 24px;
  font-weight: bold;
  color: #999;
}

#policyModal .close:hover {
  color: #333;
}

.policy-modal  {
  height: 100%;
}

/* Accessibility styles (to be toggled) */
.high-contrast {
    background-color: #111111 !important;
    color: #fafafa !important;
}

.high-contrast :where(.get-in-touch, .luxury-modal-content, .luxury-modal-close, .price-info, .accessibility-toggle) {
    background: #111111 !important;
}

.high-contrast :where(.accessibility-panel, .accessibility-btn, .modal-content, .mobile-menu-back, select, .testimonial-card, .booking-card, .services-card, .feature-item, .footer, .header.fixed, .overlay-content, .dropdown-menu, .room-categories .room-content, .wedding-grid .room-content, .facility-item) {
    background: #333333 !important;
}
.high-contrast .footer-logo img {
    filter: invert(0);
}
.high-contrast .accommodation::before {
    background: rgb(51 51 51 / 80%);
}

.high-contrast .dropdown-menu::before {
    background: #333333 !important;
    box-shadow: -1px -1px 0px 0px rgba(255, 255, 255, 0.2);
    top: -5px;
}

.high-contrast .dropdown-item::before {
    background: linear-gradient(90deg, transparent, rgb(32 32 32 / 80%), transparent);
}

.large-font {
    font-size: 1.1em !important;
}

.large-cursor,
.large-cursor button,
.large-cursor a {
    cursor: url("../img/cursor.svg") 4 4, auto !important;
}

.high-contrast #newsletterModal .modal-header .btn-close {
    filter: invert(1);
}

.high-contrast .breadcrumb-item+.breadcrumb-item::before,
.high-contrast #newsletterModal .form-control,
.high-contrast .form-control::placeholder,
.high-contrast .accessibility-btn button{
    color: #fefefe !important;
}

.high-contrast :where(a, h1, h2, h3, h4, .about-description, .footer-links li a, .footer-links li a::before, .footer-links li a:hover,
.footer-links li a:hover::before, .footer-contact .contact-info span,
.footer-bottom a, .footer-bottom a:hover, .about .about-lead, .footer-title, .footer-description, 
.footer-social .social-link, .footer-bottom, .room-description, .room-amenities h5, .room-amenities li, .overlay-content p,
.gallery-description, .stat-label, .contact-subtitle, .contact-category, .contact-value, .facility-item span, .metric-label, 
.metric-number, .contact-label, .contact-icon i,.luxury-modal-title, .luxury-modal-description, .luxury-modal-hero-subtitle, 
.luxury-modal-hero-title,.luxury-modal-hero-content, .luxury-modal-close, .booking-form label, .booking-info p,
    .service-info h5, .service-info p, .booking-form .form-control, .feature-content p, .price-period,
    .testimonial-text, .author-location, .metric-icon i, .back-btn, .modal-content) {
    color: #fefefe !important;
}

.high-contrast :where(.contact-category, .contact-label, .author-location)   {
    opacity: 0.7;
}

body.high-contrast::before {
    opacity: 0.1;
}

.highlight-link :where(a) {
    background-color: #222222 !important;
    color: yellow !important;
}

.highlight-link :where(.navbar .nav-link, .footer-links li a) {
    color: yellow !important;
}

.high-contrast :where(.breadcrumb-section, .service-item) {
    border-bottom-color: #505050;
}
.high-contrast .breadcrumb-section,
.high-contrast .accessibility-btn button {
    background: #292929;
}
.high-contrast :where(.footer-bottom, .booking-info) {
    border-top-color: #505050;
}

.high-contrast .facility-item,
.high-contrast .booking-form .form-control,
.high-contrast #newsletterModal .modal-content,
.high-contrast #policyModal .modal-content,
.high-contrast #newsletterModal .form-control,
.high-contrast .accessibility-panel {
    border-color: #505050;
}

.high-contrast .accessibility-btn button img,
.high-contrast .accessibility-toggle img {
    filter: invert(1);
}
.high-contrast #newsletterModal .modal-header,
.high-contrast #policyModal .modal-header {
    background: #333333;
    border-bottom-color: #505050;
    }
.high-contrast .form-control {
    background-color: transparent;
}
.high-contrast .modal-backdrop {
    background-color: rgb(0 0 0 / 95%);
    }
.high-contrast .accessibility-btn button {
    border-color: #505050;
}
/* Custom Cursor */

/* Gallery Tabs */
.gallery-tabs {
    margin: 2rem 0;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.tab-btn {
    padding: 8px 24px;
    background: transparent;
    border: 1px solid #B87C4C;
    color: #B87C4C;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: capitalize;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn.active,
.tab-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, #B87C4C 0%, #D4A574 100%);
    border-color: #B87C4C;
    box-shadow: 0 8px 25px rgba(184, 124, 76, 0.4);
    transform: translateY(-3px);
    letter-spacing: 1px;
}

.tab-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(184, 124, 76, 0.3);
}

/* Responsive Tab Styles */

.gallery-item {
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

/* Tab Animation - Removed old animation styles */

/* Gallery filtering styles */
.gallery-item.hidden {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Ensure proper masonry layout after filtering */
.masonry-gallery {
    transition: height 0.3s ease;
}





/* Responsive Video Styles */

/* Testimonials Section */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fefefe;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(184, 124, 76, 0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #B87C4C, #c49a8c, #B87C4C);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(184, 124, 76, 0.2);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 25px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-rating i {
    transform: scale(1.1);
}

.testimonial-text {
    font-family: 'Satoshi-Regular';
    font-size: 1.1em;
    line-height: 1.7;
    color: #060606;
    margin: 0 0 30px 0;
    position: relative;
    font-style: italic;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 3em;
    color: #B87C4C;
    font-family: 'Satoshi-Bold';
    opacity: 0.3;
    line-height: 1;
}

.testimonial-text::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 3em;
    color: #B87C4C;
    font-family: 'Satoshi-Bold';
    opacity: 0.3;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #B87C4C;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .author-avatar img {
    transform: scale(1.1);
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: 'Satoshi-Bold';
    font-size: 1.1em;
    color: #060606;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.author-title {
    font-family: 'Satoshi-Medium';
    font-size: 0.9em;
    color: #B87C4C;
    margin: 0 0 3px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-location {
    font-family: 'Satoshi-Regular';
    font-size: 0.85em;
    color: #3e4946;
    margin: 0;
}

/* About Us Page Styles */
.about-story {
    padding: 80px 0;
    background: #fefefe;
}

/* Story Timeline Styles */
.story-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #B87C4C, #c49a8c);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -30px;
    width: 20px;
    height: 20px;
    background: #B87C4C;
    border: 4px solid #fefefe;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(184, 124, 76, 0.2);
}

.timeline-year {
    font-family: 'Satoshi-Bold';
    font-size: 2em;
    color: #B87C4C;
    text-align: center;
    min-width: 120px;
    position: relative;
    z-index: 3;
    background: #fefefe;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content {
    flex: 1;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(184, 124, 76, 0.1);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: #f8f9fa;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: #f8f9fa;
}

.timeline-content h4 {
    font-family: 'Satoshi-Bold';
    font-size: 1.4em;
    color: #060606;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #3e4946;
    line-height: 1.6;
    margin: 0;
}

.timeline-image {
    width: 200px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.timeline-image:hover {
    transform: scale(1.05);
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-values {
    padding: 80px 0;
    background: #f8f9fa;
}

.our-team {
    padding: 80px 0;
    background: #fefefe;
}

.awards-recognition {
    padding: 80px 0;
    background: #f8f9fa;
}


/* Value Cards */
.value-card {
    background: #fefefe;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(184, 124, 76, 0.1);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(184, 124, 76, 0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #B87C4C, #c49a8c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2em;
    color: #fefefe;
}

.value-title {
    font-family: 'Satoshi-Bold';
    font-size: 1.3em;
    color: #060606;
    margin-bottom: 15px;
}

.value-description {
    color: #3e4946;
    line-height: 1.6;
    margin: 0;
}

/* Team Cards */
.team-card {
    background: #fefefe;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(184, 124, 76, 0.1);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(184, 124, 76, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fefefe;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #fefefe;
    color: #B87C4C;
    transform: scale(1.1);
}

.team-content {
    padding: 30px;
}

.team-name {
    font-family: 'Satoshi-Bold';
    font-size: 1.3em;
    color: #060606;
    margin-bottom: 8px;
}

.team-position {
    font-family: 'Satoshi-Medium';
    color: #B87C4C;
    font-size: 1em;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-description {
    color: #3e4946;
    line-height: 1.6;
    margin: 0;
}

/* Award Cards */
.award-card {
    background: #fefefe;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(184, 124, 76, 0.1);
    height: 100%;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(184, 124, 76, 0.3);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #B87C4C, #c49a8c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.award-card:hover .award-icon {
    transform: scale(1.1);
}

.award-icon i {
    font-size: 2em;
    color: #fefefe;
}

.award-title {
    font-family: 'Satoshi-Bold';
    font-size: 1.2em;
    color: #060606;
    margin-bottom: 10px;
}

.award-year {
    font-family: 'Satoshi-Medium';
    color: #B87C4C;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.award-organization {
    color: #3e4946;
    font-size: 0.9em;
    margin: 0;
}


/* Responsive Design */
    
 /* Newsletter Modal Styling */
 #newsletterModal .modal-content {
    border-radius: 8px;
    border: 1px solid #ddd;
  }

  #newsletterModal .modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 20px;
  }

  #newsletterModal .modal-title {
    font-weight: bold;
    color: #333;
    margin: 0;
  }

  #newsletterModal .modal-body {
    padding: 30px;
  }

  #newsletterModal .form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px;
    font-size: 14px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  #newsletterModal .btn {
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  #newsletterModal .close {
    font-size: 24px;
    font-weight: bold;
    color: #999;
  }

  #newsletterModal .close:hover {
    color: #333;
  }

  /* Modal backdrop */
  .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
  }