:root {
    --primary-color: #D4AF37;
    /* Gold/Metallic Gold */
    --primary-hover: #b5952f;
    --background-color: #0f0f0f;
    --surface-color: #1a1a1a;
    --text-color: #ffffff;
    --text-secondary: #aaaaaa;
    --border-radius: 12px;
    --font-family: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    transition: opacity 0.3s ease, transform 0.3s ease;
    background-color: var(--background-color);
}

.view.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    z-index: 0;
    display: none;
    /* simple toggle for now, can animate later if needed */
}

.view.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    z-index: 1;
    display: block;
}

.container {
    padding: 24px;
    width: 100%;
    max-width: 480px;
    /* Mobile max width constraint */
    margin: 0 auto;
}

.center-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

/* Typography */
h1.title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.location-heading {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Logos */
.logo-container-large {
    margin-bottom: 3rem;
    width: 100%;
    max-width: 280px;
}

.logo-large {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background-color: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-small {
    height: 48px;
    /* Adjusted size */
    width: auto;
}

/* Buttons */
.location-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.btn-location {
    background-color: var(--surface-color);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-family);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-location:hover,
.btn-location:active {
    background-color: var(--primary-color);
    color: #000;
    transform: scale(1.02);
    border-color: var(--primary-color);
}

.btn-back {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary-color);
    /* Highlight color for location */
    padding: 8px 12px;
    border-radius: 20px;
    /* Pillow shape */
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-back:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-color);
}

/* Banner */
.banner-container {
    width: 100%;
    margin-bottom: 24px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background-color: #222;
}

.banner-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

/* Link Tree */
.link-tree {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.link-item {
    display: flex;
    align-items: center;
    background-color: var(--surface-color);
    color: var(--text-color);
    text-decoration: none;
    padding: 16px 20px;
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.link-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: var(--primary-color);
}

.link-item .left-icon {
    font-size: 1.5rem;
    margin-right: 16px;
}

.link-item .link-text {
    font-weight: 500;
    font-size: 1rem;
    margin-right: auto;
}

.link-item .icon-right {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Brand Themes */
.brand-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-right: 16px;
    background-color: #ffffff;
    padding: 6px;
    border-radius: 8px;
    /* Rounded square look */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Website Booking - Gold/Primary */
/* Website Booking - Gold/Primary */
.link-item.brand-website {
    border-left: 4px solid #FFD700;
}

.link-item.brand-website .icon-right,
.link-item.brand-website .left-icon {
    /* Inherit default color */
    color: inherit;
}

.link-item.brand-website:hover {
    background-color: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    transform: scale(1.02);
}

/* BookMyShow - Red */
.link-item.brand-bms {
    border-left: 4px solid #C4242B;
}

.link-item.brand-bms:hover {
    background-color: rgba(196, 36, 43, 0.1);
    border-color: rgba(196, 36, 43, 0.5);
}

/* District - Dark/Purple */
.link-item.brand-district {
    border-left: 4px solid #fff;
}

.link-item.brand-district:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* AllEvents - Cyan */
.link-item.brand-allevents {
    border-left: 4px solid #00C1F3;
}

.link-item.brand-allevents:hover {
    background-color: rgba(0, 193, 243, 0.1);
    border-color: rgba(0, 193, 243, 0.5);
}

/* MeraEvents - Yellow/Purple */
.link-item.brand-meraevents {
    border-left: 4px solid #FFD700;
}

.link-item.brand-meraevents:hover {
    background-color: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
}

/* Call Us - Green */
.link-item.brand-call {
    border: 1px dashed rgba(255, 255, 255, 0.2);
    margin-top: 8px;
    /* Separation */
}