/* ===== CSS Variables ===== */
/* Holiday Sands North Brand Colors */
:root {
    --primary: #003366;
    --primary-dark: #0E4170;
    --primary-light: #0099CC;
    --secondary: #86E5FF;
    --secondary-dark: #75C5E2;
    --accent: #0099CC;
    --accent-light: #D9FFFF;
    --text: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg: #ffffff;
    --bg-alt: #F0F0F0;
    --bg-light: #D9FFFF;
    --bg-dark: #003366;
    --border: #D0D1D1;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--primary-light);
}

ul {
    list-style: none;
}

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
}

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

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.section-title::before,
.section-title::after {
    content: '';
    flex: 1;
    max-width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-dark));
}

.section-title::after {
    background: linear-gradient(90deg, var(--secondary-dark), transparent);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Smaller headings use sans-serif for contrast */
h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

.btn-subtext {
    display: block;
    font-size: 0.8em;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 4px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-top {
    background: var(--primary-dark);
    color: var(--text-white);
    padding: 8px 0;
    font-size: 0.875rem;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
}

.utility-links {
    display: flex;
    gap: 16px;
}

.utility-link {
    color: var(--text-white);
    opacity: 0.9;
    font-weight: 500;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.utility-link:hover {
    opacity: 1;
    color: var(--secondary);
}

.contact-bar {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-bar a {
    color: var(--text-white);
    opacity: 0.9;
    white-space: nowrap;
    transition: color 0.5s ease, opacity 0.3s ease;
}

.contact-bar a:hover {
    opacity: 1;
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--text-white);
    opacity: 0.9;
    display: flex;
    align-items: center;
    transition: color 0.5s ease, opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

.main-nav {
    padding: 16px 0;
    transition: all 0.5s ease;
    background: var(--bg);
    position: relative;
    z-index: 2;
    transform: translateY(0);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}


.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* Mobile header info - hidden on desktop */
.mobile-header-info {
    display: none;
}

/* Nav menu title - hidden on desktop */
.nav-menu-title {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}

.nav-menu a:not(.nav-btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-menu a:not(.nav-btn):hover::after {
    width: 100%;
}

.nav-btn {
    background: var(--accent);
    color: var(--text-white) !important;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
}

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

.nav-faq {
    background: var(--primary);
    color: var(--text-white) !important;
    padding: 6px 14px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.8rem !important;
    letter-spacing: 0.5px;
    margin-right: 16px;
}

.nav-faq:hover {
    background: var(--primary-dark);
}

.nav-faq::after {
    display: none !important;
}

.nav-menu li:has(.nav-faq) {
    padding-right: 16px;
    border-right: 1px solid var(--border);
    margin-right: 8px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(10, 61, 92, 0.75) 0%, rgba(12, 74, 110, 0.8) 25%, rgba(20, 94, 142, 0.75) 75%, rgba(26, 122, 174, 0.7) 100%),
        url('images/header-bg.jpg') center/cover no-repeat;
    padding: 140px 20px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 0.5; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 100px,
            rgba(255, 255, 255, 0.02) 100px,
            rgba(255, 255, 255, 0.02) 101px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 100px,
            rgba(255, 255, 255, 0.02) 100px,
            rgba(255, 255, 255, 0.02) 101px
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero h1 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero > .hero-content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

/* ===== Reservation Widget ===== */
.reservation-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.reservation-widget {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    box-shadow: var(--shadow-lg);
}

.reservation-widget h2 {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
    color: var(--primary-dark);
    text-align: center;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    transition: var(--transition);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 50px;
    box-sizing: border-box;
    text-align: center;
}

.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-left: 40px;
    padding-right: 40px;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
}

/* Fix date input centering on mobile - hide default icon and use symmetric padding */
@media (max-width: 768px) {
    .form-group input[type="date"]::-webkit-calendar-picker-indicator {
        opacity: 0;
        width: 0;
        height: 0;
        margin: 0;
        padding: 0;
    }

    .form-group input[type="date"]::-webkit-date-and-time-value {
        text-align: center;
    }
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(12, 74, 110, 0.1);
}

.reservation-form .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.125rem;
    font-weight: 600;
}

/* ===== Sections ===== */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background: var(--bg-alt);
}

/* ===== Rooms Section ===== */
.view-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 4px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    flex: 1;
    padding: 12px 24px;
    background: transparent;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    border-radius: var(--radius);
    transition: var(--transition);
}

.toggle-btn.active {
    background: var(--primary);
    color: var(--text-white);
    box-shadow: var(--shadow);
}

.toggle-btn:hover:not(.active) {
    color: var(--primary);
}

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

.rooms-grid.active {
    display: grid;
    grid-auto-rows: 1fr;
}

.room-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.room-image {
    position: relative;
    height: 220px;
    background: var(--bg-alt);
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: var(--text-white);
    padding: 6px 12px;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.room-badge.street {
    background: var(--text-light);
}

.room-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.room-info > .btn {
    white-space: nowrap;
    margin-top: auto;
}

.room-info h3 {
    margin-bottom: 0.25rem;
    color: var(--primary-dark);
}

.tower-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.tower-tag.north {
    background: var(--primary);
    color: white;
}

.tower-tag.south {
    background: var(--accent);
    color: white;
}

.no-stove-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    background: #ff6b6b;
    color: white;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    align-self: flex-start;
}

.room-info > p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.room-features li {
    background: var(--bg-alt);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* View More Rooms */
.view-more-container {
    text-align: center;
    margin: 2rem 0;
}

.view-more-btn {
    min-width: 250px;
}

.more-rooms {
    display: none;
    margin-top: 1rem;
}

.more-rooms.show {
    display: grid;
}

/* ===== Amenities Section ===== */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 3rem;
}

.amenity-card {
    background: var(--bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.amenity-icon {
    color: var(--primary);
    margin-bottom: 1rem;
}

.amenity-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

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

.amenity-hours {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 48px 0 32px 0;
}

.hours-item {
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-light);
    padding: 12px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hours-item strong {
    color: var(--primary);
}

@media (max-width: 768px) {
    .amenity-hours {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

.building-info {
    background: var(--primary-dark);
    color: var(--text-white);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.building-info h3 {
    color: var(--text-white);
    text-align: center;
    margin-bottom: 1.5rem;
}

.building-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.info-item strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.info-item ul {
    list-style: disc;
    padding-left: 20px;
}

.info-item li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* ===== Dining Section ===== */
.dining-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.dining-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.dining-image {
    height: 200px;
    background: var(--bg-alt);
}

.dining-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dining-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dining-info h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.dining-location {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.dining-info > p {
    margin-bottom: 0.75rem;
    color: var(--text);
}

.dining-highlight {
    background: var(--secondary);
    color: var(--text);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.dining-contact {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.dining-contact .phone {
    font-weight: 600;
    color: var(--primary);
}

/* ===== Things To Do Section ===== */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 3rem;
}

a.attraction-card {
    display: block;
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.attraction-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

.attraction-card.featured {
    grid-column: span 2;
}

.attraction-image {
    height: 180px;
    background: var(--bg-alt);
}

.attraction-card.featured .attraction-image {
    height: 250px;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Attraction Slideshow */
.attraction-slideshow {
    position: relative;
    height: 180px;
    background: var(--bg-alt);
    overflow: hidden;
}

.attraction-card.featured .attraction-slideshow {
    height: 250px;
}

.attraction-slideshow .slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.attraction-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.attraction-slideshow .slide.active {
    opacity: 1;
}

.attraction-slideshow .slide-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.attraction-slideshow .slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.attraction-slideshow .slide-dot:hover,
.attraction-slideshow .slide-dot.active {
    background: rgba(255, 255, 255, 1);
}

.attraction-info {
    padding: 20px;
}

.attraction-info .distance {
    display: inline-block;
    background: var(--accent);
    color: var(--text-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.attraction-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.attraction-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Local Events */
.local-events {
    background: var(--bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.local-events h3 {
    margin-bottom: 0.5rem;
}

.events-filter {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.events-filter label {
    font-weight: 500;
    color: var(--text);
}

.events-filter select {
    padding: 10px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    cursor: pointer;
    transition: var(--transition);
}

.events-filter select:hover,
.events-filter select:focus {
    border-color: var(--primary-light);
    outline: none;
}

.events-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}

.no-events {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    font-style: italic;
}

.events-note {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 1.5rem;
}

a.event-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-alt);
    padding: 16px;
    border-radius: var(--radius);
    text-align: left;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a.event-card:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.event-date {
    background: var(--primary);
    color: var(--text-white);
    padding: 12px;
    border-radius: var(--radius);
    text-align: center;
    min-width: 70px;
}

.event-date .month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-date .day {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
}

.event-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.event-info p {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ===== Photo Gallery Slideshow ===== */
.gallery-section {
    overflow: hidden;
    position: relative;
}

.gallery-link {
    display: block;
    position: relative;
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.gallery-overlay span {
    color: var(--text-white);
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-link:hover .gallery-overlay {
    opacity: 1;
}

.gallery-link:hover .gallery-track {
    animation-play-state: paused;
}

.gallery-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.4);
    pointer-events: none;
    z-index: 5;
}

.gallery-mobile-btn {
    display: none;
}

.gallery-slider {
    width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 0;
    animation: scroll-gallery 30s linear infinite;
    width: max-content;
}

.gallery-track img {
    height: 360px;
    width: 540px;
    object-fit: cover;
    flex-shrink: 0;
    image-rendering: -webkit-optimize-contrast;
}

.gallery-track img.gallery-sign {
    object-position: center 25%;
}

@keyframes scroll-gallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


@media (max-width: 768px) {
    .gallery-track img {
        height: 220px;
        width: 330px;
    }
}

/* ===== Nearby Section ===== */
.nearby-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: start;
}

.nearby-category {
    background: var(--bg);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.nearby-category h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
}

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

.nearby-list li:last-child {
    border-bottom: none;
}

.nearby-list .name {
    font-weight: 500;
    flex: 1;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nearby-list a.name:hover {
    color: var(--primary-light);
}

.nearby-list .distance {
    color: var(--text-light);
    font-size: 0.875rem;
}

.nearby-list .map-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: var(--text-white);
    border-radius: 50%;
    transition: var(--transition);
    flex-shrink: 0;
}

.nearby-list .map-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.nearby-list .map-btn svg {
    width: 16px;
    height: 16px;
}

/* ===== Special Offers Section ===== */
.offers-section {
    padding: 60px 0;
}

.offer-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
}

.offer-content h2 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.offer-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* ===== Policies Section ===== */
.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.policy-card {
    background: var(--bg);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.policy-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--secondary);
}

.policy-card ul {
    list-style: none;
}

.policy-card li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.5;
}

.policy-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
}

.policy-card li strong {
    color: var(--primary-dark);
}

.policies-cta {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.policies-cta p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item h3 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary);
    font-weight: 500;
}

.address-note {
    margin-top: 1rem;
    padding: 12px;
    background: var(--secondary);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--text);
}

.social-links-large {
    display: flex;
    gap: 16px;
}

.social-links-large a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-alt);
    padding: 12px 20px;
    border-radius: var(--radius);
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

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

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    display: block;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    white-space: nowrap;
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--secondary);
}

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

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

.footer-ai-note {
    margin-top: 6px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== Gallery Page ===== */
.gallery-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 160px 20px 80px;
    text-align: center;
    color: var(--text-white);
}

.gallery-hero .container {
    transform: translateY(40px);
}

.gallery-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: #fff;
}

.gallery-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    color: #fff;
}

.gallery-page-section {
    padding: 60px 20px;
    background: var(--bg-alt);
}

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

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--text-white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item-overlay span {
    font-weight: 500;
    font-size: 1.1rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 95vw;
    max-height: 95vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 95vw;
    max-height: 85vh;
    min-width: min(600px, 90vw);
    border-radius: var(--radius);
    object-fit: contain;
}

.lightbox-content p {
    color: var(--text-white);
    margin-top: 1rem;
    font-size: 1.1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 3rem;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.2s ease;
    opacity: 0.7;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

.lightbox-close {
    top: 20px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

/* Lightbox Gallery Button - Desktop Only */
.lightbox-gallery-btn {
    display: none;
}

@media (min-width: 769px) {
    .lightbox-gallery-btn {
        display: inline-block;
        margin-top: 1.5rem;
        padding: 0.75rem 1.5rem;
        background: var(--accent);
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 600;
        border-radius: 4px;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .lightbox-gallery-btn:hover {
        background: var(--accent-dark);
        transform: scale(1.05);
    }
}

.gallery-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    text-align: center;
    color: var(--text-white);
}

.gallery-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: #fff;
}

.gallery-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #fff;
}

/* ===== FAQ Page ===== */
.faq-section {
    padding: 60px 20px;
    background: var(--bg-alt);
    min-height: 50vh;
}

.faq-search {
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    font-size: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-search input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.faq-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.faq-no-results {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
    display: none;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-category {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin: 32px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--secondary);
}

.faq-category:first-child {
    margin-top: 0;
}

.faq-item {
    background: var(--bg);
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-dark);
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--bg-alt);
}

.faq-question span {
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-contact {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.faq-contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.faq-contact p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.faq-contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Responsive Design ===== */
@media (min-width: 1024px) {
    .reservation-widget {
        padding: 32px 36px;
    }

    .reservation-widget h2 {
        font-size: 1.625rem;
        margin-bottom: 1.5rem;
    }

    .form-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    .nav-menu {
        gap: 18px;
    }

    .nav-menu a {
        font-size: 0.8rem;
    }

    .nav-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    /* Center last row of amenities */
    .amenities-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .amenity-card {
        flex: 0 1 calc(33.333% - 16px);
        min-width: 250px;
    }

    /* Center last row of attractions */
    .attractions-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .attractions-grid a.attraction-card {
        flex: 0 1 calc(33.333% - 16px);
        min-width: 280px;
    }

    .attractions-grid a.attraction-card.featured {
        flex: 0 1 calc(66.666% - 12px);
    }

    /* Center last row of nearby categories */
    .nearby-categories {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nearby-category {
        flex: 0 1 calc(50% - 12px);
        min-width: 280px;
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .attraction-card.featured {
        grid-column: span 1;
    }

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

    .amenity-card {
        flex: 0 1 100%;
    }
}

@media (max-width: 768px) {
    /* Hide header-top completely on mobile */
    .header-top {
        display: none;
    }

    .main-nav {
        padding: 12px 0;
    }

    .main-nav .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        position: relative;
    }

    .logo-img {
        height: 40px;
    }

    /* Mobile header info layout */
    .mobile-header-info {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: space-between;
    }

    .mobile-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        flex: 1;
        text-align: center;
    }

    .mobile-contact a {
        color: var(--primary-dark);
        font-size: 0.75rem;
        white-space: nowrap;
        font-weight: 500;
    }

    .mobile-contact a:hover {
        color: var(--primary);
    }

    .mobile-social {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-right: -8px;
    }

    .mobile-social a {
        color: var(--primary-dark);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-social a:hover {
        color: var(--primary);
    }

    .mobile-social svg {
        width: 16px;
        height: 16px;
    }

    /* Disable scroll animation on mobile since no blue bar */
    .header.scrolled .main-nav {
        transform: none;
    }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 100;
    }

    /* Hamburger to X animation */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 99;
        /* Animation setup */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s;
    }

    .nav-menu.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        text-align: center;
    }

    /* Title is always visible (no animation) */
    .nav-menu li.nav-menu-title {
        opacity: 1;
        transform: none;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for menu items (skip title which is :nth-child(1)) */
    .nav-menu.active li:nth-child(2) { transition-delay: 0.05s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(8) { transition-delay: 0.35s; }
    .nav-menu.active li:nth-child(9) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(10) { transition-delay: 0.45s; }
    .nav-menu.active li:nth-child(11) { transition-delay: 0.5s; }

    .nav-menu a {
        font-size: 1.5rem;
        font-weight: 500;
        color: var(--primary-dark);
        padding: 12px 0;
        display: block;
    }

    .nav-menu a:not(.nav-btn)::after {
        display: none;
    }

    .nav-menu .nav-btn {
        color: var(--text-white) !important;
        text-align: center;
        padding: 16px 60px;
        font-size: 1.25rem;
        margin-top: 16px;
        min-width: 220px;
    }

    .nav-menu li:has(.nav-faq) {
        order: 10;
        padding-right: 0;
        border-right: none;
        margin-right: 0;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--border);
        width: 100%;
    }

    .nav-menu.active li:has(.nav-faq) {
        transition-delay: 0.45s;
    }

    .nav-menu .nav-faq {
        font-size: 1rem !important;
        padding: 12px 40px;
        margin-right: 0;
        display: inline-block;
    }

    /* Mobile gallery button */
    .gallery-mobile-btn {
        display: block;
        text-align: center;
        padding: 20px;
    }

    .gallery-mobile-btn .btn {
        font-size: 1rem;
        padding: 14px 32px;
    }

    .hero {
        padding-top: 80px;
        min-height: 100vh;
        min-height: 100dvh;
        padding-bottom: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Full width attraction cards on mobile */
    .attractions-grid a.attraction-card,
    .attractions-grid a.attraction-card.featured {
        flex: 1 1 100%;
        min-width: 100%;
    }

    /* Full width nearby cards on mobile */
    .nearby-category {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .reservation-widget {
        padding: 20px 18px;
    }

    .reservation-widget h2 {
        font-size: 1.5rem;
    }

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

    .reservation-form .btn {
        width: auto;
        min-width: 240px;
        align-self: center;
        padding: 14px 32px;
    }

    .section {
        padding: 60px 0;
    }

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

    .dining-card {
        min-width: 0;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-top {
        font-size: 0.8rem;
    }

    .contact-bar {
        gap: 6px;
    }

    .reservation-widget {
        padding: 16px 12px;
    }

    .view-toggle {
        flex-direction: column;
    }

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

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

    .nearby-categories {
        grid-template-columns: 1fr;
    }

    .social-links-large {
        flex-direction: column;
    }
}

/* ===== Placeholder Images ===== */
.room-image:empty,
.dining-image:empty,
.attraction-image:empty {
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--border) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-image:empty::after,
.dining-image:empty::after,
.attraction-image:empty::after {
    content: 'Image Coming Soon';
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ===== Room Image Carousel ===== */
.room-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.carousel-slide.active {
    opacity: 1;
    position: relative;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
    z-index: 10;
}

.room-carousel:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.75);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-counter {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 10;
}

/* Mobile carousel adjustments */
@media (max-width: 768px) {
    .carousel-btn {
        opacity: 1;
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }

    .carousel-prev {
        left: 8px;
    }

    .carousel-next {
        right: 8px;
    }
}

/* ===== Scroll to Top Button ===== */
.scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(12, 74, 110, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 10000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 16px rgba(12, 74, 110, 0.5);
    transform: translateY(-3px);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

