:root {
    --primary-color: #0a2a24;
    --accent-color: #c5a059;
    --bg-light: #fdfcf0;
    --text-dark: #1a1a1a;
    --text-muted: #555;
    --text-light: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 100px;

}


.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-blur {
    opacity: 0;
    filter: blur(15px);
    transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible,
.reveal-blur.visible {
    opacity: 1;
    transform: translate(0) scale(1);
    filter: blur(0);
}


.image-reveal {
    position: relative;
    overflow: hidden;
}

.image-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateX(0);
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.image-reveal.visible::after {
    transform: translateX(101%);
}

.image-reveal img {
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.5s ease 0.4s, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
}

.image-reveal.visible img {
    opacity: 1;
    transform: scale(1);
}


.reveal-stagger>* {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-stagger.visible>* {
    opacity: 1;
    transform: translateY(0);
}


.reveal-stagger.visible>*:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-stagger.visible>*:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-stagger.visible>*:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-stagger.visible>*:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-stagger.visible>*:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal-stagger.visible>*:nth-child(6) {
    transition-delay: 0.6s;
}

.reveal-stagger.visible>*:nth-child(7) {
    transition-delay: 0.7s;
}

.reveal-stagger.visible>*:nth-child(8) {
    transition-delay: 0.8s;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mobile-only {
    display: none;
}


.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: #00bfa5;

    color: white;
}

.btn-solid {
    background-color: #00bfa5;
    color: white;
}

.btn-outline {
    border: 1.5px solid white;
    color: white;
}

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(10, 42, 36, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    line-height: 1;
}

.logo-text span {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
}

.logo-text strong {
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.nav-links a.active,
.nav-links a:hover {
    color: white;
}


.mobile-nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}


.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 42, 36, 0.6);

    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-badge .line {
    width: 40px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);

}

.section-badge .badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);

}

.hero-title {
    font-family: var(--font-body);
    font-size: 6rem;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 2rem;
    color: white;
}

.hero-title .sage {
    color: #9cb3a8;

}

.hero-description {
    font-size: 1.1rem;
    max-width: 450px;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn-solid.open-modal {
    background-color: #1e707a;

    border-radius: 2px;
}


.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    width: 100%;
    margin-top: 4rem;
}

.stat-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}


.accommodations {
    padding: 10rem 0;
}

.section-header {
    max-width: 600px;
    margin-bottom: 5rem;
}

.section-title {
    font-family: var(--font-body);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-description {
    color: var(--text-muted);
}

.room-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.room-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;

    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.room-image {
    height: 100%;
    overflow: hidden;

}

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

}

.room-card:hover .room-image img {
    transform: scale(1.2);
}

.room-details {
    padding: 4rem;
    display: flex;
    flex-direction: column;
}

.room-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.room-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.room-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.room-meta {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.meta-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.meta-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    opacity: 0.6;
}

.meta-value {
    font-weight: 600;
    font-size: 0.9rem;
}

.room-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.price-value {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}


.experiences {
    background-color: var(--primary-color);
    padding: 10rem 0;
    color: white;
    width: 100%;
}

.experiences.full-width {
    padding: 10rem 0;
}

.centered {
    text-align: center;
    max-width: 800px !important;
    margin: 0 auto 6rem auto;
}

.centered .section-badge {
    justify-content: center;
}

.line.light {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

.section-badge.light .badge-text {
    color: white;
    opacity: 0.9;
}

.section-title.light {
    color: white;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.exp-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 4px;

}

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

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

.exp-card:hover .exp-image img {
    transform: scale(1.05);
}

.exp-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.exp-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 2;
}

.exp-category {
    font-size: 0.7rem;
    font-weight: 700;
    color: #4dd0e1;

    margin-bottom: 0.8rem;
    display: block;
    letter-spacing: 0.1em;
}

.exp-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-family: var(--font-body);
    color: white;
}

.exp-text {
    font-size: 0.95rem;
    opacity: 0.8;
    max-width: 480px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}


.gallery {
    padding: 10rem 0;
    background-color: #f7f3ed;

}

.gallery-title {
    font-family: var(--font-body);
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.gallery-title .light {
    color: #9cb3a8;

    font-weight: 500;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 2px;
}

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

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

.gallery-item.tall {
    height: 700px;
}

.gallery-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-item.horizontal {
    height: 342.5px;

}


.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 8rem 0 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 6rem;
}

.brand-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.newsletter-form {
    display: flex;
    max-width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem 1.2rem;
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    color: #4dd0e1;
    padding: 0 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-info-list li {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-links a {
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #4dd0e1;
}

.footer-contact .contact-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.footer-contact i {
    color: #4dd0e1;
    font-size: 1.1rem;
    margin-top: 0.3rem;
}

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: white;
    font-weight: 500;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: #4dd0e1;
}

.footer-bottom {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}


.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 42, 36, 0.98);
    backdrop-filter: blur(15px);
    overflow: hidden;

    padding: 0;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.4s ease;
}

.modal-content {
    background-color: white;
    width: 100%;
    max-width: 1100px;
    margin: 0;
    position: relative;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}


#reservationModal .modal-content {
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: 0;
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-color);
    z-index: 10;
    transition: var(--transition);
}

.close-modal:hover {
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    height: 100%;
    width: 100%;
}

.modal-left {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-left .badge {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    opacity: 0.6;
    margin-bottom: 1rem;
    display: block;
}

.modal-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.modal-title .highlight {
    color: #9cb3a8;
}

.modal-left .line.tiny {
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
}

.modal-desc {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.modal-features {
    list-style: none;
}

.modal-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.modal-features i {
    color: #9cb3a8;
    font-size: 0.8rem;
}

.modal-right {
    padding: 3rem 6rem;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;

}

.form-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.form-title .light {
    color: #9cb3a8;
    font-weight: 500;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.6;
}

.input-wrapper {
    position: relative;
    border-bottom: 1px solid #ddd;
    transition: var(--transition);
}

.input-wrapper:focus-within {
    border-bottom-color: var(--primary-color);
}

.input-wrapper i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 0.9rem;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 0.6rem 0 0.6rem 2rem;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: transparent;
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.btn-submit {
    margin-top: 1.5rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.9rem;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: #0d362e;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.status-modal-content {
    max-width: 700px;
    height: auto;
    max-height: 90vh;
    border-radius: 8px;
    overflow-y: auto;
}

.status-container {
    padding: 1rem;
}

.status-search-area {
    margin-top: 2rem;
    text-align: center;
}

.status-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.search-box {
    display: flex;
    max-width: 450px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    padding: 1rem;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 1rem;
}

.btn-check {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

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

.status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.status-receipt {
    border-left-color: #00bfa5;
    background: #f0fdf9;
}

.status-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e0f2f1;
    color: #00897b;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 1.5rem;
}

.status-tag i {
    font-size: 0.5rem;
}

.status-error {
    text-align: center;
    padding: 2rem 0;
    color: #d32f2f;
}

.status-error i {
    font-size: 3rem;
    margin-bottom: 1rem;
}


.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 5px solid var(--accent-color);
    z-index: 9999;
    min-width: 320px;
    animation: slideInRight 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-icon {
    font-size: 2rem;
    color: #25d366;
}

.toast-body strong {
    display: block;
    color: var(--primary-color);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.toast-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.fade-out {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.highlight-text {
    color: #c5a059 !important;
    font-weight: 700 !important;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.success-content {
    text-align: center;
    padding: 2rem 0;
    animation: fadeIn 0.6s ease;
}

.success-icon {
    font-size: 5rem;
    color: #00bfa5;
    margin-bottom: 2rem;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.booking-receipt {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
    border-left: 4px solid var(--primary-color);
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.receipt-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
}

.receipt-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.highlight-receipt {
    color: var(--accent-color);
    letter-spacing: 0.1em;
}

.receipt-divider {
    height: 1px;
    background: #eee;
    margin: 1.5rem 0;
}

.receipt-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.receipt-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.detail-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.detail-value {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.receipt-actions {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    padding-top: 2rem;
    border-top: 1px dashed #efe8d0;
}

.receipt-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    border-radius: 4px;
}


.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 42, 36, 0.98);

    backdrop-filter: blur(15px);
    display: none;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.5s ease;
}

.loader-content {
    text-align: center;
    animation: slideUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.luxury-loader {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(197, 160, 89, 0.1);
    border-top: 2px solid var(--accent-color);
    border-radius: 50%;
    margin: 0 auto 2rem auto;
    animation: spin 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.1);
}

.loader-text {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: var(--accent-color);
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}



@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .section-badge {
        justify-content: center;
    }

    .hero-description {
        margin: 0 auto 3rem auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 auto;
    }

    .stat-card {
        padding: 1.5rem;
        min-width: 150px;
    }

    .exp-card {
        height: 380px;
    }

    .gallery-item.tall {
        height: 500px;
    }

    .gallery-item.horizontal {
        height: 242.5px;
    }

    .room-card,
    .room-card.reverse {
        grid-template-columns: 1fr;
    }

    .room-card.reverse .room-image {
        order: -1;
    }

    .room-details {
        padding: 3rem;
    }

    .btn.btn-primary.open-modal {
        padding: 0.6rem 1.2rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--primary-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .mobile-nav-toggle {
        display: block;
        z-index: 1000;
        margin-left: auto;
    }

    header .btn-primary {
        display: none;
        /* Hide the large button in header on mobile to avoid clutter */
    }

    .mobile-nav-toggle.active i::before {
        content: "\f00d";
    }

    header .btn-primary {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .stat-card {
        padding: 1rem;
        min-height: auto;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .room-details {
        padding: 2rem 1.5rem;
    }

    .room-name {
        font-size: 2rem;
    }

    .room-meta {
        flex-direction: column;
        gap: 1.2rem;
        padding-top: 1.5rem;
    }

    .room-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .room-footer .btn {
        width: 100%;
        justify-content: center;
    }

    .experiences-grid {
        grid-template-columns: 1fr;
    }

    .exp-card {
        height: 350px;
    }

    .exp-content {
        padding: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-title {
        font-size: 2.8rem;
    }

    .gallery-item.tall,
    .gallery-item.horizontal {
        height: 400px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-bottom: 4rem;
    }

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

    .newsletter-form {
        margin: 0 auto;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-contact .contact-item {
        justify-content: center;
    }

    .modal {
        overflow-y: auto;
        display: none !important;
        /* Force hidden state on load */
        padding: 1rem;
        align-items: flex-start;
    }

    /* Shown state controlled by JS style.display */

    .modal-body {
        grid-template-columns: 1fr;
        height: auto;
    }

    .modal-left {
        display: none;
    }

    .modal-content {
        width: 95% !important;
        max-width: 450px !important;
        margin: 2rem auto;
        height: auto;
        min-height: auto;
        border-radius: 8px;
        overflow: hidden;
    }

    #reservationModal .modal-content {
        width: 95% !important;
        height: auto;
        min-height: auto;
    }

    .modal-right {
        padding: 2.5rem 1.5rem;
        height: auto;
    }

    .form-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.7rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .section-title {
        font-size: 2.22rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* FINAL MOBILE FIXES */
@media (max-width: 480px) {
    .modal { display: none !important; visibility: hidden; }
    .hero-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 0.5rem !important; }
    .stat-card { padding: 0.5rem !important; }
    .stat-number { font-size: 1.2rem !important; }
    .stat-label { font-size: 0.5rem !important; }
    .room-details { padding: 1rem !important; }
    .room-meta { flex-direction: column !important; gap: 0.5rem !important; }
    .room-footer { flex-direction: column !important; align-items: stretch !important; gap: 1rem !important; }
    .room-footer .btn { width: 100% !important; }
    .gallery-title { font-size: 2rem !important; }
    .footer-top { grid-template-columns: 1fr !important; text-align: center !important; }
    * { max-width: 100vw !important; box-sizing: border-box !important; }
}