@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #000;
    background-attachment: fixed;
    color: #fff;
    overflow-x: hidden;
    padding: 0;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    /* Vignette Fade / Gradient Mask */
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

/* 360 Viewer Container */
#panorama {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /* Viewer is behind everything */
}

/* Glassmorphism Card Overlay */
.overlay-ui {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;

    background: rgba(255, 255, 255, 0.05);
    /* Slightly transparent */
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.125);

    padding: 40px;
    border-radius: 20px;
    text-align: center;
    width: 90%;
    max-width: 400px;

    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.3s ease;
}

/* Typography Gradient */
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ffffff, #a8c0ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
}

/* Buttons */
.btn-book {
    display: inline-block;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    z-index: 101;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

/* Hotspots */
.custom-hotspot {
    height: 30px;
    width: 30px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: transform 0.3s;
}

.custom-hotspot:hover {
    transform: scale(1.2);
}

.hotspot-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    pointer-events: none;
    transform: translate(-50%, -40px);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
}

.custom-hotspot:hover .hotspot-tooltip {
    opacity: 1;
}


/* Calendar Section Wrapper */
#calendar-section {
    position: relative;
    z-index: 10;
    /* Above Panorama */
    padding: 60px 20px 100px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background removed to allow global body background */
}

#calendar-section>* {
    pointer-events: auto;
    /* Re-enable clicks on content */
}

/* Calendar Wrapper (Container for wizard) */
.calendar-wrapper {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.booking-section {
    position: relative;
    z-index: 50;
    padding-top: 50px;
}