:root{
    --card-radius: 18px;
    --gap: 24px;
}
body{ 
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; 
    color:#222; 
}
a{
    text-decoration: none;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}
.flag {
    border-radius: 50%;
}
.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    border: none;
    color: #000;
    padding: 2px;
}
.calendar-day.today {
    border: 2px solid #111;
}
.hero{ 
    min-height: 90vh;
    position: relative; 
    background-size: cover; 
    background-position: center center; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 66px 20px 36px; 
}
.hero::before{ 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.65));
}
.card_text {
    font-size: 12px;
    font-weight: 400;
}
.logo-left{ 
    position:absolute; 
    left:18px; 
    top:20px; 
    z-index:3; 
}
.menu-right{ 
    position:absolute; 
    right:18px; 
    top:18px; 
    z-index:3; 
}
.hero .inner{ 
    position: relative; 
    z-index: 2; 
    text-align:center; 
    width:100%; 
    max-width:520px;
    display: flex;
    flex-direction: column;
    min-height: 60vh;
}
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay.active {
    display: flex;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.hero h1{ 
    font-weight:400; 
    color:#fff; 
    letter-spacing:1px; 
    margin-bottom:18px; 
    font-size:24px 
}
.header_text {
    font-size: 24px;
    font-weight: 400;
}
.btn-primary-ghost{ 
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    display: block;
    background: #fff;
    color: #000;
    padding: 12px 18px;
    border-radius: 30px;
    text-align: center;
    font-weight: 500;
}
.intro{
    align-items: center;
    padding:10px; 
    color:#6b6b6b; 
    text-align:center; 
    font-size:24px 
}
.card-img-block{ 
    margin: 10px 0; 
    margin-bottom: var(--gap); 
    border-radius: var(--card-radius); 
    overflow: hidden; 
    position: relative; 
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    width: 100%;
    height: 0;
    padding-top: 100%;
}
.card-img-block img{ 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    filter: brightness(40%);
    background: linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.85));
    z-index: 0; 
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    backface-visibility: hidden;
    transform: translateZ(0);
}
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    text-align: center;
    padding: 20px;
    pointer-events: none;
}
.card-overlay h3 {
    position: absolute;
    color: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 3;
    pointer-events: auto;
    font-size: 24px;
    font-weight: 400;
    width: 100%;
}
.card-overlay .explore-btn {
    position: absolute;
    left: 30%;
    transform: translateX(-50%);
    bottom: 16px;
    z-index: 3;
    pointer-events: auto;
    background: rgba(255,255,255,0.95);
    color: #111;
    border-radius: 30px;
    padding: 8px 28px;
    border: 0;
    width: 70%;
    height: 35px;
}

.explore-btn {
    position: absolute;
    left: 30%;
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: auto;
    background: rgba(255,255,255,0.95);
    color: #111;
    border-radius: 30px;
    padding: 8px 28px;
    border: 0;
    width: 70%;
    height: 35px;
}

.book-btn-wrap{ 
    /*padding: 6px 20px 16px;*/
}
.book-btn{ 
    width:100%; 
    max-width:720px; 
    margin:0 auto; 
    display:block; 
    background:#000; 
    color:#fff; 
    padding:12px 18px; 
    border-radius:30px; 
    text-align:center; 
    font-weight:500; 
}
.mobile-menu{
    position:fixed; 
    inset:0; 
    z-index:2000; 
    display:flex; 
    align-items:center; 
    justify-content:center; 
    background: #fff; 
    visibility:hidden; 
    opacity:0; 
    transition: opacity .28s ease, visibility .28s ease; 
}
.mobile-menu.open{ 
    visibility:visible; 
    opacity:1; 
}
.mobile-menu .menu-inner{ 
    width:100%; 
    max-width:720px; 
    padding:40px 24px; 
    box-sizing:border-box; 
    display:flex; 
    flex-direction:column; 
    align-items:center; 
}
.mobile-menu .close-btn{ 
    position:absolute; 
    right:20px; 
    top:18px; 
    background:transparent; 
    border:0; 
    font-size:34px; 
    line-height:1; 
    cursor:pointer; 
}
.mobile-menu .menu-list{ 
    display:flex; 
    flex-direction:column; 
    gap:36px; 
    margin-top:40px; 
    align-items:center; 
}
.mobile-menu .menu-list a{ 
    text-decoration:none; 
    color:#111; 
    font-size:36px; 
    font-weight:300; 
    letter-spacing:0.3px; 
}
.mobile-menu .menu-list a:focus{ 
    outline:2px solid #000; 
}
.mobile-menu .menu-cta{ 
    margin-top:46px;
    width: 100%;
}
.menu-cta .btn{ 
    background:#000; 
    color:#fff; 
    border-radius:40px; 
    padding:12px 48px;
    width: 70%;
}

.spam_text {
    size: 8px; 
    font-weight: 200; 
    color: #000; 
    text-align: center;
}
.block {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.block.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@media (max-width:420px){
    .mobile-menu .menu-list a{ 
        font-size:28px; 
    }
    .intro {
        height: 50vh;
    }
}
@media (min-width:768px){
    .hero{ 
        min-height:78vh 
    }
    .hero h1{ 
        font-size:40px 
    }
    .card-img-block{ 
        margin: 3%; 
        width: 94%; 
        height: 0;
        padding-top: 94%;
    }
    .intro {
        padding: auto;
        margin-top: 28px;
    }
}