/* ═══════════════════════════════════════════════════════════════
   BIRIZGARDEN HOTEL — Premium Guest Guide
   Color Palette: Deep Black + Gold (#C8A852) + Warm White
   ═══════════════════════════════════════════════════════════════ */

:root {
    --gold: #C8A852;
    --gold-light: #DECC8E;
    --gold-dark: #A68B3C;
    --gold-glow: rgba(200, 168, 82, 0.25);
    --black: #0a0a0a;
    --black-soft: #141414;
    --black-card: #1a1a1a;
    --black-card-hover: #222222;
    --gray-900: #1e1e1e;
    --gray-800: #2a2a2a;
    --gray-700: #3a3a3a;
    --gray-600: #555555;
    --gray-400: #999999;
    --gray-300: #bbbbbb;
    --gray-200: #dddddd;
    --white: #f5f3ee;
    --white-pure: #ffffff;
    --red: #e74c3c;
    --green: #2ecc71;
    --blue: #3498db;
    --purple: #9b59b6;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-elegant: 'Cormorant Garamond', Georgia, serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-gold: 0 4px 25px rgba(200, 168, 82, 0.15);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden { display: none !important; }

/* ═══════════════════════════════════════════════════════
   LOADING SCREEN
   ═══════════════════════════════════════════════════════ */
.loading-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    animation: loadingFadeIn 0.8s ease forwards;
}

@keyframes loadingFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.loading-logo-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    position: relative;
}

.loading-logo-wrapper::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px;
    right: -10px; bottom: -10px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: loadingPulse 2s ease-in-out infinite;
}

@keyframes loadingPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.08); opacity: 0.6; }
}

.loading-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(200, 168, 82, 0.3));
    mix-blend-mode: screen;
}

.loading-stars {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 18px;
    color: var(--gold);
}

.loading-stars span {
    animation: starTwinkle 1.5s ease-in-out infinite;
}
.loading-stars span:nth-child(1) { animation-delay: 0s; }
.loading-stars span:nth-child(2) { animation-delay: 0.15s; }
.loading-stars span:nth-child(3) { animation-delay: 0.3s; }
.loading-stars span:nth-child(4) { animation-delay: 0.45s; }

@keyframes starTwinkle {
    0%, 100% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
}

.loading-bar-container {
    width: 180px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    margin: 0 auto 24px;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 2px;
    animation: loadingProgress 2.5s ease-in-out forwards;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    30% { width: 40%; }
    60% { width: 70%; }
    100% { width: 100%; }
}

.loading-text {
    font-family: var(--font-elegant);
    font-size: 1.3rem;
    color: var(--gold-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0;
    animation: loadTextFade 1s ease 0.5s forwards;
}

@keyframes loadTextFade {
    to { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10,10,10,0.5) 0%,
        rgba(10,10,10,0.3) 40%,
        rgba(10,10,10,0.6) 70%,
        rgba(10,10,10,0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    animation: heroContentIn 1s ease 0.3s forwards;
    opacity: 0;
}

@keyframes heroContentIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-logo {
    width: 160px;
    margin: 0 auto 16px;
    filter: drop-shadow(0 0 40px rgba(200, 168, 82, 0.4));
    mix-blend-mode: screen;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.divider-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-star {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 6px;
}

.hero-tagline {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    font-style: italic;
    margin-bottom: 40px;
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    opacity: 0.7;
}

.scroll-arrow {
    color: var(--gold);
    opacity: 0.7;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ═══════════════════════════════════════════════════════
   STICKY NAV
   ═══════════════════════════════════════════════════════ */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 168, 82, 0.15);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-nav.visible {
    transform: translateY(0);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 540px;
    margin: 0 auto;
}

.nav-logo {
    height: 36px;
    width: auto;
    mix-blend-mode: screen;
}

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

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
    max-width: 540px;
    margin: 0 auto;
}

.nav-menu.open {
    max-height: 400px;
    padding-bottom: 16px;
}

.nav-link {
    display: block;
    padding: 12px 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-400);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   QUICK ACTIONS
   ═══════════════════════════════════════════════════════ */
.quick-actions {
    padding: 0 0 20px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.quick-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 8px;
    background: var(--black-card);
    border: 1px solid rgba(200, 168, 82, 0.12);
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-align: center;
}

.quick-card:active {
    transform: scale(0.95);
    border-color: var(--gold);
}

.quick-icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.quick-icon svg {
    width: 100%;
    height: 100%;
}

.quick-card span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-300);
}

/* ═══════════════════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════════════════ */
.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 36px;
}

.section-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(200, 168, 82, 0.1);
    border: 1px solid rgba(200, 168, 82, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.section-header.light .section-title {
    color: var(--white);
}

.title-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.title-ornament span:not(.ornament-diamond) {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.title-ornament span:first-child {
    background: linear-gradient(90deg, transparent, var(--gold));
}

.title-ornament span:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament-diamond {
    color: var(--gold);
    font-size: 0.6rem;
}

.section-subtitle {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 12px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── GLASS CARDS ─── */
.glass-card {
    background: var(--black-card);
    border: 1px solid rgba(200, 168, 82, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(200, 168, 82, 0.25);
}

.glass-card-dark {
    background: linear-gradient(135deg, rgba(200, 168, 82, 0.08), rgba(10,10,10,0.9));
    border: 1px solid rgba(200, 168, 82, 0.15);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

/* ─── FADE-IN ANIMATION ─── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════ */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-icon-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(200, 168, 82, 0.15);
}

.about-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
}

.about-text {
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-text:last-child { margin-bottom: 0; }

.about-vision {
    text-align: center;
}

.vision-icon {
    width: 40px;
    height: 40px;
    color: var(--gold);
    margin: 0 auto 16px;
}

.vision-icon svg {
    width: 100%;
    height: 100%;
}

.about-vision h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.about-vision p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.service-card {
    text-align: center;
    padding: 20px 14px;
}

.service-icon {
    width: 36px;
    height: 36px;
    color: var(--gold);
    margin: 0 auto 12px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.72rem;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   ROOMS SECTION
   ═══════════════════════════════════════════════════════ */
.rooms-section {
    background: var(--black-soft);
}

.rooms-carousel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.room-card {
    overflow: hidden;
    padding: 0;
}

.room-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    transition: transform 0.6s ease;
}

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

.room-badge-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
}

.image-next-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(200, 168, 82, 0.5);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    z-index: 10;
    
    /* Default hidden for hover effect */
    opacity: 0;
    visibility: hidden;
}

.room-image-wrapper:hover .image-next-btn {
    opacity: 1;
    visibility: visible;
}

/* Fallback for touch devices where hover doesn't exist */
@media (hover: none) {
    .image-next-btn {
        opacity: 0.9;
        visibility: visible;
    }
}

.image-next-btn:active {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-50%) scale(0.92);
}

.image-next-btn svg {
    width: 22px;
    height: 22px;
    margin-left: 2px;
}

.image-next-btn.left-arrow {
    left: 12px;
    right: auto;
}

.image-next-btn.left-arrow svg {
    transform: rotate(180deg);
    margin-left: 0;
    margin-right: 2px;
}
.room-type-badge {
    background: rgba(200, 168, 82, 0.9);
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.room-info {
    padding: 20px 24px 24px;
}

.room-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.room-desc {
    font-size: 0.82rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 16px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.room-feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--gray-300);
    background: rgba(200, 168, 82, 0.08);
    border: 1px solid rgba(200, 168, 82, 0.12);
    padding: 6px 12px;
    border-radius: 50px;
}

.room-feature svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   BREAKFAST SECTION
   ═══════════════════════════════════════════════════════ */
.breakfast-section {
    background: linear-gradient(180deg, var(--black) 0%, rgba(200, 168, 82, 0.06) 50%, var(--black) 100%);
}

.breakfast-card {
    padding: 28px 24px;
}

.breakfast-time-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(200, 168, 82, 0.12);
    border: 1px solid rgba(200, 168, 82, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.time-icon {
    width: 40px;
    height: 40px;
    color: var(--gold);
    flex-shrink: 0;
}

.time-icon svg {
    width: 100%;
    height: 100%;
}

.time-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 4px;
}

.time-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
}

.breakfast-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.breakfast-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(200, 168, 82, 0.05);
    border-radius: var(--radius-sm);
}

.breakfast-feature svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.breakfast-feature span {
    font-size: 0.75rem;
    color: var(--gray-300);
    font-weight: 500;
}

.breakfast-note {
    font-size: 0.78rem;
    color: var(--gray-400);
    text-align: center;
    font-style: italic;
    padding-top: 16px;
    border-top: 1px solid rgba(200, 168, 82, 0.1);
}

/* ═══════════════════════════════════════════════════════
   RESTAURANT SECTION
   ═══════════════════════════════════════════════════════ */
.restaurant-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.restaurant-card {
    padding: 24px;
}

.restaurant-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.restaurant-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(200, 168, 82, 0.12);
    border: 1px solid rgba(200, 168, 82, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.restaurant-icon-circle svg {
    width: 22px;
    height: 22px;
}

.restaurant-header h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 2px;
}

.restaurant-subtitle {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

.restaurant-desc {
    font-size: 0.82rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 14px;
}

.restaurant-info-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.info-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--gray-300);
    background: rgba(200, 168, 82, 0.08);
    border: 1px solid rgba(200, 168, 82, 0.1);
    padding: 6px 12px;
    border-radius: 50px;
}

.info-chip svg {
    color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   NEARBY PLACES
   ═══════════════════════════════════════════════════════ */
.nearby-section {
    background: var(--black-soft);
}

.nearby-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nearby-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    cursor: pointer;
    border-radius: var(--radius-md);
}

.nearby-card:active {
    transform: scale(0.98);
    border-color: var(--gold);
}

.nearby-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nearby-icon svg {
    width: 22px;
    height: 22px;
}

.nearby-icon.hospital {
    background: rgba(231, 76, 60, 0.12);
    color: var(--red);
}

.nearby-icon.pharmacy {
    background: rgba(46, 204, 113, 0.12);
    color: var(--green);
}

.nearby-icon.airport {
    background: rgba(52, 152, 219, 0.12);
    color: var(--blue);
}

.nearby-icon.transit {
    background: rgba(155, 89, 182, 0.12);
    color: var(--purple);
}

.nearby-icon.mall {
    background: rgba(200, 168, 82, 0.12);
    color: var(--gold);
}

.nearby-icon.hotel-pin {
    background: rgba(200, 168, 82, 0.2);
    color: var(--gold);
}

.nearby-icon.taxi {
    background: rgba(241, 196, 15, 0.12);
    color: #F1C40F;
}

.nearby-icon.barber {
    background: rgba(230, 126, 34, 0.12);
    color: #E67E22;
}

.nearby-icon.salon {
    background: rgba(232, 67, 147, 0.12);
    color: #E84393;
}

.nearby-info {
    flex: 1;
}

.nearby-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.nearby-distance {
    font-size: 0.7rem;
    color: var(--gray-400);
}

.nearby-arrow {
    width: 20px;
    height: 20px;
    color: var(--gray-600);
    flex-shrink: 0;
    transition: var(--transition);
}

.nearby-arrow svg {
    width: 100%;
    height: 100%;
}

.nearby-card:hover .nearby-arrow {
    color: var(--gold);
    transform: translateX(4px);
}

.nearby-hotel {
    background: linear-gradient(135deg, rgba(200, 168, 82, 0.15), rgba(200, 168, 82, 0.05));
    border-color: rgba(200, 168, 82, 0.3);
}

/* ═══════════════════════════════════════════════════════
   EVENTS / ORGANIZATION SECTION
   ═══════════════════════════════════════════════════════ */
.events-section {
    background: linear-gradient(180deg, var(--black) 0%, rgba(200, 168, 82, 0.06) 50%, var(--black) 100%);
}

.events-card {
    padding: 0;
    overflow: hidden;
}

.events-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(200, 168, 82, 0.12) 0%, rgba(200, 168, 82, 0.04) 100%);
    border-bottom: 1px solid rgba(200, 168, 82, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.events-placeholder-content {
    text-align: center;
    color: var(--gold);
    opacity: 0.5;
}

.events-placeholder-content span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 12px;
    color: var(--gray-400);
}

/* When a real image is added */
.events-card .events-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.events-info {
    padding: 24px;
}

.events-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-bottom: 14px;
}

.events-desc {
    font-size: 0.82rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 12px;
}

.events-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.event-feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--gray-300);
    background: rgba(200, 168, 82, 0.08);
    border: 1px solid rgba(200, 168, 82, 0.12);
    padding: 8px 14px;
    border-radius: 50px;
}

.event-feature svg {
    color: var(--gold);
    flex-shrink: 0;
}

.events-cta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(200, 168, 82, 0.12);
}

.events-cta-text {
    font-size: 0.82rem;
    color: var(--gray-300);
    text-align: center;
    margin-bottom: 16px;
    font-style: italic;
}

.events-contact-row {
    display: flex;
    gap: 10px;
}

.events-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(200, 168, 82, 0.12);
    border: 1px solid rgba(200, 168, 82, 0.25);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.events-btn:active {
    background: var(--gold);
    color: var(--black);
    transform: scale(0.96);
}

.events-btn svg {
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════ */
.contact-section {
    background: linear-gradient(180deg, var(--black) 0%, rgba(200, 168, 82, 0.04) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 12px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-card:active {
    transform: scale(0.96);
}

.contact-card:nth-child(5) {
    grid-column: 1 / -1;
}

.contact-icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
    margin-bottom: 10px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-icon.instagram-icon {
    color: #E1306C;
}

.contact-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 0.78rem;
    color: var(--gray-300);
    font-weight: 500;
    word-break: break-all;
}

/* Address Card */
.address-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: var(--radius-lg);
}

.address-icon {
    width: 44px;
    height: 44px;
    color: var(--gold);
    flex-shrink: 0;
}

.address-icon svg {
    width: 100%;
    height: 100%;
}

.address-info {
    flex: 1;
    min-width: 180px;
}

.address-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.address-info p {
    font-size: 0.82rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.address-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.address-map-btn:active {
    transform: scale(0.96);
    background: var(--gold-dark);
}

.address-map-btn svg {
    color: var(--black);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
    padding: 48px 0 32px;
    background: var(--black);
    text-align: center;
    border-top: 1px solid rgba(200, 168, 82, 0.1);
}

.footer-logo {
    width: 80px;
    margin: 0 auto 8px;
    opacity: 0.7;
    mix-blend-mode: screen;
}

.footer-stars {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 6px;
    margin-bottom: 16px;
    opacity: 0.6;
}

.footer-address {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 168, 82, 0.2);
    border-radius: 50%;
    color: var(--gold);
    transition: var(--transition);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-social a:active {
    background: var(--gold);
    color: var(--black);
}

.footer-copy {
    font-size: 0.65rem;
    color: var(--gray-700);
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE (LARGER SCREENS)
   ═══════════════════════════════════════════════════════ */
@media (min-width: 768px) {
    .container {
        max-width: 680px;
    }

    .hero-logo {
        width: 200px;
    }

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

    .quick-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .room-image-wrapper {
        height: 300px;
    }

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

    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-card:nth-child(5) {
        grid-column: auto;
    }
}

/* ─── SAFE AREA (NOTCH) ─── */
@supports (padding: max(0px)) {
    .sticky-nav {
        padding-top: max(0px, env(safe-area-inset-top));
    }

    .footer {
        padding-bottom: max(32px, env(safe-area-inset-bottom));
    }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
