:root {

    /* Brand Colors */
    --color-primary: #8c7b6b;          /* warm taupe bronze */
    --color-primarysecond: #b39b83;    /* soft sand */
    --color-secondary: #5e665b;        /* olive stone */
    --color-accent: #c2a57b;           /* luxury gold sand */
    --color-accent-dark: #8f6f46;      /* dark bronze */

    /* Text */
    --color-text: #2f2f2f;
    --color-text-light: #666666;
    --color-text-muted: #9a9a9a;

    /* Backgrounds */
    --color-white: #ffffff;
    --color-cream: #f8f5f1;
    --color-light: #f2eee8;

    /* Headers */
    --color-headers: #7f766c;
    --color-headers_dark: #5f574e;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Effects */
    --transition: all 0.3s ease;

    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-alt {
    background-color: var(--color-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 15px;
}

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

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-full {
    width: 100%;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.site-header.scrolled {
    background: var(--color-primary);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    max-width: 1400px;
    margin: 0 auto;
}
.logo{
		background-image: url("../images/logo_white.png");
		width: 100%;
		height: 100px;
		background-repeat: no-repeat;
		background-size: contain;
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 2px;
}

/*.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    position: relative;
}*/
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    flex-wrap: nowrap;       /* prevent wrapping to new line */
}

.nav-menu li {
    flex: 0 0 auto;          /* li only as wide as its content */
    white-space: nowrap;     /* keep text on one line */
}

.nav-menu a {
    display: inline-block;   /* anchor fits text width */
    white-space: nowrap;     /* no line breaks inside link */
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    position: relative;
    padding: 2 4px;          /* optional breathing room */
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-icon {
    font-size: 0.6rem;
    transition: var(--transition);
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    list-style: none;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    margin-top: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(26, 26, 26, 0.98);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    color: var(--color-accent);
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-menu a.active {
    color: var(--color-accent);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    overflow: hidden;
}

/*.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
	background-image: url("../images/MSS_6528.jpg")
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    padding: 0 20px;
}*/

.hero-content h1 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-location {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 40px;
}

.hero-location i {
    color: var(--color-accent);
    margin-right: 8px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--color-white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
}

.page-hero-small {
    height: 50vh;
    min-height: 600px;
}

.page-hero .hero-content h1 {
    margin-bottom: 15px;
}

.page-hero .hero-content p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 25px;
}

.intro-text:last-child {
    margin-bottom: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--color-white);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: 50%;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--color-accent);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.gallery-grid-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-grid-preview .gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-grid-preview .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.9);
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.gallery-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.cta {
    position: relative;

    background: linear-gradient(
        135deg,
        var(--color-headers_dark) 0%,
        var(--color-primary) 100%
    );

    color: var(--color-white);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta-content p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    position: relative;
}

.image-placeholder {
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.9);
}

.image-placeholder i {
    font-size: 4rem;
    opacity: 0.8;
}

.story-content p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--color-white);
    padding: 25px;
    box-shadow: var(--shadow);
}

.spec-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: 50%;
    flex-shrink: 0;
}

.spec-icon i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.spec-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-primary);
}

.spec-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.amenity-category h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-accent);
}

.amenity-category h3 i {
    color: var(--color-accent);
}

.amenity-list {
    list-style: none;
}

.amenity-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.amenity-list li i {
    color: var(--color-accent);
    font-size: 0.8rem;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.room-card {
    background: var(--color-white);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.room-image {
    height: 250px;
}

.room-content {
    padding: 30px;
}

.room-content h3 {
    margin-bottom: 15px;
}

.room-content p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.room-size {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 500;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--color-text-muted);
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-grid .gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-grid .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.gallery-category {
    color: var(--color-accent);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-item.hidden {
    display: none;
}

.tour-content p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--color-text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: 50%;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--color-accent);
}

.info-content h4 {
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 600;
}

.info-content p {
    color: var(--color-text-light);
}

.info-content a {
    color: var(--color-text-light);
}

.info-content a:hover {
    color: var(--color-accent);
}

.contact-form-container {
    background: var(--color-white);
    padding: 50px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid #ddd;
    background: var(--color-light);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: var(--color-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.form-error {
    background: #fee;
    color: #c00;
    padding: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f5e9;
    border-radius: 50%;
}

.success-icon i {
    font-size: 2.5rem;
    color: #4caf50;
}

.form-success h3 {
    margin-bottom: 15px;
}

.form-success p {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

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

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
}

.map-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.map-note i {
    color: var(--color-accent);
    margin-right: 8px;
}

.map-placeholder {
    background: var(--color-light);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--color-accent);
}

.map-placeholder p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 5px;
}

.site-footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 80px 0 30px;
}

.footer-content, .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-section h3 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 15px;
}

.footer-location {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-location i {
    color: var(--color-accent);
    margin-right: 8px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.footer-section p {
    opacity: 0.7;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-section p i {
    color: var(--color-accent);
    margin-right: 10px;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    opacity: 0.5;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    
    .nav-menu a {
        font-size: 1.2rem;
    }
    
    .nav-menu a.active {
        color: var(--color-accent);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-toggle.active .hamburger {
        background: transparent;
    }
    
    .nav-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .nav-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .has-dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        min-width: auto;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        padding: 10px 0 0 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .has-dropdown.dropdown-open .dropdown-menu {
        max-height: 200px;
        padding: 15px 0 0 0;
    }
    
    .dropdown-menu a {
        padding: 8px 20px;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .dropdown-icon {
        font-size: 0.7rem;
    }
    
    .has-dropdown.dropdown-open .dropdown-icon {
        transform: rotate(180deg);
    }
    
    .gallery-grid-preview {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 150px);
    }
    
    .gallery-grid-preview .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 15px;
        font-size: 0.7rem;
    }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    overflow: hidden !important; /* ensures image doesn’t spill */
    z-index: 0;       /* sits behind hero content */
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* cover ensures it fills hero area without stretching */
    display: block;
    position: absolute;  /* fill the hero overlay */
    top: 0;
    left: 0;
    z-index: 0;          /* behind hero content */
}

.hero-content {
    position: relative;
    z-index: 1;          /* make sure content stays above the image */
}
	.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* or contain if you want full image */
    display: block;
}

.gallery-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

			@media only screen and (min-width : 100px) and (max-width : 419px){
			.container {
				width: 100%;
				/*margin-left: -5px*/;
				overflow: hidden;
			}
			}
			/* For medium devices (e.g. tablets) */
			@media only screen and (min-width : 420px) and (max-width : 959px) {
			.container {
				width: 100%;
				/*margin-left: -5px;*/
				overflow: hidden;
			}
			}
			/* For large devices (e.g. desktops) */
			@media screen and (min-width: 960px)  {
			.container{
				width: 100%;
			/*	margin-left: -5px;*/
				overflow: hidden;
			}
			}

			.container {
			  margin-right: auto;
			  margin-left: auto;
			  width: 100%;
			  padding-left: 0 !important;
			  padding-right: 0 !important;
			}
			
			table.calendar		{ /*! border-left:1px solid #999; */ width:100%;}

			td.calendar-day	{ height:60px;width:60px; font-size:14px; position:relative; /*line-height:39px;*/ } 
			
			
			
			td.calendar-day-np	{ /*! background:#eee; */} * html div.calendar-day-np { height:80px; }
			
			td.calendar-day-head {text-align:center; /*! border-bottom:1px solid #999; */ /*! border-top:1px solid #999; */ /*! border-right:1px solid #999; */ font-size:12px;}
			
.calendar-row {
	height: 50px;
}

div.day-number {
	background: inherit;
	margin: auto;
	text-align: center;
}
			
			/*td.disable  div.day-number
			{
				background:var(--color-headers);;
			}*/
			
/*			td.calendar-day, td.calendar-day-np { border-bottom:2px solid #fff !important; }*/

td.calendar-day {
	border-bottom: 2px solid #fff !important;
	border-right: 2px solid white;
	background-color: var(--color-primary);;
	border-radius: 5px;
}
 td.calendar-day-np {
	 border-bottom:2px solid #fff !important;
	 border-right: 2px solid white;
}
			
			.cals_main .our_cal:nth-child(2n+1)
			{
				clear:left;	
			}
										
			.prev_link
			{
				float:left;	
			}
			.next_link
			{
				float:right;					
			}
			
.month_header {
	padding: 10px 0px 10px 0px;
	text-align: center;
	color: white;
	font-size: 18px;
	background-color: var(--color-headers);;
	margin-bottom: 10px;
	border-radius: 5px;
	width: 100%;
	float: left;
	margin-top: 15px;
}
@media only screen and (min-width : 100px) and (max-width : 619px){
			.our_cal
			{
				width:100% !important;	
				float: left; 
				margin: 0px 0px 30px 0px;
				/*! box-shadow:1px 1px 5px 0 #555; */
				padding:0px;
				margin-bottom: 10px;
			}
}
			@media screen and (min-width: 620px)  {
			.our_cal
			{
				width:100%;
				float: left; 
				/*margin: 0px 25px 30px 22px;*/
				/*! box-shadow:1px 1px 5px 0 #555; */
				padding:0px;
				margin-bottom: 10px;
			}
}
#villa_calendar .row {
	width: 100%;
	float: left;
	position: relative;
	padding-top: 50px;
	margin: 0 !important;
}				
#villa_calendar .row_container {
	width: 90px;
	/*! margin-right: 28px; */
	/*! float: right; */
	/*! margin-bottom: 20px; */
	/*! margin-top: 70px; */
	position: absolute;
	/*! height: 101px; */
	top: 0;
	right: 0;
}
.row_container {
	width: 100%;
	float: left;
	position: relative;
}
.col-md-12 {
	width: 100%;
	float: left;
	position: relative;
	height: 50px;
}
.glyphicon-menu-right1 {
/*	background-image: url(/images/arrow_right.png);
	background-repeat: no-repeat;
	height: 54px;
	width: 34px;
	position: absolute;
	right: 0;*/
	width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 45px solid var(--color-headers_dark); /* gray fill */
	position: absolute;
  	right: 0%;
}
.glyphicon-menu-left1 {
/*	background-image: url(/images//arrow_left.png);
	background-repeat: no-repeat;
	height: 54px;
	width: 34px;
	position: absolute;
	right: 5%;*/
	width: 0;
  	height: 0;
  	border-top: 30px solid transparent;
  	border-bottom: 30px solid transparent;
  	border-right: 45px solid var(--color-headers_dark);
  	position: absolute;
  	right: 15%;
}
.glyphicon-menu-left1_disabled {
	width: 0;
  	height: 0;
  	border-top: 30px solid transparent;
  	border-bottom: 30px solid transparent;
  	border-right: 45px solid var(--color-headers_dark);
  	position: absolute;
  	right: 15%;
	opacity: 0.3;
	cursor: not-allowed;

}
/* Ensure table cells and inner blocks are positioned for pseudo element */
td.disablestarts div.day-number,
td.disablestarts div.day-numb,
td.disableends div.day-number,
td.disableends div.day-numb {
    position: relative;        /* needed for ::before positioning */
    overflow: hidden;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8px;
}

/* Ensure table cells and inner blocks are positioned for pseudo element */
td.disablestarts div.day-number,
td.disablestarts div.day-numb,
td.disableends div.day-number,
td.disableends div.day-numb {
    position: relative;        /* needed for ::before positioning */
    overflow: hidden;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8px;
}

/* Base cell style – LOCK height so nothing shifts */
td.calendar-day .day-number,
td.calendar-day .day-numb {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 48px; /* ← adjust to your calendar row height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* center vertically perfectly */
    overflow: hidden;
    border-radius: 5px;
    box-sizing: border-box;
}

/* START CELL = base color top-left */
td.disablestarts .day-number,
td.disablestarts .day-numb {
    background-color: var(--color-primary);
}

/* END CELL = base color top-left */
td.disableends .day-number,
td.disableends .day-numb {
    background-color: var(--color-headers);
}

/* TRIANGLE overlay (diagonal split) */
td.disablestarts .day-number::before,
td.disablestarts .day-numb::before,
td.disableends .day-number::before,
td.disableends .day-numb::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    clip-path: polygon(0 100%, 100% 0, 100% 100%); /* bottom-right triangle */
}

/* Start cell triangle color (bottom-right corner) */
td.disablestarts .day-number::before,
td.disablestarts .day-numb::before {
    background-color: var(--color-headers);
}

/* End cell triangle color (bottom-right corner) */
td.disableends .day-number::before,
td.disableends .day-numb::before {
    background-color: var(--color-primary);
}


/* Ensure text is above triangle */
.day-number .p-date,
.day-number .p-rate,
.day-numb .p-date,
.day-numb .p-rate {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #ffffff;
}
/* Optional: small-screen fine tuning */
@media (max-width: 420px) {
    td.disablestarts div.day-number,
    td.disablestarts div.day-numb,
    td.disableends div.day-number,
    td.disableends div.day-numb {
        padding-top: 6px;
    }
    td.disablestarts div.day-number .p-date,
    td.disablestarts div.day-numb .p-date,
    td.disableends div.day-number .p-date,
    td.disableends div.day-numb .p-date {
        font-size: 14px;
    }
    td.disablestarts div.day-number .p-rate,
    td.disablestarts div.day-numb .p-rate,
    td.disableends div.day-number .p-rate,
    td.disableends div.day-numb .p-rate {
        font-size: 9px;
    }
}

.cal_expl {
	width: 100%;
	margin-top: 5px;
}
.cal_expl_wrapper{
	width: 25%;
	float: left;

}
.cal_def {
	width: 100%;
	float: left;
	color: var(--color-headers);;
}
.cal_expl .day-number {
	border-bottom: 2px solid #fff !important;
	border-right: 2px solid white;
	background-color: var(--color-primary);;
	border-radius: 5px;
	width: 50px;
	height: 50px;
	float: left;
}
.cal_expl .disable {
	background: repeating-linear-gradient(-45deg,#fff,#fff 2px,#eee 2px,#eee 4px);
	border-radius: 5px;
	width: 50px;
	height: 50px;
	float: left;

}
.cal_expl_wrapper  .disablestarts{
	border-radius: 5px;
	width: 50px;
	height: 50px;
	float: left;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary) 50%, var(--color-headers) 51%, var(--color-headers) 100%);
	border-radius: 5px;
/*	
	background: #fff;
background: -moz-linear-gradient(-45deg, #fff 0%, #fff 50%, var(--color-headers) 51%, var(--color-headers) 100%);
background: -webkit-gradient(linear, left top, right bottom, 
    color-stop(0%, #fff), 
    color-stop(50%, #fff), 
    color-stop(51%, var(--color-headers)), 
    color-stop(100%, var(--color-headers))
);
background: -webkit-linear-gradient(-45deg, #fff 0%, #fff 50%, var(--color-headers) 51%, var(--color-headers) 100%);
background: -o-linear-gradient(-45deg, #fff 0%, #fff 50%, var(--color-headers) 51%, var(--color-headers) 100%);
background: -ms-linear-gradient(-45deg, #fff 0%, #fff 50%, var(--color-headers) 51%, var(--color-headers) 100%);
background: linear-gradient(135deg, #67a2ae 0%, #67a2ae 50%, var(--color-headers) 51%, var(--color-headers) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#67a2ae', GradientType=1);
border-radius: 5px;*/
}
.cal_expl  .disableends{
	border-radius: 5px;
	width: 50px;
	height: 50px;
	float: left;
/*	background: var(--color-headers);
	background: -moz-linear-gradient(-45deg, var(--color-headers) 0%, var(--color-headers) 50%, #fff 51%, #fff 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, var(--color-headers)), color-stop(50%, var(--color-headers)), color-stop(51%, #fff), color-stop(100%, #fff));
	background: -webkit-linear-gradient(-45deg, var(--color-headers) 0%, var(--color-headers) 50%, #fff 51%, #fff 100%);
	background: -o-linear-gradient(-45deg, var(--color-headers) 0%, var(--color-headers) 50%, #fff 51%, #fff 100%);
	background: -ms-linear-gradient(-45deg, var(--color-headers) 0%, var(--color-headers) 50%, #fff 51%, #fff 100%);
	background: linear-gradient(135deg, var(--color-headers) 0%, var(--color-headers) 50%, #67a2ae 51%, #67a2ae 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#67a2ae', endColorstr='#fff', GradientType=1);
	border-radius: 5px;*/
	background: linear-gradient(135deg, var(--color-headers) 0%, var(--color-headers) 50%, var(--color-primary) 51%, var(--color-primary) 100%);
	border-radius: 5px;
}
#villa_calendar .col-md-12 {
  width: 100%;
  padding: 0 !important;
}

  

		  	table.calendar {
				/* margin- */
				border-collapse: unset !important;
			}
			

	  		div.day-number
			{
				background:inherit;
				margin: auto;
				text-align: center;
			}


			/* td.disable  div.day-number */
td.disable {
	background: repeating-linear-gradient(-45deg,#fff,#fff 2px,#eee 2px,#eee 4px);

}

p.p-date {
	margin-bottom: 0;
	color: white;
	font-size: 16px;
	font-weight: 600;
}
.disable .p-date {
	color: #969696 !important;
}

p.p-rate {
	font-size: 10px;
	position: absolute;
	text-align: center;
	color: white;
	width: 100%;
	float: left;
	font-weight: 400;
}
.disable .p-rate {
	display: none;
}
.calendar-day.disablestarts .p-rate {
	display: none;
}

.buttons {
	width: 100%;
	float: left;
	padding-top: 5%;
	text-align: center;
	padding-bottom: 5%;
}
.eachvilla {
	margin-bottom: 1%;
	border-radius: 5px;
}
@media only screen and (min-width : 100px) and (max-width : 869px){
.eachvilla.inactive {
	width: 47%;
	float: left;
	background-color: var(--color-headers);;
	height: auto;
	margin-right: 3%;
/*	line-height: 30px;*/
}
.eachvilla.active {
	width: 47%;
	float: left;
	background-color: var(--color-headers_dark);;
	margin-right: 3%;
	height: auto;
/*	line-height: 30px;*/
}
	
}
@media (min-width: 870px) {
.eachvilla.inactive {
	width: 30%;
	float: left;
	background-color: var(--color-headers);;
	height: auto;
	margin-right: 3.3%;
/*	line-height: 30px;*/
}
.eachvilla.active {
	width: 30%;
	float: left;
	background-color: var(--color-headers_dark);;
	margin-right: 3.3%;
	height: auto;
/*	line-height: 30px;*/
}
}

.eachvilla.inactive a {
	color: white;
	text-decoration: none;
	/* background-color: rebeccapurple; */
	cursor: pointer;
/*	line-height: 30px;*/
	margin: 0;
	width: 100%;
	display: inline-block;
	padding: 4%;
}
.eachvilla.active a {
	color: white;
	text-decoration: none;
	/* background-color: rebeccapurple; */
	cursor: pointer;
	margin: 0;
	width: 100%;
	display: inline-block;
	padding: 4%;
}

.eachvilla.active a:hover{

	background-color: var(--color-headers);;
		border-radius: 5px;

}
.rates_header {
	width: 100%;
	float: left;
	text-align: center;
	font-size: 40px;
	font-weight: 100;
	margin-bottom: 5%;
	margin-top: 4%;
}
.table_rates {
	width: 100%;
	display: table;
	border-spacing: 0px;
	font-weight: 300;
}
.table_rates:nth-of-type(2n+1) {
	background-color: #c8c9cb;
}
.cell_wrapper {
  display: table-row;
  width: 100%;

}
.cell_wrapper:nth-of-type(2n+1) {
	background-color:var(--color-accent);
	color: white;
}
.odd_wrapper {
  display: table;
  width: 100%;
  /*! text-align: center; */
  table-layout: fixed;
  border-collapse: collapse;
}
.range_header {
	background-color: var(--color-headers_dark);
	font-size: 25px;
}
.odd, .range_header {
	display: table-row;
	width: 100%;
	padding: 5%;
	border-bottom: solid 1px eacea7;
	/* background-color: green; */
}
.from {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	word-wrap: break-word;
	padding: 1%;
	border-right: solid 1px var(--color-headers_dark);
}
.to {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	border-right: solid 1px var(--color-headers_dark);
}
.table_rates .rate, .rate {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
.shownextyear, .hidenextyear {
	cursor: pointer;
	text-align: center;
	padding: 1%;
}
.newrates_wait_gif {
	width: 100%;
	float: left;
	text-align: center;
}
.ncswrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 10px auto;
	width: 100%;
}

/* NCS container and buttons */
.ncs {
    display: flex;
    align-items: center;
    max-width: 150px;
    margin-top: 5px;
}

.ncs-btn {
    width: 35px;
    height: 35px;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid #ccc;
    background-color: #f7f7f7;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ncs input {
    width: 50px;
    height: 35px;
    margin: 0 5px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;

    /* hide default arrows */
    -moz-appearance: textfield; /* Firefox */
}

.ncs input::-webkit-outer-spin-button,
.ncs input::-webkit-inner-spin-button {
    -webkit-appearance: none; /* Chrome, Safari, Edge */
    margin: 0;
}
.carousel-container { max-width:1000px; margin:40px auto; overflow:hidden; background:#fff; border-radius:12px; box-shadow:0 6px 18px rgba(0,0,0,0.08); }
	.carousel-track { display:flex; transition:transform 0.5s ease-in-out; }
	.review-card { flex:0 0 33.333%; box-sizing:border-box; padding:20px; border-right:1px solid #eee; }
	.review-card:last-child { border-right:none; }
	.review-header { display:flex; align-items:center; gap:12px; }
	.avatar { width:40px; height:40px; border-radius:50%; background:#0077cc; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:bold; font-size:16px; flex-shrink:0; }
	.review-date { font-size:12px; color:#777; }
	.review-country { font-size:12px; color:#333; margin-top:4px; }
	.review-country img { vertical-align:middle; margin-right:6px; }
	.stars { margin-top:6px; font-size:16px; }
	.star { font-size:18px; margin-right:2px; }
	.star.filled { color:var(--color-secondary);}
	.star.empty { color:#ccc; }
	.review-text { margin-top:10px; font-size:14px; line-height:1.5; }
	.criteria { margin-top:10px; font-size:13px; }
	.criteria div { margin:2px 0; }
	.controls { text-align:center; margin-top:15px; }
	.controls button {width: 15%; background:var(--color-primary); color:#fff; border:none; padding:10px 20px; margin:0 5px; border-radius:4px; cursor:pointer; }
	.controls button:hover { background:var(--color-secondary); }
	.totalscore { text-align:center; margin:20px auto; font-size:16px; }

.spinner-overlay {
	  position: fixed;
	  top:0; left:0; right:0; bottom:0;
	  background: rgba(255,255,255,0.8);
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  justify-content: center;
	  z-index: 9999;
	  font-family: Arial, sans-serif;
	}

	.spinner {
	  width: 60px;
	  height: 60px;
	  border: 6px solid #ccc;
	  border-top: 6px solid var(--color-primary);;
	  border-radius: 50%;
	  animation: spin 1s linear infinite;
	  margin-bottom: 12px;
	}

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

	.spinner-overlay p {
	  font-size: 14px;
	  color: #333;
	}

	#map_canvas {
	width: 100%;
	height: 650px;
	}
	#directions-box {
	position: absolute;
	top: 5%;
	left: 10px;
	z-index: 999;
	background: rgba(255,255,255,0.9);
	padding: 10px 15px;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.3);
	font-family: Arial, sans-serif;
	font-size: 14px;
	margin-top: 5%;
	width: auto;
	}

	#directions-box a {
	color: #1a73e8;
	text-decoration: none;
	font-weight: bold;
	}

	#directions-box a:hover {
	text-decoration: underline;
	}
.transaction-response.success {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #2ecc71; /* green circle */
  position: relative;
}

.transaction-response.success::before {
  content: '';
  position: absolute;
  left: 28%;
  top: 45%;
  width: 20%;
  height: 6px;
  background: #fff;
  transform: rotate(45deg);
}

.transaction-response.success::after {
  content: '';
  position: absolute;
  left: 40%;
  top: 35%;
  width: 40%;
  height: 6px;
  background: #fff;
  transform: rotate(-45deg);
}
.transaction-response.failed {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #e74c3c; /* red circle */
  position: relative;
}

.transaction-response.failed::before,
.transaction-response.failed::after {
  content: '';
  position: absolute;
  top: 45%;
  left: 20%;
  width: 60%;
  height: 6px;
  background: #fff;
  transform: rotate(45deg);
}

.transaction-response.failed::after {
  transform: rotate(-45deg);
}
#booking_summary {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 2px solid var(--color-primary);
    padding: 15px 50px 15px 15px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
	height: auto;       /* dynamic height */
    max-height: 100%;      /* allow full height */
    overflow: visible;     /* remove scroll */
}

#booking_summary_content {
    overflow: visible;     /* make content expand fully */
}
.booking-header {
  background: var(--color-secondary);
  color: #fff;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.booking-header .guests {
  background: #ffffff;
  color: var(--color-primary);
  padding: 4px 10px;
  border-radius: 4px;
}
#booking_summary {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    background: #ffffff;
    border-top: 2px solid var(--color-primary);

    padding: 20px 60px 20px 20px;

    z-index: 9999;

    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);

    backdrop-filter: blur(10px);
}

#booking_summary_content {
    width: 100%;
}

#booking_summary_close {
    position: absolute;
    top: 12px;
    right: 15px;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    background: transparent;

    font-size: 30px;
    line-height: 1;

    color: var(--color-text);

    cursor: pointer;

    transition: var(--transition);
}

#booking_summary_close:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

@media (max-width: 768px) {

    #booking_summary {
        padding: 18px 50px 18px 15px;
    }

    #booking_summary_close {
        top: 10px;
        right: 10px;
    }
}
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

/* =========================
   Booking Header
========================= */
.booking-header {
    grid-column: 1 / -1;
    display: inline-block;
    width: 100%;

    background: var(--color-primary);
    color: var(--color-white);

    padding: 14px 18px;

    border-radius: 10px;

    font-size: 15px;
    font-weight: 600;

    margin-bottom: 12px;

    box-shadow: var(--shadow);
}

.booking-header .dates,
.booking-header .guests {
    display: inline;
    margin-right: 10px;
}

/* =========================
   Room Cards Row
========================= */
.room-cards-row {
    display: flex;
    flex-wrap: nowrap;

    overflow-x: auto;

    gap: 14px;

    padding-bottom: 10px;

    scroll-behavior: smooth;
}

.room-cards-row::-webkit-scrollbar {
    height: 6px;
}

.room-cards-row::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 20px;
}

/* =========================
   Room Card
========================= */
.room-card {
    flex: 0 0 auto;

    width: 260px;

    padding: 16px;

    background: var(--color-white);

    border: 1px solid rgba(0,0,0,0.08);

    border-radius: 14px;

    box-shadow: var(--shadow);

    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* Cheapest Room */
.room-card.cheapest {
    border: 2px solid var(--color-accent);
    background: linear-gradient(
        180deg,
        #fffdf9 0%,
        var(--color-cream) 100%
    );
}

/* =========================
   Room Type Title
========================= */
.roomtype-title {
    font-size: 16px;
    margin-bottom: 8px;

    font-weight: 700;

    color: var(--color-headers_dark);
}

/* =========================
   Card Headings
========================= */
.room-card h4 {
    font-size: 15px;
    margin: 0 0 6px;

    color: var(--color-text);
}

/* =========================
   Text
========================= */
.room-card p {
    margin: 5px 0;
    color: var(--color-text-light);
}

.room-card small {
    color: var(--color-text-muted);
}

/* =========================
   Badge
========================= */
.room-card .badge {
    justify-self: start;

    margin-bottom: 8px;

    background: var(--color-accent);
    color: var(--color-white);

    padding: 4px 10px;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 600;
}

/* =========================
   Booking Button
========================= */
.room-card .btn-book {
    margin-top: auto;

    width: 100%;

    padding: 10px 14px;

    border: none;

    border-radius: 10px;

    background: var(--color-primary);

    color: var(--color-white);

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: var(--transition);
}

.room-card .btn-book:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
}

/* =========================
   Price Section
========================= */
.room-price {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 10px;
}

/* Original Price */
.price-original {
    text-decoration: line-through;

    color: var(--color-text-muted);

    font-size: 14px;
}

/* Final Price */
.price-final {
    font-size: 20px;
    font-weight: 700;

    color: var(--color-accent-dark);
}

/* Discount Badge */
.discount-badge {
    background: var(--color-accent-dark);

    color: var(--color-white);

    font-size: 12px;
    font-weight: 600;

    padding: 4px 8px;

    border-radius: 20px;
}
.calendar-day { cursor:pointer; }
.calendar-day.disabled,
.calendar-day.disable,
.calendar-day.disablestarts,
.calendar-day.disableends {
    pointer-events:none;
    opacity:0.4;
}

.calendar-day.selected-start,
.calendar-day.selected-end {
    background:var(--color-primarysecond);
    color:#fff;
}

.calendar-day.in-range {
    background:var(--color-secondary);
}
