@font-face {
    font-family: "Argesta Display";
    src: url("../../fonts/Argesta/Argesta\ Display.otf");
}

/* Carousel Loading Indicator */
.carousel-loading {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    z-index: 10;
    display: none;
    align-items: center;
    gap: 10px;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.3s ease;
}

.carousel-loading.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.loading-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.loading-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #2c5f5d 0%, #1a3a38 100%);
    --secondary-gradient: linear-gradient(135deg, #7d9d9c 0%, #5a7c7a 100%);
    --accent-gradient: linear-gradient(135deg, #a8c5c3 0%, #8ba9a7 100%);
    --primary-color: #2c5f5d;
    --secondary-color: #5a7c7a;
    --accent-color: #8ba9a7;
    --highlight-color: #c9a96e;
    --text-dark: #2c3e50;
    --text-light: #e8ebe9;
    --bg-light: #fafaf8;
    --bg-dark: #1a1f1e;
    --card-light: #f5f6f4;
    --card-dark: #252a29;
}

body {
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    letter-spacing: 0.3px;
}

body.loaded {
    overflow-x: hidden;
    overflow-y: auto;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
}

body.dark-mode ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
}

::-webkit-scrollbar-thumb {
    background: #2c5f5d;
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a3a38;
}

body.dark-mode ::-webkit-scrollbar-thumb {
    background: #4a8a87;
}

body.dark-mode ::-webkit-scrollbar-thumb:hover {
    background: #5a9a97;
}

/* Firefox Support */
* {
    scrollbar-width: thin;
    scrollbar-color: #2c5f5d rgba(0, 0, 0, 0.03);
}

body.dark-mode * {
    scrollbar-color: #4a8a87 rgba(255, 255, 255, 0.03);
}

body.dark-mode {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

body.menu-open {
    overflow: hidden;
}

body:not(.loaded) > *:not(.page-loader) {
    opacity: 0;
    visibility: hidden;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fafaf8 0%, #f5f6f4 50%, #e8ebe9 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-mode .page-loader {
    background: linear-gradient(135deg, #1a1f1e 0%, #252a29 50%, #2c3e3c 100%);
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    padding: 0 20px;
}

.loader-logo {
    opacity: 0;
    animation: logoFadeIn 1s ease forwards 0.3s;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.loader-logo-circle {
    width: 150px;
    height: 150px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;
}

.loader-logo-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.loader-logo h1 {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 3px;

    color: var(--primary-color);
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(44, 95, 93, 0.1);
}

body.dark-mode .loader-logo h1 {
    color: var(--text-light);
}

.loader-logo span {
    display: block;
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--secondary-color);
    margin-top: 0;
    text-shadow: 0 1px 5px rgba(90, 124, 122, 0.1);
    text-transform: uppercase;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader-spinner {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 50px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spinnerRotate 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    box-shadow: 0 0 15px rgba(44, 95, 93, 0.2);
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: var(--secondary-color);
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: var(--accent-color);
}

@keyframes spinnerRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-progress {
    width: 300px;
    height: 3px;
    background: rgba(44, 95, 93, 0.15);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin: 0 auto 25px;
    box-shadow: 0 2px 8px rgba(44, 95, 93, 0.08);
}

.progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 10px;
    width: 0%;
    animation: progressLoad 3s ease-in-out forwards;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(44, 95, 93, 0.3);
}

.progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: progressShine 1.5s infinite;
}

@keyframes progressLoad {
    0% {
        width: 0%;
    }

    30% {
        width: 30%;
    }

    60% {
        width: 60%;
    }

    90% {
        width: 90%;
    }

    100% {
        width: 100%;
    }
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.loader-text {
    font-size: 12px;
    color: #6a7a78;
    letter-spacing: 2px;
    opacity: 0;
    animation: textFadeIn 0.5s ease forwards 1s;
    margin: 0;
    font-weight: 400;
}

body.dark-mode .loader-text {
    color: #b8c4c2;
}

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

* {
    -ms-overflow-style: auto;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

html {
    scroll-behavior: smooth;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    z-index: 100;
    background: rgba(250, 250, 248, 0.98);
    box-shadow: 0 2px 12px rgba(44, 95, 93, 0.07);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(44, 95, 93, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(250, 250, 248, 0.98);
    box-shadow: 0 4px 20px rgba(44, 95, 93, 0.08);
    backdrop-filter: blur(30px);
    padding: 8px 40px;
    border-bottom: 1px solid rgba(44, 95, 93, 0.08);
}

body.dark-mode header {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.4)
    );
}

body.dark-mode header.scrolled {
    background: rgba(26, 31, 30, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(168, 197, 195, 0.1);
}

header.scrolled .search-bar {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.dark-mode header.scrolled .search-bar {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

header.scrolled .search-bar svg {
    stroke: #2c3e50;
}

body.dark-mode header.scrolled .search-bar svg {
    stroke: #e0e0e0;
}

header.scrolled .search-bar input {
    color: #2c3e50;
}

body.dark-mode header.scrolled .search-bar input {
    color: #e0e0e0;
}

header.scrolled .search-bar input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

body.dark-mode header.scrolled .search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

header.scrolled .logo h1 {
    color: #2c3e50;
}

body.dark-mode header.scrolled .logo h1 {
    color: #e0e0e0;
}

header.scrolled .logo span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

header.scrolled .menu-btn span {
    background: #2c3e50;
}

body.dark-mode header.scrolled .menu-btn span {
    background: #e0e0e0;
}

.dark-mode-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 101;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(44, 95, 93, 0.25), 0 0 0 0 rgba(44, 95, 93, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-mode-toggle:hover {
    background: var(--secondary-gradient);
    box-shadow: 0 6px 25px rgba(44, 95, 93, 0.35),
        0 0 30px rgba(44, 95, 93, 0.15);
    transform: scale(1.08);
}

.dark-mode-toggle:active {
    transform: scale(0.95);
}

.dark-mode-toggle svg {
    width: 24px;
    height: 24px;
    fill: white;
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -12px;
    margin-top: -12px;
}

.dark-mode-toggle .sun-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

.dark-mode-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

body.dark-mode .dark-mode-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

body.dark-mode .dark-mode-toggle .moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

.search-container {
    flex: 0 0 280px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 12px 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-bar:focus-within {
    background: rgba(255, 255, 255, 0.35);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(44, 95, 93, 0.2), 0 0 40px rgba(44, 95, 93, 0.1);
    transform: translateY(-2px);
}

.search-bar svg {
    width: 20px;
    height: 20px;
    stroke: white;
    margin-right: 10px;
    transition: stroke 0.3s ease;
}

.search-bar input {
    background: transparent;
    border: none;
    color: white;
    font-size: 14px;
    width: 100%;
    outline: none;
    transition: color 0.3s ease;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.header-logo-circle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;

    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(44, 95, 93, 0.2);
    transition: all 0.3s ease;
}

.header-logo-circle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(44, 95, 93, 0.3);
}

@media (max-width: 768px) {
    .search-container,
    .header-left {
        display: none;
    }

    /* Mobile Hero Overrides */
    .hero-slide {
        background-image: url("../../facade/portrait.jpg") !important;
        background-size: cover !important;
        background-position: center 40% !important;
    }

    .hero {
        height: 80dvh !important;
        aspect-ratio: auto !important;
    }

    .hero-content {
        transform: translateY(-20px) !important;
    }

    .hero h2 {
        font-size: 32px !important;
        margin-bottom: 15px !important;
        line-height: 1.1 !important;
    }

    .hero p {
        font-size: 15px !important;
        margin-bottom: 30px !important;
        padding: 0 10px !important;
    }

    .explore-btn {
        display: none;
    }
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.logo h1 {
    color: white;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 3px;

    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    transition: all 0.3s ease;
}

.logo span {
    display: block;
    font-size: 10px;
    letter-spacing: 5px;
    margin-top: -5px;
    transition: color 0.3s ease;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .logo {
        position: static;
        transform: none;
        text-align: left;
        flex: 1;
    }

    .logo h1 {
        font-size: 24px;
    }
}

.menu-btn {
    flex: 0 0 auto;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 103;
}

.menu-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background: #2c3e50;
    margin: 6px 0;
    transition: 0.3s;
}

body.dark-mode .menu-btn span {
    background: #e0e0e0;
}

.menu-btn.active span {
    background: #2c3e50;
}

body.dark-mode .menu-btn.active span {
    background: #e0e0e0;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 102;
    padding: 100px 50px 120px;
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
}

body.dark-mode .sidebar {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}

.sidebar.active {
    right: 0;
}

.sidebar-logo {
    position: absolute;
    left: 50px;
    top: 30px;
    opacity: 0;
    transition: opacity 0.4s ease 0.3s;
}

.sidebar.active .sidebar-logo {
    opacity: 1;
}

.sidebar-logo h2 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;

    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
}

body.dark-mode .sidebar-logo h2 {
    color: #e0e0e0;
}

.sidebar-logo span {
    display: block;
    font-size: 9px;
    letter-spacing: 4px;
    margin-top: -3px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-close {
    position: absolute;
    right: 30px;
    top: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease 0.3s;
}

.sidebar.active .sidebar-close {
    opacity: 1;
}

.sidebar-close span {
    display: block;
    width: 30px;
    height: 2px;
    background: #2c3e50;
    margin: 6px 0;
    transition: 0.3s;
}

body.dark-mode .sidebar-close span {
    background: #e0e0e0;
}

.sidebar-close span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.sidebar-close span:nth-child(2) {
    opacity: 0;
}

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

.sidebar-close:hover span {
    background: var(--primary-color);
}

.sidebar-search {
    display: none;
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .sidebar-search {
        display: block;
    }
}

.sidebar-search .search-bar {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.dark-mode .sidebar-search .search-bar {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-search .search-bar svg {
    stroke: #2c3e50;
}

body.dark-mode .sidebar-search .search-bar svg {
    stroke: #e0e0e0;
}

.sidebar-search .search-bar input {
    color: #2c3e50;
}

body.dark-mode .sidebar-search .search-bar input {
    color: #e0e0e0;
}

.sidebar-search .search-bar input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

body.dark-mode .sidebar-search .search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.sidebar nav ul {
    list-style: none;
}

.sidebar nav ul li {
    margin: 30px 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

.sidebar.active nav ul li {
    opacity: 1;
    transform: translateX(0);
}

.sidebar.active nav ul li:nth-child(1) {
    transition-delay: 0.1s;
}

.sidebar.active nav ul li:nth-child(2) {
    transition-delay: 0.2s;
}

.sidebar.active nav ul li:nth-child(3) {
    transition-delay: 0.3s;
}

.sidebar.active nav ul li:nth-child(4) {
    transition-delay: 0.4s;
}

.sidebar.active nav ul li:nth-child(5) {
    transition-delay: 0.5s;
}

.sidebar.active nav ul li:nth-child(6) {
    transition-delay: 0.6s;
}

.sidebar nav ul li a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 24px;
    font-weight: 400;
    transition: 0.3s;
    display: block;
    position: relative;
}

body.dark-mode .sidebar nav ul li a {
    color: #e0e0e0;
}

.sidebar nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #f5f5dc;
    transition: width 0.3s ease;
}

.sidebar nav ul li a:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.sidebar nav ul li a:hover::after {
    width: 60px;
    background: var(--primary-gradient);
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url("../../bg_front.jfif") center/cover no-repeat;
    will-change: transform;
    transform: translateZ(0);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        /* rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.3) */
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(-80px);
    }
}

.hero h2 {
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: "Playfair Display", serif;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

.explore-btn {
    display: none;
}

.explore-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: -1;
}

.explore-btn::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    z-index: -2;
    opacity: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.explore-btn .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-right: 10px;
    font-size: 20px;
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.explore-btn .text {
    position: relative;
    transition: all 0.4s ease;
}

.explore-btn .text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.4s ease;
}

.explore-btn:hover::before {
    width: calc(100% + 35px);
    border-radius: 50px;
    box-shadow: 0 0 30px rgba(44, 95, 93, 0.4), 0 0 60px rgba(44, 95, 93, 0.2),
        0 8px 25px rgba(44, 95, 93, 0.25);
}

.explore-btn:hover .arrow {
    transform: translateX(5px);
}

.explore-btn:hover .text::after {
    width: 100%;
}

.explore-btn:hover {
    transform: translateY(58px);
    box-shadow: 0 10px 25px rgba(245, 245, 220, 0.3);
}

.contact-circle {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.active .stagger-item {
    opacity: 0;
    transform: translateY(30px);
    animation: staggerFadeIn 0.6s ease forwards;
}

.reveal.active .stagger-item:nth-child(1) {
    animation-delay: 0.1s;
}

.reveal.active .stagger-item:nth-child(2) {
    animation-delay: 0.2s;
}

.reveal.active .stagger-item:nth-child(3) {
    animation-delay: 0.3s;
}

.reveal.active .stagger-item:nth-child(4) {
    animation-delay: 0.4s;
}

.reveal.active .stagger-item:nth-child(5) {
    animation-delay: 0.5s;
}

.reveal.active .stagger-item:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes staggerFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-left.active {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.active {
    opacity: 1;
    transform: scale(1);
}

.rotate-in {
    opacity: 0;
    transform: rotate(-5deg) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.rotate-in.active {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.about-section {
    min-height: 100vh;
    background: #ffffff;
    padding: 100px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark-mode .about-section {
    background: #1a1a1a;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active .about-logo {
    opacity: 1;
    transform: translateY(0);
}

.about-logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.about-container h2 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active .about-container h2 {
    opacity: 1;
    transform: translateY(0);
}

body.dark-mode .about-container h2 {
    color: #e0e0e0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 30px;
    text-align: justify;
}

body.dark-mode .about-content p {
    color: #b0b0b0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.info-item {
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active .info-item:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.reveal.active .info-item:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.info-item h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.dark-mode .info-item h3 {
    color: #e0e0e0;
}

.info-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5a5a;
    margin: 0;
}

body.dark-mode .info-item p {
    color: #b0b0b0;
}

.divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 60%;
    background: rgba(44, 62, 80, 0.1);
    pointer-events: none;
}

body.dark-mode .divider {
    background: rgba(224, 224, 224, 0.1);
}

.tenant-section {
    min-height: 100vh;
    background: #ffffff;
    padding: 100px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark-mode .tenant-section {
    background: #1a1a1a;
}

.tenant-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.tenant-container h2 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active .tenant-container h2 {
    opacity: 1;
    transform: translateY(0);
}

body.dark-mode .tenant-container h2 {
    color: #e0e0e0;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.reveal.active .carousel-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.carousel-container {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tenant-card {
    flex: 0 0 calc(25% - 22.5px);
    background: #f8f8f8;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

body.dark-mode .tenant-card {
    background: #2a2a2a;
}

.tenant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

body.dark-mode .tenant-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.tenant-card-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.tenant-card-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tenant-card:hover .tenant-card-image::after {
    opacity: 1;
}

.tenant-card-content {
    padding: 25px;
}

.tenant-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 10px;
}

body.dark-mode .tenant-card h3 {
    color: #e0e0e0;
}

.tenant-card p {
    font-size: 14px;
    color: #5a5a5a;
    margin-bottom: 15px;
}

body.dark-mode .tenant-card p {
    color: #b0b0b0;
}

.tenant-card-tag {
    display: inline-block;
    padding: 6px 18px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 12px rgba(44, 95, 93, 0.25);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(44, 95, 93, 0.25);
}

.carousel-btn:hover {
    background: var(--secondary-gradient);
    transform: scale(1.12);
    box-shadow: 0 5px 20px rgba(44, 95, 93, 0.35),
        0 0 30px rgba(44, 95, 93, 0.15);
}

.carousel-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: scale(1);
}

.experience-section {
    min-height: auto;
    background: #ffffff;
    /* padding: 120px 40px; */
    position: relative;
    overflow: hidden;
}

body.dark-mode .experience-section {
    background: #1a1a1a;
}

.experience-container {
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
}

.experience-header {
    text-align: center;
    margin-bottom: 80px;
}

.experience-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    letter-spacing: 2px;
    color: var(--text-dark);
    text-transform: uppercase;
    font-weight: 500;
}

body.dark-mode .experience-header h2 {
    color: var(--text-light);
}

.header-divider {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

body.dark-mode .header-divider {
    background: rgba(255, 255, 255, 0.1);
}

.experience-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    height: 350px;
}

.experience-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: #000;
}

.experience-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    filter: brightness(0.7) grayscale(100%);
}

.experience-card:hover::before {
    transform: scale(1.1);
    filter: brightness(0.9) grayscale(0%);
}

.experience-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.experience-card:hover::after {
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .experience-cards {
        grid-template-columns: 1fr;
        height: auto;
    }

    .experience-card {
        height: 300px;
    }
}

.experience-card-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    padding: 30px;
    z-index: 3;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -40%);
    opacity: 0;
    pointer-events: none;
}

.experience-card:hover .experience-card-content {
    /* Tip-of-pin anchor point for high accuracy */
    opacity: 1;
    transform: translate(-50%, -100%);
}

.experience-card h4 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 500;
    color: white;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.experience-card.promotion::before {
    background-image: url("https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?w=800");
}

.experience-card.events::before {
    background-image: url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?w=800");
}

.experience-card.dining::before {
    background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=800");
}

.experience-card.new-store::before {
    background-image: url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=800");
}

.experience-card.promotion,
.experience-card.events,
.experience-card.dining,
.experience-card.new-store {
    background-image: none;
}

.event-section {
    min-height: auto;
    background: var(--bg-light);
    padding: 40px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark-mode .event-section {
    background: var(--bg-dark);
}

.event-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.event-container h2 {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1px;
}

.reveal.active .event-container h2 {
    opacity: 1;
    transform: translateY(0);
}

body.dark-mode .event-container h2 {
    color: var(--text-light);
}

.event-subtitle {
    text-align: center;
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.reveal.active .event-subtitle {
    opacity: 1;
    transform: translateY(0);
}

body.dark-mode .event-subtitle {
    color: #b0b0b0;
}

.event-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.reveal.active .event-slider-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.event-grid.empty {
    display: block;
    width: 100%;
}

.event-empty-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(44, 95, 93, 0.2);
    border-radius: 24px;
    width: 100%;
    margin: 20px 0;
}

body.dark-mode .event-empty-state {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
}

.empty-state-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    padding: 15px;
    opacity: 0.8;
}

.empty-state-icon svg {
    width: 100%;
    height: 100%;
    stroke: white;
}

.event-empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

body.dark-mode .event-empty-state h3 {
    color: white;
}

.event-empty-state p {
    font-size: 1rem;
    color: #666;
    max-width: 450px;
    line-height: 1.6;
}

body.dark-mode .event-empty-state p {
    color: #aaa;
}

.event-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1101px) {
    .event-card {
        flex: 0 0 calc(33.333% - 20px);
        min-width: calc(33.333% - 20px);
    }
}

@media (max-width: 1100px) and (min-width: 769px) {
    .event-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .event-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 460px !important;
    }

    .event-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        overflow-x: hidden !important; /* Disable native touch swipe that causes overlap */
    }

    .event-grid .event-card {
        margin-right: 0 !important;
    }
}

.event-card {
    position: relative;
    height: 580px; /* portrait height matching regular-shows */
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.event-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(44, 95, 93, 0.2),
        0 0 60px rgba(44, 95, 93, 0.08);
}

body.dark-mode .event-card {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

body.dark-mode .event-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(168, 197, 195, 0.1);
}

.event-card-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover .event-card-bg {
    transform: scale(1.15);
}

.event-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 30%,
        rgba(0, 0, 0, 0.6) 60%,
        rgba(0, 0, 0, 0.95) 100%
    );
    z-index: 1;
    transition: opacity 0.4s ease;
}

.event-card:hover::before {
    background: linear-gradient(
        to bottom,
        rgba(44, 95, 93, 0.1) 0%,
        rgba(44, 95, 93, 0.3) 30%,
        rgba(0, 0, 0, 0.7) 60%,
        rgba(0, 0, 0, 0.98) 100%
    );
}

.event-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px; /* matching rsc-card-content */
    z-index: 2;
    color: white;
}

.event-date {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 7px 16px; /* tighter padding matching rsc */
    border-radius: 25px;
    font-size: 11px; /* matching rsc */
    font-weight: 700;
    margin-bottom: 10px; /* matching rsc */
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: 0 3px 15px rgba(44, 95, 93, 0.3);
    transition: all 0.3s ease;
}

.event-card:hover .event-date {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(44, 95, 93, 0.4);
}

.event-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 22px; /* matching rsc-card-content h3 */
    font-weight: 600;
    margin-bottom: 8px; /* matching rsc */
    color: white;
    line-height: 1.2; /* matching rsc */
    letter-spacing: 0.5px;
}

.event-card p {
    font-size: 13px; /* matching rsc */
    line-height: 1.5; /* matching rsc */
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px; /* matching rsc */
    letter-spacing: 0.3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.event-card:hover p {
    color: rgba(255, 255, 255, 1);
}

.event-location {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.event-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 24px;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    text-transform: uppercase;
}

.event-card:hover .event-link {
    background: white;
    color: var(--primary-color);
    border-color: white;
    gap: 12px;
}

.event-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.reveal.active .event-controls {
    opacity: 1;
    transform: translateY(0);
}

.event-nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary-gradient);
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(44, 95, 93, 0.25);
    position: relative;
    overflow: hidden;
}

.event-nav-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.event-nav-btn:hover::before {
    width: 100%;
    height: 100%;
}

.event-nav-btn:hover {
    background: var(--secondary-gradient);
    transform: scale(1.12);
    box-shadow: 0 5px 25px rgba(44, 95, 93, 0.4), 0 0 40px rgba(44, 95, 93, 0.2);
}

.event-nav-btn:active {
    transform: scale(0.95);
}

.event-nav-btn:disabled {
    background: linear-gradient(135deg, #ccc 0%, #999 100%);
    cursor: not-allowed;
    transform: scale(1);
    opacity: 0.5;
}

.event-nav-btn:disabled:hover {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.event-controls.hidden {
    display: none;
}

/* ======================================
   SINGLE CARD CENTERING — all 3 sections
   When only 1 card exists, center it
====================================== */
.event-grid:has(> .event-card:only-child) {
    justify-content: center;
}

.regular-shows-grid:has(> .regular-show-card:only-child) {
    justify-content: center;
}

/* ======================================
   REGULAR SHOWS SECTION
====================================== */
.regular-shows-section {
    min-height: auto;
    background: var(--bg-light);
    padding: 100px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark-mode .regular-shows-section {
    background: var(--bg-dark);
}

.regular-shows-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.regular-shows-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active .regular-shows-header {
    opacity: 1;
    transform: translateY(0);
}

.regular-shows-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(44, 95, 93, 0.08);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(44, 95, 93, 0.15);
}

body.dark-mode .regular-shows-badge {
    background: rgba(168, 197, 195, 0.1);
    border-color: rgba(168, 197, 195, 0.2);
    color: var(--primary-light);
}

.regular-shows-badge svg {
    width: 14px;
    height: 14px;
}

.regular-shows-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

body.dark-mode .regular-shows-header h2 {
    color: var(--text-light);
}

.regular-shows-subtitle {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 0;
}

body.dark-mode .regular-shows-subtitle {
    color: #b0b0b0;
}

.regular-shows-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Grid */
.regular-shows-grid {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.reveal.active .regular-shows-grid {
    opacity: 1;
    transform: translateY(0);
}

/* RSC Card — portrait event-card style, 3 per slide */
.regular-show-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    position: relative;
    height: 580px; /* portrait height */
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.regular-show-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(44, 95, 93, 0.2),
        0 0 60px rgba(44, 95, 93, 0.08);
}

body.dark-mode .regular-show-card {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Background image — fills full card via absolute position */
.rsc-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.regular-show-card:hover .rsc-card-bg {
    transform: scale(1.08);
}

/* Gradient overlay — same as event-card */
.regular-show-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 30%,
        rgba(0, 0, 0, 0.6) 60%,
        rgba(0, 0, 0, 0.95) 100%
    );
    z-index: 1;
    transition: opacity 0.4s ease;
}

.regular-show-card:hover::before {
    background: linear-gradient(
        to bottom,
        rgba(44, 95, 93, 0.1) 0%,
        rgba(44, 95, 93, 0.3) 30%,
        rgba(0, 0, 0, 0.7) 60%,
        rgba(0, 0, 0, 0.98) 100%
    );
}

/* Content at bottom — same as event-card-content */
.rsc-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
    color: white;
}

/* Override event-date badge inside rsc card — more compact */
.rsc-card-content .event-date {
    padding: 7px 16px;
    font-size: 11px;
    margin-bottom: 10px;
}

/* Override h3 inside rsc card — smaller and tighter */
.rsc-card-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

/* Override event-desc inside rsc card — 2 lines only */
.rsc-card-content .event-card p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 14px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.rsc-card-content .event-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 14px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.rsc-card-content .event-link {
    font-size: 12px;
    padding: 6px 16px;
}

.regular-show-card:hover .event-link {
    background: white;
    color: var(--primary-color);
    border-color: white;
    gap: 12px;
}

/* Controls */
.regular-shows-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.reveal.active .regular-shows-controls {
    opacity: 1;
    transform: translateY(0);
}

.regular-shows-controls.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 1100px) and (min-width: 769px) {
    .regular-show-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .regular-show-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 460px !important;
    }

    .regular-shows-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        overflow-x: hidden !important;
        touch-action: pan-y !important;
    }

    .regular-shows-grid .regular-show-card {
        margin-right: 0 !important;
    }

    .regular-shows-header h2 {
        font-size: 36px;
    }

    .regular-shows-section {
        padding: 60px 20px;
    }
}

.map-section {
    min-height: 100vh;
    background: #ffffff;
    padding: 100px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark-mode .map-section {
    background: #1a1a1a;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.map-container h2 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active .map-container h2 {
    opacity: 1;
    transform: translateY(0);
}

body.dark-mode .map-container h2 {
    color: #e0e0e0;
}

.map-subtitle {
    text-align: center;
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.reveal.active .map-subtitle {
    opacity: 1;
    transform: translateY(0);
}

body.dark-mode .map-subtitle {
    color: #b0b0b0;
}

.map-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.map-display {
    background: #f8f8f8;
    border-radius: 15px;
    overflow: hidden;
    height: 600px;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.reveal.active .map-display {
    opacity: 1;
    transform: translateX(0);
}

body.dark-mode .map-display {
    background: #2a2a2a;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    color: #5a5a5a;
}

body.dark-mode .map-placeholder {
    color: #b0b0b0;
}

.map-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    box-shadow: 0 6px 25px rgba(44, 95, 93, 0.3);
}

.map-floors {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: calc(4 * 78px + 3 * 15px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.reveal.active .map-floors {
    opacity: 1;
    transform: translateY(0);
}

/* Favorite Button Styles */
.favorite-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
}

body.dark-mode .favorite-btn {
    background: rgba(40, 40, 40, 0.9);
}

.favorite-btn svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #888;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.favorite-btn.active svg {
    fill: #ff4757;
    stroke: #ff4757;
    animation: heartPulse 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes heartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.floor-scroll-indicator.up {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
    padding: 15px 0 0;
    text-align: center;
    font-size: 12px;
    color: #f5f5dc;
    font-weight: 600;
    letter-spacing: 1px;
    pointer-events: none;
    transition: opacity 0.3s ease;
    margin-right: -10px;
}

body.dark-mode .scroll-indicator {
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95), transparent);
}

.scroll-indicator.hidden {
    opacity: 0;
}

.scroll-indicator svg {
    width: 16px;
    height: 16px;
    fill: #f5f5dc;
    animation: bounceDown 1.5s infinite;
    display: block;
    margin: 5px auto 0;
}

@keyframes bounceDown {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

.map-floors {
    -ms-overflow-style: auto;
}

.map-floors::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.floor-item {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 78px;
}

body.dark-mode .floor-item {
    background: #2a2a2a;
}

.floor-item:hover {
    border-color: #f5f5dc;
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 5px 15px rgba(245, 245, 220, 0.2);
}

.floor-item.active {
    background: #f5f5dc;
    border-color: #f5f5dc;
}

.floor-item.active h4,
.floor-item.active p {
    color: #2c5f5d;
}

.floor-item h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

body.dark-mode .floor-item h4 {
    color: #e0e0e0;
}

.floor-item p {
    font-size: 13px;
    color: #5a5a5a;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.floor-item:hover p,
.floor-item.active p {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

body.dark-mode .floor-item p {
    color: #b0b0b0;
}

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

    .dining-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-wrapper {
        grid-template-columns: 1fr;
    }

    .map-display {
        height: 400px;
    }

    .parking-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .event-section,
    .dining-section,
    .map-section,
    .parking-section {
        padding: 60px 20px;
    }

    .event-container h2,
    .dining-container h2,
    .map-container h2,
    .parking-container h2 {
        font-size: 36px;
    }

    .event-card {
        height: 460px;
    }

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

    .parking-features {
        grid-template-columns: 1fr;
    }
}

footer {
    background: linear-gradient(135deg, #2c5f5d 0%, #1a3a38 100%);
    color: white;
    padding: 80px 40px 30px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="rgba(245, 245, 220,0.02)"/><circle cx="50" cy="50" r="30" fill="rgba(245, 245, 220,0.03)"/></svg>');
    opacity: 0.5;
}

body.dark-mode footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.footer-column h3 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
    color: white;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: "→";
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #f5f5dc;
    transform: translateX(10px);
}

.footer-links a:hover::before {
    left: -15px;
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    fill: #f5f5dc;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #f5f5dc;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.footer-social-link:hover {
    background: #f5f5dc;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(245, 245, 220, 0.3);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 40px 0 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand-logo {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: white;
    letter-spacing: 1px;
}

.footer-brand-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

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

    .experience-wrapper {
        flex-direction: column;
    }

    .experience-left {
        flex: none;
        width: 100%;
        padding-left: 0;
        text-align: center;
    }

    .experience-cards {
        width: 100%;
        height: 500px;
    }

    .tenant-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .sidebar {
        width: 100%;
        right: -100%;
        padding: 80px 30px 120px;
    }

    .sidebar-logo {
        left: 30px;
        top: 25px;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .contact-circle {
        display: none;
    }

    .dark-mode-toggle {
        bottom: 20px;
        right: 20px;
    }

    .about-section {
        padding: 60px 20px;
    }

    .about-container h2 {
        font-size: 36px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .divider {
        display: none;
    }

    .tenant-section {
        padding: 60px 20px;
    }

    .tenant-container h2 {
        font-size: 36px;
    }

    .tenant-card {
        flex: 0 0 calc(50% - 15px);
    }

    /* .experience-section {
        padding: 60px 20px;
    } */

    .experience-cards {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }

    .experience-card {
        height: 200px;
        flex: none !important;
    }

    .experience-card h4 {
        writing-mode: horizontal-tb;
        font-size: 24px;
    }

    .experience-card-content {
        left: 50%;
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
        width: 100%;
        padding: 0 20px;
        text-align: center;
        opacity: 1 !important;
        pointer-events: auto;
    }

    .experience-card-title-vertical {
        display: none;
    }

    footer {
        padding: 60px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tenant-card {
        flex: 0 0 100%;
    }
}

/* Tenant Search Styling */
.tenant-search-wrapper {
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.tenant-search-bar {
    display: flex;
    align-items: center;
    background: rgba(44, 95, 93, 0.05);
    border: 1px solid rgba(44, 95, 93, 0.1);
    border-radius: 50px;
    padding: 15px 30px;
    width: 100%;
    max-width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

body.dark-mode .tenant-search-bar {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.tenant-search-bar:focus-within {
    background: white;
    box-shadow: 0 10px 30px rgba(44, 95, 93, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

body.dark-mode .tenant-search-bar:focus-within {
    background: var(--card-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.tenant-search-bar svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

body.dark-mode .tenant-search-bar svg {
    stroke: var(--accent-color);
}

.tenant-search-bar input {
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    width: 100%;
    outline: none;
    font-family: inherit;
}

body.dark-mode .tenant-search-bar input {
    color: var(--text-light);
}

.tenant-search-bar input::placeholder {
    color: rgba(44, 95, 93, 0.4);
    font-weight: 400;
}

body.dark-mode .tenant-search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.tenant-content {
    width: 100%;
    position: relative;
    padding-right: 20px;
}

@media (max-width: 1023px) {
    .tenant-content {
        padding-right: 0;
    }
}

.tenant-scroll-indicator {
    position: absolute;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    opacity: 1 !important;
    transition: all 0.3s ease;
    z-index: 5;
    pointer-events: none;

    background: rgba(255, 255, 255, 0.85);

    backdrop-filter: saturate(180%) blur(12px);

    -webkit-backdrop-filter: saturate(180%) blur(12px);
    padding: 10px 20px;

    border-radius: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.5);

    border: none;
}

.tenant-scroll-indicator.right {
    right: 20px;
}

.tenant-scroll-indicator.left {
    left: 20px;
    flex-direction: row;
}

body.dark-mode .tenant-scroll-indicator {
    color: var(--text-light);
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.tenant-scroll-indicator.hidden {
    opacity: 0 !important;
    visibility: hidden;
    transform: scale(0.9);
}

.tenant-scroll-indicator svg {
    width: 20px;
    height: 20px;
    fill: none;

    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tenant-scroll-indicator.right svg {
    animation: bounceRight 2s ease-in-out infinite;
}

.tenant-scroll-indicator.left svg {
    animation: bounceLeft 2s ease-in-out infinite;
}

body.dark-mode .tenant-scroll-indicator svg {
    fill: none;
    stroke: var(--text-light);
}

@keyframes bounceRight {
    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

@keyframes bounceLeft {
    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-5px);
    }
}

@media (max-width: 768px) {
    .tenant-scroll-indicator {
        font-size: 10px;
        bottom: 15px;
        right: 15px;
    }

    .tenant-scroll-indicator svg {
        width: 16px;
        height: 16px;
    }
}

.tenant-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scrollbar-width: none;

    -ms-overflow-style: none;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.tenant-grid::-webkit-scrollbar {
    width: 8px;
    height: 4px;
}

.tenant-grid-wrapper {
    position: relative;
    width: 100%;
}

.tenant-nav-btn {
    position: absolute;
    top: 31%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(44, 95, 93, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    opacity: 0;
}

.tenant-grid-wrapper:hover .tenant-nav-btn {
    opacity: 1;
}

.tenant-nav-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(44, 95, 93, 0.25);
    border-color: var(--primary-color);
}

.tenant-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.tenant-nav-btn.prev {
    left: 10px;
}

.tenant-nav-btn.next {
    right: 10px;
}

.tenant-nav-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    transition: stroke 0.3s ease;
}

.tenant-nav-btn:hover svg {
    stroke: var(--secondary-color);
}

body.dark-mode .tenant-nav-btn {
    background: rgba(40, 40, 40, 0.95);
    border-color: rgba(168, 197, 195, 0.2);
}

body.dark-mode .tenant-nav-btn:hover {
    background: rgba(50, 50, 50, 1);
    border-color: var(--accent-color);
}

body.dark-mode .tenant-nav-btn svg {
    stroke: var(--accent-color);
}

body.dark-mode .tenant-nav-btn:hover svg {
    stroke: var(--text-light);
}

@media (max-width: 1024px) {
    .tenant-nav-btn {
        opacity: 1;
        width: 40px;
        height: 40px;
    }

    .tenant-nav-btn.prev {
        left: 5px;
    }

    .tenant-nav-btn.next {
        right: 5px;
    }

    .tenant-nav-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .tenant-nav-btn {
        width: 36px;
        height: 36px;
    }

    .tenant-nav-btn.prev {
        left: 5px;
    }

    .tenant-nav-btn.next {
        right: 5px;
    }

    .tenant-nav-btn svg {
        width: 18px;
        height: 18px;
    }
}

.tenant-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    opacity: 1 !important;
    transform: none !important;

    flex-shrink: 0;
    scroll-snap-align: start;
    touch-action: pan-y pinch-zoom;
}

@media (min-width: 1024px) {
    .tenant-card {
        min-width: calc((100% - 3rem) / 3);

        max-width: calc((100% - 3rem) / 3);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .tenant-card {
        min-width: calc((100% - 1.5rem) / 2);

        max-width: calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 767px) {
    .tenant-card {
        min-width: calc(100% - 40px);
        max-width: calc(100% - 40px);
    }
}

.tenant-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 30px rgba(44, 95, 93, 0.15);
}

body.dark-mode .tenant-card {
    background: rgba(40, 40, 40, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

.tenant-logo {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 20px;
    position: relative;
}

body.dark-mode .tenant-logo {
    background: rgba(255, 255, 255, 0.05);
}

.tenant-logo img {
    max-width: 120px;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.tenant-card:hover .tenant-logo img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

.tenant-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.floor-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #f5f5dc 0%, #e8e6ca 100%);
    color: #2c5f5d;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(245, 245, 220, 0.3);
}

.tenant-info h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 700;
}

body.dark-mode .tenant-info h3 {
    color: #e0e0e0;
}

.tenant-category {
    font-size: 13px;
    color: #6a7a78;
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tenant-category svg {
    width: 14px;
    height: 14px;
    fill: #f5f5dc;
}

.tenant-meta {
    margin-top: auto;
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #666;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark-mode .tenant-meta {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item svg {
    width: 14px;
    height: 14px;
    fill: #f5f5dc;
}

.see-details-btn {
    margin-top: 18px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f5f5dc 0%, #e8e6ca 100%);
    border: none;
    color: #2c5f5d;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(245, 245, 220, 0.25);
    position: relative;
    overflow: hidden;
}

.see-details-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.see-details-btn:hover::before {
    left: 100%;
}

.see-details-btn:hover {
    background: linear-gradient(135deg, #e8e6ca 0%, #d6d4b6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 245, 220, 0.4);
}

.see-details-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.see-details-btn:hover svg {
    transform: translateX(3px);
}

.tenant-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tenant-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-mode .modal-overlay {
    background: rgba(0, 0, 0, 0.85);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tenant-modal.active .modal-container {
    transform: scale(1) translateY(0);
}

body.dark-mode .modal-container {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Modal Action Buttons */
.modal-close-btn,
.favorite-btn,
.share-btn {
    position: absolute;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modal-close-btn {
    top: 15px;
    right: 15px;
}
.favorite-btn {
    top: 15px;
    left: 15px;
}
.share-btn {
    top: 15px;
    left: 67px;
}

@media (max-width: 768px) {
    .modal-close-btn,
    .favorite-btn,
    .share-btn {
        z-index: 1000; /* Ensure actions are above the sticky header */
    }
}

.modal-close-btn:hover,
.favorite-btn:hover,
.share-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.modal-close-btn:hover {
    transform: rotate(90deg) scale(1.1);
}

.modal-close-btn svg {
    width: 20px;
    height: 20px;
    stroke: #1a1a1a;
    stroke-width: 2.5;
}
.favorite-btn svg {
    width: 22px;
    height: 22px;
    fill: #999;
    transition: all 0.3s ease;
}
.favorite-btn.active svg {
    fill: #ff4757;
    animation: heartBeat 0.5s ease;
}
.share-btn svg {
    width: 20px;
    height: 20px;
    stroke: #2c5f5d;
    stroke-width: 2.5;
}

body.dark-mode .modal-close-btn,
body.dark-mode .favorite-btn,
body.dark-mode .share-btn {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .modal-close-btn svg {
    stroke: #fff;
}

@keyframes heartBeat {
    0%,
    100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1.1);
    }
    75% {
        transform: scale(1.2);
    }
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 90vh;
    overflow: hidden;
}

@media (max-width: 768px) {
    .modal-content {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }
}

.modal-carousel {
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
}

body.dark-mode .modal-carousel {
    background: rgba(20, 20, 20, 0.8);
}

.carousel-images {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.carousel-image {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.carousel-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    z-index: 20;
}

.modal-carousel:hover .carousel-nav,
.event-modal-carousel:hover .carousel-nav,
.event-modal-carousel.has-multiple-images .carousel-nav {
    opacity: 1;
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

body.dark-mode .carousel-nav {
    background: rgba(50, 50, 50, 0.9);
}

body.dark-mode .carousel-nav:hover {
    background: rgba(60, 60, 60, 1);
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    stroke: #2c3e50;
}

body.dark-mode .carousel-nav svg {
    stroke: #e0e0e0;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

body.dark-mode .carousel-indicator {
    background: rgba(255, 255, 255, 0.3);
}

body.dark-mode .carousel-indicator.active {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-swipe-hint {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 5;
    pointer-events: none;
}

.carousel-swipe-hint.hidden {
    opacity: 0;
}

body.dark-mode .carousel-swipe-hint {
    background: rgba(255, 255, 255, 0.15);
}

.carousel-swipe-hint svg {
    width: 16px;
    height: 16px;
    stroke: white;
    animation: swipeHintBounce 2s ease-in-out infinite;
}

.carousel-swipe-hint svg:first-child {
    animation-delay: 0s;
}

.carousel-swipe-hint svg:last-child {
    animation-delay: 0.5s;
}

@keyframes swipeHintBounce {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-3px);
    }
}

.carousel-swipe-hint svg:last-child {
    animation-name: swipeHintBounceRight;
}

@keyframes swipeHintBounceRight {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(3px);
    }
}

@media (max-width: 768px) {
    .carousel-swipe-hint {
        font-size: 10px;
        padding: 10px 18px;
        gap: 8px;
    }

    .carousel-swipe-hint svg {
        width: 14px;
        height: 14px;
    }
}

.modal-details {
    padding: 40px;
    overflow-y: auto;
    max-height: 90vh;
}

@media (max-width: 768px) {
    .modal-details {
        padding: 30px 20px;
    }
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.dark-mode .modal-header {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.modal-logo {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

body.dark-mode .modal-logo {
    background: #2a2a2a;
}

.modal-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-title {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-floor-badge {
    display: inline-flex;
    padding: 6px 14px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
}

.modal-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

body.dark-mode .modal-title h2 {
    color: #fff;
}

.modal-category {
    font-size: 15px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

body.dark-mode .modal-category {
    color: #aaa;
}

.modal-category svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-color);
}

.modal-info {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.modal-info-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(44, 95, 93, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.modal-info-item:hover {
    background: rgba(44, 95, 93, 0.1);
    transform: translateX(5px);
}

body.dark-mode .modal-info-item {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .modal-info-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.modal-info-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

body.dark-mode .modal-info-item svg {
    stroke: var(--accent-color);
}

.modal-info-item div {
    flex: 1;
}

.info-label {
    display: block;
    font-size: 12px;
    color: var(--secondary-color);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

body.dark-mode .info-value {
    color: var(--text-light);
}

.modal-description {
    padding: 20px;
    background: rgba(44, 95, 93, 0.03);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

body.dark-mode .modal-description {
    background: rgba(255, 255, 255, 0.03);
}

.modal-description p {
    line-height: 1.8;
    color: var(--text-dark);
}

body.dark-mode .modal-description p {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }

    .modal-carousel {
        min-height: 300px;
    }

    .carousel-image {
        padding: 20px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }

    .modal-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding-bottom: 25px;
    }

    .modal-logo {
        width: 100px;
        height: 100px;
    }

    .modal-title {
        align-items: center;
    }

    .modal-title h2 {
        font-size: 24px;
    }

    .modal-close-btn,
    .favorite-btn,
    .share-btn {
        width: 38px;
        height: 38px;
        top: 10px;
    }

    .modal-close-btn {
        right: 10px;
    }
    .favorite-btn {
        left: 10px;
    }
    .share-btn {
        left: 58px;
    }
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    display: none;
    width: 100%;
}

.empty-state svg {
    width: 80px;
    height: 80px;
    fill: #f5f5dc;
    opacity: 0.5;
    margin-bottom: 15px;
}

.empty-state h3 {
    font-size: 20px;
    color: #2c3e50;
}

body.dark-mode .empty-state h3 {
    color: #ddd;
}

.map-floors {
    background: white;

    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #2c3e50;
    position: relative;

    overflow: hidden;

    padding: 0;
}

.floor-list-wrapper {
    padding: 1.5rem;
    max-height: 450px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scrollbar-width: auto;
    -ms-overflow-style: auto;
}

.floor-list-wrapper::-webkit-scrollbar {
    width: 8px;
}

.floor-list-wrapper::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.floor-list-wrapper::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

body.dark-mode .floor-list-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .floor-list-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
}

.floor-scroll-indicator {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;

    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    pointer-events: none;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

body.dark-mode .floor-scroll-indicator {
    background: rgba(40, 40, 40, 0.85);
    color: white;
}

.floor-scroll-indicator svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.floor-scroll-indicator.up {
    top: 15px;
    animation: bounceUp 2s infinite;
}

.floor-scroll-indicator.down {
    bottom: 15px;
    animation: bounceDown 2s infinite;
}

.floor-scroll-indicator.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
}

@keyframes bounceUp {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes bounceDown {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(5px);
    }
}

body.dark-mode .map-floors {
    background: rgba(40, 40, 40, 0.6);
    border-color: rgba(255, 255, 255, 0.05);
}

.floor-item {
    padding: 1rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: transparent;
}

.floor-item:hover {
    background: rgba(245, 245, 220, 0.1);
    transform: translateX(5px);
}

.floor-item.active {
    background: var(--primary-gradient);

    border-color: transparent;
    box-shadow: 0 5px 15px rgba(245, 245, 220, 0.3);
    transform: translateX(5px);
}

.floor-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;

    margin-bottom: 4px;
    transition: color 0.3s ease;
}

body.dark-mode .floor-item h4 {
    color: #e0e0e0;
}

.floor-item p {
    font-size: 12px;
    color: #6a7a78;
    margin: 0;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.floor-item:hover p {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.floor-item.active h4 {
    color: white !important;
}

.floor-item.active p {
    color: rgba(255, 255, 255, 0.9) !important;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.map-wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
}

@media (min-width: 1024px) {
    .map-wrapper {
        display: grid;
        grid-template-columns: 1fr 400px;

        align-items: start;
        gap: 40px;
    }

    .map-floors {
        order: 2;
        display: flex !important;

        position: sticky;
        top: 2rem;
    }

    .map-display {
        order: 1;
        background: transparent;
        box-shadow: none;
        height: auto;
        overflow: visible;
        min-width: 0;

        width: 100%;
    }
}

/* ===== TOAST NOTIFICATION ===== */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    pointer-events: none;
}

.toast-notification.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-notification.success {
    border-left: 4px solid #2c5f5d;
}

.toast-notification svg {
    color: #2c5f5d;
}

.toast-notification span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

body.dark-mode .toast-notification {
    background: #2a2a2a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

body.dark-mode .toast-notification span {
    color: #eee;
}

/* Instagram Section */
.instagram-section {
    padding: 100px 40px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

body.dark-mode .instagram-section {
    background: var(--bg-dark);
}

.instagram-container {
    max-width: 1400px;
    margin: 0 auto;
}

.instagram-header {
    text-align: center;
    margin-bottom: 60px;
}

.instagram-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

body.dark-mode .instagram-header h2 {
    color: var(--text-light);
}

.instagram-header p {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.instagram-header p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

body.dark-mode .instagram-header p a {
    color: var(--accent-color);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 95, 93, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(5px);
}

.instagram-overlay svg {
    width: 40px;
    height: 40px;
    color: white;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.instagram-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

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

.instagram-item:hover .instagram-overlay svg {
    transform: scale(1);
}

.instagram-footer {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.ig-hidden {
    display: none;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(44, 95, 93, 0.3);
}

.instagram-btn:hover {
    background: var(--highlight-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(201, 169, 110, 0.4);
}

/* Responsive Instagram */
@media (max-width: 1024px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .instagram-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .instagram-section {
        padding: 60px 20px;
    }
    .instagram-grid {
        gap: 15px;
    }
    .instagram-header h2 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
}

/* Visual Map Container Styles */
.visual-map-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark-mode .visual-map-container {
    background: #2a2a2a;
}

.visual-map-container img {
    max-width: none; /* Allow image to be larger than container for coordinates */
    height: auto;
    display: block;
}

.map-marker {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 100;
    pointer-events: none;
    transform: translate(-50%, -100%);
}

.marker-pin {
    width: 12px;
    height: 12px;
    background: #ff3b3b;
    border: 2px solid #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(255, 59, 59, 0.5);
    z-index: 2;
}

.marker-pulse {
    width: 30px;
    height: 30px;
    background: rgba(255, 59, 59, 0.4);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: markerPulse 1.5s infinite;
    z-index: 1;
}

@keyframes markerPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Modal Map Header & Back Button */
.modal-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.modal-map-back {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    color: #2c3e50;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-map-back:hover {
    background: #f5f5dc;
    border-color: #e8e6ca;
    transform: translateX(-3px);
}

.modal-map-back svg {
    width: 16px;
    height: 16px;
}

.modal-map-title {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modal Map Display */
.modal-map-wrapper {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.02);
}

.modal-map-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    max-width: none;
}

/* Marker with Logo */
.map-marker-logo {
    position: absolute;
    width: 45px;
    height: 45px;
    z-index: 100;
    pointer-events: none;
    transform: translate(-50%, -100%); /* Tip points to coordinate */
}

.logo-pin {
    width: 38px;
    height: 38px;
    background: #ffffff;
    border: 3px solid #f5f5dc;
    border-radius: 50% 50% 50% 0; /* Leaf shape pointing to center */
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -19px;
    margin-left: -19px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 2;
    background: white;
}

.logo-pin img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transform: rotate(45deg); /* Counter-rotate image back to upright */
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -14px;
    margin-left: -14px;
}

.map-marker-logo .marker-pulse {
    width: 50px;
    height: 50px;
    background: rgba(245, 245, 220, 0.6);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: logoMarkerPulse 2s infinite;
    z-index: 1;
}

@keyframes logoMarkerPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Dark Mode Adjustments */
body.dark-mode .modal-map-back {
    background: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.1);
    color: #ecf0f1;
}

body.dark-mode .modal-map-back:hover {
    background: #333;
}

body.dark-mode .modal-map-title {
    color: #ecf0f1;
}

body.dark-mode .modal-map-wrapper {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .logo-pin {
    background: #333;
    border-color: #2c5f5d;
}

/* View Transitions */
#modalInfoView,
#modalMapView {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile Distraction-Free Map View */
@media (max-width: 768px) {
    .tenant-modal.map-active-mobile .modal-container {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .tenant-modal.map-active-mobile .modal-carousel {
        display: none !important;
    }

    .tenant-modal.map-active-mobile .modal-content {
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
        background: #fff;
    }

    body.dark-mode .tenant-modal.map-active-mobile .modal-content {
        background: #1a1a1a;
    }

    .tenant-modal.map-active-mobile .modal-details {
        flex: 1;
        padding: 0; /* Remove padding for fullscreen map */
        display: flex;
        flex-direction: column;
        overflow: auto; /* Allow scrolling if map is large */
    }

    .tenant-modal.map-active-mobile #modalMapView {
        display: block; /* Use block for natural height */
        width: 100%;
    }

    .tenant-modal.map-active-mobile .modal-map-header {
        padding: 70px 20px 15px; /* Added 70px top padding to avoid overlap with actions */
        background: rgba(255, 255, 255, 1); /* Opaque for better clarity */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 500; /* Higher than markers (100) but lower than buttons (1000) */
        margin-bottom: 0;
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    body.dark-mode .tenant-modal.map-active-mobile .modal-map-header {
        background: rgba(30, 30, 30, 1);
        border-bottom-color: rgba(255, 255, 255, 0.05);
    }

    .tenant-modal.map-active-mobile .modal-map-back {
        width: 100%;
        justify-content: center;
        padding: 12px;
        background: var(--primary-color);
        color: white;
        border: none;
        font-size: 14px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .tenant-modal.map-active-mobile .modal-map-back svg {
        stroke: white;
    }

    .tenant-modal.map-active-mobile .modal-map-title {
        text-align: center;
        width: 100%;
        margin-top: 5px;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.7;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .modal-map-floor-badge {
        display: inline-block;
        background: var(--primary-color);
        color: white;
        padding: 4px 12px;
        border-radius: 12px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        box-shadow: 0 2px 8px rgba(44, 95, 93, 0.2);
    }

    body.dark-mode .modal-map-floor-badge {
        background: #5fcfda;
        color: #1a1a1a;
    }

    .tenant-modal.map-active-mobile .modal-map-wrapper {
        width: 100%;
        height: auto;
        position: relative;
        border-radius: 0;
        border: none;
        background: #f8f9fa;
        overflow: hidden; /* Clips markers that go out of bounds */
    }

    body.dark-mode .tenant-modal.map-active-mobile .modal-map-wrapper {
        background: #111;
    }

    .tenant-modal.map-active-mobile .modal-map-wrapper img {
        height: auto;
        width: 100%;
        display: block;
    }

    .tenant-modal.map-active-mobile .modal-close-btn {
        top: 15px;
        right: 15px;
        background: white;
        color: #2c3e50;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        z-index: 10001;
    }

    body.dark-mode .tenant-modal.map-active-mobile .modal-close-btn {
        background: #333;
        color: #fff;
    }
}

.back-to-grid-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 18px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 101;
    transition: all 0.3s ease;
}

.back-to-grid-btn:hover {
    background: var(--secondary-color);
    transform: translateX(-5px);
}

.back-to-grid-btn svg {
    width: 14px;
    height: 14px;
}

/* ========================================
   #1 HERO IMAGE SLIDER
   ======================================== */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s ease;
}

.hero-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.3);
}

/* ========================================
   #4 EXPERIENCE SECTION SUBTITLE
   ======================================== */
.experience-subtitle {
    font-size: 0.92rem;
    color: var(--secondary-color);
    margin-top: -10px;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    font-weight: 400;
    opacity: 0.85;
}

body.dark-mode .experience-subtitle {
    color: var(--accent-color);
}

/* ========================================
   #5 EVENT DESCRIPTION TRUNCATE
   ======================================== */
.event-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========================================
   #7 MOBILE STICKY CTA BAR
   ======================================== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(44, 95, 93, 0.12);
    box-shadow: 0 -4px 20px rgba(44, 95, 93, 0.12);
    padding: 8px 0 max(8px, env(safe-area-inset-bottom));
}

body.dark-mode .mobile-sticky-cta {
    background: rgba(26, 31, 30, 0.97);
    border-top: 1px solid rgba(168, 197, 195, 0.15);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 8px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.mobile-cta-btn:hover,
.mobile-cta-btn:active {
    background: rgba(44, 95, 93, 0.08);
    color: var(--primary-color);
    transform: translateY(-1px);
}

body.dark-mode .mobile-cta-btn {
    color: var(--accent-color);
}

.mobile-cta-btn svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-color);
    transition: stroke 0.2s ease;
}

body.dark-mode .mobile-cta-btn svg {
    stroke: var(--accent-color);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }

    /* Beri ruang di bawah agar konten footer tidak ketutupan sticky bar */
    footer {
        padding-bottom: 70px;
    }

    /* Geser dark mode toggle agar tidak overlapping dengan sticky bar */
    .dark-mode-toggle {
        bottom: 85px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* ===================================================
   REGULAR SHOWS SECTION
   =================================================== */

.regular-shows-section {
    background: var(--bg-light);
    padding: 70px 40px;
    position: relative;
    overflow: hidden;
}

body.dark-mode .regular-shows-section {
    background: var(--bg-dark);
}

.regular-shows-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.regular-shows-header {
    text-align: center;
    margin-bottom: 60px;
}

.regular-shows-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.3);
    color: #c9a96e;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.regular-shows-badge svg {
    width: 14px;
    height: 14px;
    stroke: #c9a96e;
}

.regular-shows-header h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 1px;
    margin-bottom: 12px;
    line-height: 1.2;
}

body.dark-mode .regular-shows-header h2 {
    color: var(--text-light);
}

.regular-shows-subtitle {
    color: #666;
    font-size: 15px;
    letter-spacing: 0.5px;
}

body.dark-mode .regular-shows-subtitle {
    color: #999;
}

/* Grid Layout — override to flex horizontal slider (matches main block above) */
.regular-shows-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 30px !important;
    overflow: hidden !important;
    grid-template-columns: unset !important;
    justify-content: unset !important;
}

/* Card — force horizontal 3-per-slide (override second block) */
.regular-show-card {
    flex: 0 0 calc(33.333% - 20px) !important;
    min-width: calc(33.333% - 20px) !important;
    display: block !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    background: transparent !important;
    border: none !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    position: relative !important;
    height: 580px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    width: auto !important;
}

body.dark-mode .regular-show-card {
    background: #252a29;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.regular-show-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(201, 169, 110, 0.4);
    border-color: rgba(201, 169, 110, 0.4);
}

body.dark-mode .regular-show-card:hover {
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(201, 169, 110, 0.4);
}

/* Image — portrait-friendly ratio (4:5) */
.rsc-image-wrap {
    position: relative;
    width: 100%;
    padding-top: 125%;
    overflow: hidden;
    flex-shrink: 0;
}

.rsc-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.regular-show-card:hover .rsc-image {
    transform: scale(1.05);
}

.rsc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.55) 100%
    );
}

/* Schedule Badge */
.rsc-schedule-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201, 169, 110, 0.92);
    backdrop-filter: blur(8px);
    color: #1a1200;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.rsc-schedule-badge svg {
    width: 12px;
    height: 12px;
    stroke: #1a1200;
    flex-shrink: 0;
}

/* Content */
.rsc-content {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.rsc-title {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
}

body.dark-mode .rsc-title {
    color: var(--text-light);
}

.rsc-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.dark-mode .rsc-desc {
    color: #999;
}

/* Meta */
.rsc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
}

.rsc-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(201, 169, 110, 0.85);
    font-weight: 500;
}

.rsc-meta-item svg {
    width: 12px;
    height: 12px;
    stroke: rgba(201, 169, 110, 0.85);
    flex-shrink: 0;
}

/* CTA */
.rsc-cta {
    display: inline-block;
    margin-top: auto;
    color: #c9a96e;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: letter-spacing 0.2s ease, opacity 0.2s ease;
    opacity: 0.8;
}

.regular-show-card:hover .rsc-cta {
    letter-spacing: 1px;
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .regular-shows-section {
        padding: 50px 20px;
    }



    .regular-shows-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        overflow-x: visible !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: none !important;
    }

    .regular-shows-grid::-webkit-scrollbar {
        display: none;
    }

    .regular-show-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        width: 100%;
        scroll-snap-align: none !important;
    }

    .regular-shows-header {
        margin-bottom: 30px;
    }

    .rsc-image-wrap {
        padding-top: 100%;
    }
}

@media (max-width: 480px) {
    .rsc-content {
        padding: 18px 18px 20px;
    }
}

/* Single card — center it in flex */
.regular-shows-grid:has(.regular-show-card:only-child) {
    justify-content: center !important;
}

/* ===== EXHIBITION SECTION ===== */
.exhibition-section {
    padding: 40px 40px 10px;
    background: linear-gradient(180deg, #f7f7f5 0%, #ffffff 100%);
    position: relative;
}

body.dark-mode .exhibition-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #1e1e1e 100%);
}

.exhibition-container {
    max-width: 1300px;
    margin: 0 auto;
}

.exhibition-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active .exhibition-header {
    opacity: 1;
    transform: translateY(0);
}

.exhibition-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4a6fa5 0%, #2c4a7c 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(74, 111, 165, 0.35);
}

.exhibition-badge svg {
    width: 14px;
    height: 14px;
    stroke: white;
}

.exhibition-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.2;
}

body.dark-mode .exhibition-header h2 {
    color: #e0e0e0;
}

.exhibition-subtitle {
    font-size: 16px;
    color: #6a7a78;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

body.dark-mode .exhibition-subtitle {
    color: #b0b0b0;
}

.exhibition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 420px));
    justify-content: center;
    gap: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.reveal.active .exhibition-grid {
    opacity: 1;
    transform: translateY(0);
}

.exhibition-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    color: inherit;
}

body.dark-mode .exhibition-card {
    background: #252525;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.exhibition-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(74, 111, 165, 0.18);
}

.exc-image-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.exc-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.exhibition-card:hover .exc-image {
    transform: scale(1.06);
}

.exc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(20, 30, 50, 0.65) 100%
    );
    transition: opacity 0.3s ease;
}

.exc-date-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.92);
    color: #2c4a7c;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    letter-spacing: 0.3px;
}

.exc-date-badge svg {
    width: 12px;
    height: 12px;
}

.exc-content {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.exc-title {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.35;
    transition: color 0.3s ease;
}

body.dark-mode .exc-title {
    color: #e0e0e0;
}

.exhibition-card:hover .exc-title {
    color: #4a6fa5;
}

.exc-desc {
    font-size: 13px;
    color: #6a7a78;
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.dark-mode .exc-desc {
    color: #a0aca8;
}

.exc-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #8a9a98;
    margin-bottom: 18px;
}

.exc-location svg {
    width: 13px;
    height: 13px;
    stroke: #8a9a98;
    flex-shrink: 0;
}

.exc-cta {
    display: inline-flex;
    align-items: center;
    color: #4a6fa5;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: gap 0.3s ease, color 0.3s ease;
    align-self: flex-start;
    padding: 8px 18px;
    border: 1.5px solid #4a6fa5;
    border-radius: 50px;
    gap: 6px;
}

.exhibition-card:hover .exc-cta {
    background: #4a6fa5;
    color: white;
    gap: 10px;
}

@media (max-width: 768px) {
    .exhibition-section {
        padding: 60px 20px;
    }

    .exhibition-header h2 {
        font-size: 36px;
    }

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

/* Single card exhibition \u2014 tetap di tengah sempurna */
.exhibition-grid:has(.exhibition-card:only-child) {
    grid-template-columns: minmax(340px, 420px);
    justify-content: center;
    padding: 0;
}

/* ================================================
   EVENT DETAIL MODAL
   ================================================ */

.event-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-detail-modal.active {
    opacity: 1;
    visibility: visible;
}

.event-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 14, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.event-modal-container {
    position: relative;
    width: 90%;
    max-width: 560px;
    max-height: 90dvh;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow-y: auto;
}

.event-detail-modal.active .event-modal-container {
    transform: translateY(0) scale(1);
}

body.dark-mode .event-modal-container {
    background: #1e2423;
}

.event-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.event-modal-close:hover {
    background: rgba(0, 0, 0, 0.65);
    transform: scale(1.1);
}

.event-modal-close svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
}

.event-modal-hero {
    position: relative;
    width: 100%;
    height: 260px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-color: #2c5f5d;
}

.event-modal-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.6) 100%);
}

.event-modal-hero-content {
    position: absolute;
    bottom: 20px;
    left: 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.event-modal-type-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    width: fit-content;
}

.event-modal-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.event-modal-body {
    padding: 22px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event-modal-title-row h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #1a2422;
    line-height: 1.3;
}

body.dark-mode .event-modal-title-row h2 {
    color: #e8ebe9;
}

.event-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.event-modal-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #5a7c7a;
    background: rgba(44, 95, 93, 0.07);
    border: 1px solid rgba(44, 95, 93, 0.12);
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 500;
}

body.dark-mode .event-modal-meta-item {
    color: #8ba9a7;
    background: rgba(138, 170, 168, 0.1);
    border-color: rgba(138, 170, 168, 0.2);
}

.event-modal-meta-item svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
}

.event-modal-description {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #4a5a58;
    max-height: 130px;
    overflow-y: auto;
    padding-right: 4px;
}

body.dark-mode .event-modal-description {
    color: #a8b8b6;
}

.event-modal-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 4px;
}

.event-modal-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--primary-gradient);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(44, 95, 93, 0.25);
}

.event-modal-detail-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(44, 95, 93, 0.35);
    color: #fff;
    text-decoration: none;
}

.event-modal-detail-btn svg {
    width: 15px;
    height: 15px;
}

.event-modal-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid rgba(44, 95, 93, 0.3);
    border-radius: 50px;
    font-size: 0.83rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: "Montserrat", sans-serif;
}

.event-modal-share-btn:hover {
    background: rgba(44, 95, 93, 0.06);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

body.dark-mode .event-modal-share-btn {
    color: #8ba9a7;
    border-color: rgba(138, 170, 168, 0.3);
}

body.dark-mode .event-modal-share-btn:hover {
    background: rgba(138, 170, 168, 0.08);
}

.event-modal-share-btn svg {
    width: 15px;
    height: 15px;
}

@media (max-width: 600px) {
    .event-modal-container {
        width: 95%;
        max-height: 88dvh;
        border-radius: 16px;
    }

    .event-modal-hero {
        height: 210px;
    }

    .event-modal-title-row h2 {
        font-size: 1.2rem;
    }

    .event-modal-body {
        padding: 18px 18px 24px;
    }

    .event-modal-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .event-modal-detail-btn,
    .event-modal-share-btn {
        justify-content: center;
        text-align: center;
    }
}


/* ========================================
 EVENT DETAIL MODAL (NEW DESIGN)
 ======================================== */
.event-detail-modal {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 10000;
 display: flex;
 align-items: center;
 justify-content: center;
 opacity: 0;
 visibility: hidden;
 transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-detail-modal.active {
 opacity: 1;
 visibility: visible;
}

.event-modal-overlay {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.75);
 backdrop-filter: blur(15px);
 -webkit-backdrop-filter: blur(15px);
}

.event-modal-container {
 position: relative;
 width: 90%;
 max-width: 1100px;
 max-height: 85vh;
 background: white;
 border-radius: 24px;
 overflow: hidden;
 box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
 transform: scale(0.9) translateY(30px);
 transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
 z-index: 10001;
}

.event-detail-modal.active .event-modal-container {
 transform: scale(1) translateY(0);
}

body.dark-mode .event-modal-container {
 background: #1e1e1e;
 border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Close Button */
.event-modal-close {
 position: absolute;
 top: 20px;
 right: 20px;
 width: 40px;
 height: 40px;
 background: rgba(255, 255, 255, 0.9);
 border: none;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 cursor: pointer;
 z-index: 10;
 transition: all 0.3s ease;
 box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.event-modal-close:hover {
 transform: scale(1.1);
 background: white;
}

.event-modal-close svg {
 width: 20px;
 height: 20px;
 stroke: #333;
}

body.dark-mode .event-modal-close {
 background: rgba(40, 40, 40, 0.9);
}

body.dark-mode .event-modal-close svg {
 stroke: white;
}

/* Content Grid */
.event-modal-content {
 display: grid;
 grid-template-columns: 1.2fr 1fr;
 height: 100%;
 min-height: 500px;
}

@media (max-width: 900px) {
 .event-modal-content {
 grid-template-columns: 1fr;
 overflow-y: auto;
 }
 .event-modal-container {
 max-height: 90vh;
 }
}

/* Carousel Section */
.event-modal-carousel {
 position: relative;
 background: #f0f2f0;
 overflow: hidden;
}

body.dark-mode .event-modal-carousel {
 background: #111;
}

.event-modal-carousel .carousel-images {
 display: flex;
 height: 100%;
 transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-modal-carousel .carousel-image {
 min-width: 100%;
 height: 100%;
 display: flex;
 align-items: center;
 justify-content: center;
}

.event-modal-carousel .carousel-image img {
 width: 100%;
 height: 100%;
 object-fit: contain;
}

/* Info Section */
.event-modal-details {
 padding: 40px;
 display: flex;
 flex-direction: column;
 gap: 25px;
 overflow-y: auto;
 max-height: 100%;
 scrollbar-width: thin;
 scrollbar-color: var(--gold) transparent;
}

.event-modal-details::-webkit-scrollbar {
 width: 4px;
}

.event-modal-details::-webkit-scrollbar-track {
 background: transparent;
}

.event-modal-details::-webkit-scrollbar-thumb {
 background: var(--gold);
 border-radius: 10px;
}

.event-modal-header {
 display: flex;
 flex-direction: column;
 gap: 12px;
}

.event-modal-badge {
 padding: 6px 14px;
 background: var(--primary-gradient);
 color: white;
 border-radius: 50px;
 font-size: 11px;
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 1px;
 width: fit-content;
}

.event-modal-header h2 {
 font-size: 28px;
 font-weight: 700;
 color: var(--text-dark);
 line-height: 1.3;
}

body.dark-mode .event-modal-header h2 {
 color: white;
}

.event-modal-info {
 display: grid;
 gap: 15px;
}

.event-modal-info-item {
 display: flex;
 align-items: center;
 gap: 15px;
 padding: 15px;
 background: rgba(0,0,0,0.03);
 border-radius: 12px;
}

body.dark-mode .event-modal-info-item {
 background: rgba(255,255,255,0.05);
}

.event-modal-info-item svg {
 width: 22px;
 height: 22px;
 stroke: var(--primary-color);
 flex-shrink: 0;
}

.event-modal-info-item .info-label {
 display: block;
 font-size: 11px;
 color: #888;
 text-transform: uppercase;
 letter-spacing: 0.5px;
 margin-bottom: 2px;
}

.event-modal-info-item .info-value {
 font-size: 15px;
 font-weight: 600;
 color: var(--text-dark);
}

body.dark-mode .event-modal-info-item .info-value {
 color: #eee;
}

.event-modal-description {
 line-height: 1.7;
 color: #555;
 font-size: 15px;
 max-height: 200px;
 overflow-y: auto;
}

body.dark-mode .event-modal-description {
 color: #ccc;
}

.event-modal-actions {
 margin-top: auto;
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 12px;
}

@media (max-width: 480px) {
 .event-modal-actions {
 grid-template-columns: 1fr;
 }
}

.event-modal-calendar-btn,
.event-modal-share-btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 10px;
 padding: 14px 20px;
 border-radius: 50px;
 font-weight: 600;
 font-size: 14px;
 transition: all 0.3s ease;
 cursor: pointer;
 border: none;
 text-decoration: none;
 width: 100%;
}

.event-modal-calendar-btn {
 background: var(--primary-gradient);
 color: white;
 box-shadow: 0 4px 15px rgba(44, 95, 93, 0.2);
}

.event-modal-calendar-btn:hover {
 transform: translateY(-3px);
 box-shadow: 0 8px 20px rgba(44, 95, 93, 0.3);
}

.event-modal-share-btn {
 background: #f0f0f0;
 color: #333;
 border: 1.5px solid #e0e0e0;
}

.event-modal-share-btn:hover {
 background: #e8e8e8;
 border-color: #d0d0d0;
 transform: translateY(-3px);
}

body.dark-mode .event-modal-share-btn {
 background: rgba(255, 255, 255, 0.05);
 color: #eee;
 border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .event-modal-share-btn:hover {
 background: rgba(255, 255, 255, 0.1);
 border-color: rgba(255, 255, 255, 0.2);
}

.event-modal-calendar-btn svg,
.event-modal-share-btn svg {
 width: 18px;
 height: 18px;
}

.event-modal-calendar-btn svg {
 stroke: white;
}

.event-modal-share-btn svg {
 stroke: #333;
}

body.dark-mode .event-modal-share-btn svg {
 stroke: white;
}

/* ===== SHARE MENU (SHARED) ===== */
.share-menu {
    position: fixed;
    inset: 0;
    z-index: 11000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.share-menu.active {
    opacity: 1;
    visibility: visible;
}

.share-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.share-menu-container {
    position: relative;
    width: 90%;
    max-width: 400px;
    background: white;
    border-radius: 24px;
    padding: 30px;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.share-menu.active .share-menu-container {
    transform: translateY(0);
}

body.dark-mode .share-menu-container {
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.share-menu-header h4 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    color: #2c3e50;
    margin: 0;
}

body.dark-mode .share-menu-header h4 {
    color: #e0e0e0;
}

.share-menu-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.share-menu-close:hover {
    color: #ff4757;
}

.share-menu-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.dark-mode .share-option {
    background: #1a1a1a;
    border-color: #3a3a3a;
}

.share-option:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color, #2c5f5d);
}

body.dark-mode .share-option:hover {
    background: #333;
    border-color: #5fcfda;
}

.share-option svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.share-option:hover svg {
    transform: scale(1.1);
}

.share-option span {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

body.dark-mode .share-option span {
    color: #b0b0b0;
}

#shareCopyLink svg { stroke: #2c3e50; }
#shareWhatsApp svg { fill: #25D366; }
#shareFacebook svg { fill: #1877F2; }
#shareTwitter svg { fill: #1DA1F2; }

body.dark-mode #shareCopyLink svg { stroke: #e0e0e0; }

@media (max-width: 480px) {
    .share-menu-container {
        padding: 20px;
    }
    .share-option {
        padding: 15px;
    }
}
@ m e d i a   ( m i n - w i d t h :   7 6 9 p x )   {   . m o b i l e - o n l y   {   d i s p l a y :   n o n e   ! i m p o r t a n t ;   }   }  
 