/* Remove list marker from footer links */
footer ul, footer li {
    list-style: none;
}
footer ul li::marker {
    display: none;
}
/* Floating home button pinned to bottom right */
.floating-home-btn {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 9999;
  background: rgba(116, 116, 116, 0.1);
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 16px;
  text-align: center;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.floating-home-btn i.fas.fa-home {
  font-size: 2em;
  color: #000000;
  opacity: 0.2;
  transition: color 0.2s, opacity 0.2s;
}
.floating-home-btn:hover {
  background: rgba(44, 44, 44, 0.32);
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}
.floating-home-btn:hover i.fas.fa-home {
  color: #222;
  opacity: 1;
}
/* Home link button for location pages */
.home-link {
  display: inline-block;
  margin-right: 18px;
  text-decoration: none;
  transition: color 0.2s;
  vertical-align: middle;
}
.home-link i.fas.fa-home {
  font-size: 1.6em;
  color: #667eea;
  vertical-align: middle;
}
.home-link:hover i.fas.fa-home {
  color: #222;
}
body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0px;
            background-color: white;
            overflow-x: hidden;
        }

        .container {
            max-width: 900px;
            margin: 0px auto;
            padding-bottom: 10px;
        }

        h1 {
            color: #121212;
            font-family: nyt-cheltenham;
            font-size: 30px;
            font-weight: 200;
            line-height: 58px;
            margin: 0px auto 9.6px; /* Centered margin */
            text-align: center;
        }

        h2 {
            font-size: 1.8em;
            margin: 1em 0;
            color: #333;
            font-family: nyt-cheltenham;
            text-align: center;
        }

        h3 {
            font-size: 1.5em;
            margin: 0.5em 0;
            color: #555;
            font-family: nyt-cheltenham;
            text-align: center;
        }

        .panorama {
            width: 100%;
            height: 600px;
            min-height: 600px;
            margin: 0px auto;
            border: 0px solid #ccc;
            position: relative; /* Needed for absolute positioning of button */
            overflow: hidden; /* Hide any overflow from animations */
            /* Removed transition for zoom effect */
        }

        /* Subtle hover effect to hint at interactivity */
        .panorama:hover {
            /* Removed transform: scale(1.01); to disable zoom */
            cursor: grab;
        }

        /* Auto-rotation animation class - rotation handled by JavaScript */

        /* Pulse animation for when panorama comes into view */
        .panorama.in-view {
            animation: panoramaPulse 2s ease-in-out;
        }

        @keyframes panoramaPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.005); }
            100% { transform: scale(1); }
        }

        /* Bottom-right tour button overlay for panos */
        .pano-tour-btn {
            position: absolute;
            bottom: 10px;
            right: 10px;
            z-index: 10;
            background: rgba(255,255,255,0.35);
            color: #333;
            border: none;
            border-radius: 16px;
            padding: 6px 14px 6px 12px;
            font-size: 15px;
            font-family: nyt-cheltenham, Arial, sans-serif;
            cursor: pointer;
            box-shadow: none;
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
            font-weight: 400;
            letter-spacing: 0.01em;
            opacity: 0.65;
        }
        .pano-tour-btn i {
            font-size: 13px;
            color: #333;
            opacity: 0.6;
        }
        .pano-tour-btn:hover {
            background: rgba(255,255,255,0.85);
            color: #000;
            opacity: 1;
        }
        .pano-tour-btn:hover i {
            color: #000;
            opacity: 1;
        }

        .content {
            margin-bottom: 20px;
            text-align: left;
            color: #363636;
            font-family: nyt-imperial;
            font-size: 20px;
            line-height: 30px;
            margin: 0 auto 15px;
            width: 600px; /* Set back to 600px */
        }

        .description {
            color: grey;
            font-size: 12px; /* Small font size */
            text-align: left;
            margin-top: 5px; /* Space between panorama and description */
        }

        .socials {
            position: sticky;
            top: 0; /* Sticks to the top of the viewport */
            z-index: 1000; /* Ensures it stays above other content */
            width: 100%;
            height: 8ch;
            padding-top: 10px;
            padding-bottom: 20px;
            text-align: center;
            display: flex; /* Use flexbox for alignment */
            justify-content: center; /* Center the items */
            align-items: center; /* Align items vertically */
            background-color: white;
        }

        .socials img {
            max-width: 120px; /* Further increased logo size */
            height: auto; /* Maintain aspect ratio */
            margin-right: 25px; /* Slightly more space between logo and CTAs */
            display: block; /* Ensure logo is visible */
        }

        .socials a {
            color: rgb(0, 0, 0);
            margin: 0 15px;
            font-size: 14px;
            text-decoration: none;
            display: inline-block; /* Ensure they are inline */
        }

        .header-section {
            display: flex;
            height: 100vh;
            background-color: white;
        }

        .header-logo {
            width: 200px;
            top: 100px;
        }

        .header-text {
            flex: 0 0 25%; /* Occupy 1/4 of the header */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            line-height: 1px;
        }

        .header-text h3 {
            padding-bottom: 20px;
        }

        .header-panorama {
            flex: 0 0 75%; /* Occupy 3/4 of the header */
            margin: 0;
        }

        .discover-more {
            margin: 20px 0;
            text-align: center;
            font-size: 16pt;
        }

        .tour {
            margin: 20px 0;
        }

        .hr1 {
            border-right: 0px;
            border-bottom: 0px;
            border-left: 0px;
            border-image: initial;
            border-top: 1px solid var(--color-stroke-quaternary, #DFDFDF);
            margin: 1rem auto;
            width: 600px;
        }

        .hr2 {
            border-right: 0px;
            border-bottom: 0px;
            border-left: 0px;
            border-image: initial;
            border-top: 2px solid var(--color-stroke-quaternary, black);
            margin: 1rem auto;
            width: 600px;
        }

        .hr3 {
            border-right: 0px;
            border-bottom: 0px;
            border-left: 0px;
            border-image: initial;
            border-top: 1px solid var(--color-stroke-quaternary, #DFDFDF);
            margin: 1rem auto;
            width: 100%;
        }

        .discover-more ul {
            padding-top: 0px;
            list-style-position: inside;
            list-style-type: none;
        }

        .discover-more li {
            margin: 10px 0; /* Adjust margin to reduce spacing */
            text-align: center;
        }

        .tour-button {
            background-color: transparent;
            color: darkmagenta;
            border: none;
            padding: 10px 0px;
            margin: 0px;
            cursor: pointer;
            font-size: 20px;
            transition: background-color 0.3s;
            text-decoration: none;
        }

        .tour-button:hover {
            color: grey;
        }

        .thumbnail-list {
            display: flex;
            justify-content: center;
            margin: 20px 0;
            padding-top: 10px;
            padding-bottom: 10px;
        }

        .thumbnail {
            width: 100px;
            height: 100px;
            margin: 0 10px;
            background-color: #f0f0f0; /* Placeholder color */
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative; /* Position relative for absolute positioning of description */
        }

        .thumbnail img {
            max-width: 100%;
            max-height: 100%;
        }

        .thumbnail .description {
            display: none; /* Hide description by default */
            position: absolute; /* Position it absolutely within the thumbnail */
            bottom: -20px; /* Position below the thumbnail */
            left: 0;
            right: 0;
            text-align: center;
            color: grey;
            font-size: 12px; /* Small font size */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .thumbnail:hover .description {
            display: block; /* Show description on hover */
        }

        /* New styles for call-to-action elements */
        .cta-container {
            margin-top: 0; /* Remove top margin */
            display: flex; /* Use flexbox for alignment */
            align-items: center; /* Center items vertically */
            gap: 15px; /* Space between elements */
        }

        .cta-button {
            padding: 12px 20px;
            font-size: 14px;
            cursor: pointer;
            background-color: white;
            color: #333;
            border: 2px solid #333;
            border-radius: 4px;
            transition: all 0.3s ease;
            text-decoration: none;
            font-family: nyt-cheltenham, Arial, sans-serif;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .cta-button:hover {
            background-color: #333;
            color: white;
        }

        .cta-button i {
            font-size: 16px;
            transform: translateY(-1px);
        }

        .cta-button.secondary {
            background-color: transparent;
            color: #333;
            border: 2px solid #333;
        }

        .cta-button.secondary:hover {
            background-color: #333;
            color: white;
        }

        .newsletter input[type="email"] {
            padding: 12px 15px;
            font-size: 14px;
            width: 220px;
            border: 2px solid #ddd;
            border-radius: 4px;
            font-family: Arial, sans-serif;
        }

        .newsletter input[type="email"]:focus {
            outline: none;
            border-color: #333;
        }

        .header-text img.db-logo {
            max-width: 60%;
            height: auto;
            margin-bottom: 20px;
        }
        /* Custom tooltip style */
        .custom-tooltip {
            background-color: white;
            color: black;
            font-family: nyt-cheltenham;
            text-align: center;
            padding: 5px 10px;
            border-radius: 0px;
            width: 200px;
            font-size: 14px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            display: none; /* Initially hidden */
            position: absolute;
            transform: translate(-50%, -100%);
        }

        /* Footer styles */
        footer {
            background-color: #f8f8f8;
            padding: 20px 0;
            text-align: center;
            color: #333;
            font-size: 14px;
        }

        footer a {
            color: #333;
            text-decoration: none;
            margin: 0 10px;
        }

        footer a:hover {
            text-decoration: underline;
        }

        .location-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
            max-width: 880px; /* 4 cards * 200px + 3*20px gap = 880px */
            margin-left: auto;
            margin-right: auto;
        }

        .location-card {
            flex: 0 0 200px;
            max-width: 200px;
            border: 1px solid #ddd;
            border-radius: 0px;
            overflow: hidden;
            text-align: center;
            text-decoration: none;
            color: #333;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .location-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .location-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        .location-card h3 {
            font-size: 1.2em;
            margin: 15px;
            font-family: nyt-cheltenham;
        }

        .location-card.disabled {
            pointer-events: none; /* Disable clicks */
            cursor: default;
        }

        .location-card.disabled img {
            filter: grayscale(100%); /* Grey out image */
            opacity: 0.6;
        }

        .location-card.disabled h3 {
            color: #999; /* Grey out text */
        }

@media (max-width: 768px) {
    .header-section {
        flex-direction: column;
        height: auto;
    }

    .header-text, .header-panorama {
        flex: 1 1 100%;
    }

    .content {
        width: 90%;
    }

    .thumbnail-list {
        flex-wrap: wrap;
    }

    .thumbnail {
        margin: 10px;
    }

    .socials {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
    }

    .socials img {
        margin-bottom: 15px;
    }

    .cta-container {
        flex-direction: column;
    }

    .cta-button {
        width: 80%;
        text-align: center;
        margin-bottom: 10px;
    }
}
