@charset "utf-8";

/* ── RESET & BASE ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(ellipse at 25% 0%, #270911 0%, #1a0610 30%, #0f0608 60%, #0a0608 100%);
    font-family: 'Inter', sans-serif;
    color: #f5ece6;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* ── MAIN CONTAINER ── */
.container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(37deg, rgba(39, 9, 17, 0.70) 0%, rgba(26, 6, 16, 0.85) 25%, rgba(15, 6, 8, 0.92) 50%, rgba(26, 6, 16, 0.85) 75%, rgba(39, 9, 17, 0.70) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 55px 50px 45px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(180, 60, 60, 0.15);
    border: 1px solid rgba(180, 60, 60, 0.15);
    position: relative;
}

/* ── NAVIGATION MENU ── */
.nav-menu {
    position: absolute;
    top: 24px;
    right: 40px;
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #ffd28f;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #ffd28f;
}
.nav-menu a:hover::after {
    width: 100%;
}
.nav-menu a.active {
    color: #ffd28f;
}
.nav-menu a.active::after {
    width: 100%;
}

/* ── TWO COLUMN LAYOUT ── */
.row {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-top: 10px;
}

.col-left {
    flex: 0 0 55%;
    max-width: 55%;
}

.col-right {
    flex: 0 0 45%;
    max-width: 45%;
    padding: 20px 24px 24px 24px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
}

/* ── SECTION HEADER ── */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.section-header .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #f5ece6;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
}

.section-header .open-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffd28f;
    white-space: nowrap;
}

/* ── GOOGLE MAPS ── */
.map-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(180, 60, 60, 0.12);
    background: rgba(20, 8, 8, 0.2);
    backdrop-filter: blur(4px);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    display: block;
    border: none;
}

/* ── BACK TO TOP ── */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 210, 143, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 210, 143, 0.2);
    color: #ffd28f;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(255, 210, 143, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 210, 143, 0.15);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #ffd28f;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── BADGE ── */
.badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #ffd28f;
    border: 1px solid rgba(255, 210, 143, 0.2);
    padding: 5px 18px;
    border-radius: 100px;
    margin-bottom: 22px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}

/* ── HEADING ── */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.08;
    color: #f5ece6;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.subhead {
    font-size: 22px;
    font-weight: 300;
    color: #bda89a;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
    line-height: 1.6;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
    max-width: 600px;
}

.desc {
    font-size: 15.5px;
    font-weight: 300;
    color: #d4c5bc;
    max-width: 600px;
    margin-bottom: 28px;
    line-height: 1.8;
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

/* ── DIVIDER ── */
hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0;
}

.divider-right {
    margin: 18px 0 20px 0;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #f5ece6;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

/* ── FEATURES LIST ── */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 4px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
}

.features-list li {
    font-size: 13px;
    font-weight: 400;
    color: #d4c5bc;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.features-list li:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 210, 143, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.features-list li .icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #ffd28f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-list li .icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #ffd28f;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.features-list li strong {
    color: #f5ece6;
    font-weight: 500;
}

/* ── INFO BOXES ── */
.info-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-box:hover {
    border-color: rgba(255, 210, 143, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.info-box:last-child {
    margin-bottom: 0;
}

.info-box .icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #ffd28f;
    margin-top: 2px;
}

.info-box .icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #ffd28f;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-box .info-text {
    font-size: 14px;
    font-weight: 300;
    color: #d4c5bc;
    line-height: 1.7;
}

.info-box .info-text strong {
    color: #f5ece6;
    font-weight: 500;
}

.contact-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-box:hover {
    border-color: rgba(255, 210, 143, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.contact-box .icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #ffd28f;
}

.contact-box .icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #ffd28f;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-box .contact-text {
    font-size: 16px;
    font-weight: 500;
    color: #f5ece6;
}

.contact-box .contact-text a {
    color: #ffd28f;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 210, 143, 0.25);
    transition: border-color 0.3s ease;
}

.contact-box .contact-text a:hover {
    border-bottom-color: #ffd28f;
}

.footer-note {
    font-size: 14px;
    font-weight: 300;
    color: #9a8a7e;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 20px;
    line-height: 1.7;
}

/* ── FOOTER STATS ── */
.footer-stats {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #6a5a4e;
}

.footer-stats a {
    color: #bda89a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-stats a:hover {
    color: #ffd28f;
}

/* ── VENUE GALLERY ── */
.gallery-section {
    margin-top: 40px;
    padding-top: 35px;
    border-top: 1px solid rgba(180, 60, 60, 0.12);
    width: 100%;
}

.gallery-section .section-title {
    margin-bottom: 20px;
    font-size: 18px;
    letter-spacing: 1px;
}

.venue-gallery-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.venue-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.venue-gallery-item {
    flex: 0 0 calc(25% - 12px);
    width: calc(25% - 12px);
    aspect-ratio: 1/1;
    background: rgba(60, 20, 20, 0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(180, 60, 60, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

.venue-gallery-item:hover {
    background: rgba(80, 30, 30, 0.35);
    border-color: rgba(180, 60, 60, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.venue-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    position: absolute;
    top: 0;
    left: 0;
}

.venue-gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.venue-gallery-item:hover .overlay {
    opacity: 1;
}

.venue-gallery-item .overlay span {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    background: rgba(255, 210, 143, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 210, 143, 0.2);
}

.venue-gallery-item.empty {
    background: rgba(60, 20, 20, 0.10);
    border: 1px dashed rgba(180, 60, 60, 0.15);
    cursor: default;
}

.venue-gallery-item.empty:hover {
    transform: none;
    box-shadow: none;
    background: rgba(60, 20, 20, 0.10);
}

/* ── GIRLS GALLERY ── */
.girls-gallery-section {
    margin-top: 40px;
    padding-top: 35px;
    border-top: 1px solid rgba(180, 60, 60, 0.12);
    width: 100%;
}

.girls-gallery-section .section-title {
    margin-bottom: 20px;
    font-size: 18px;
    letter-spacing: 1px;
}

.girls-gallery-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.girls-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.girls-gallery-item {
    flex: 0 0 calc(25% - 12px);
    width: calc(25% - 12px);
    aspect-ratio: 1/1;
    background: rgba(60, 20, 20, 0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(180, 60, 60, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

.girls-gallery-item:hover {
    background: rgba(80, 30, 30, 0.35);
    border-color: rgba(180, 60, 60, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.girls-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    position: absolute;
    top: 0;
    left: 0;
}

.girls-gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
    flex-direction: column;
    gap: 6px;
}

.girls-gallery-item:hover .overlay {
    opacity: 1;
}

.girls-gallery-item .overlay span {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    background: rgba(255, 210, 143, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 210, 143, 0.2);
}

.girls-gallery-item .overlay .name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.girls-gallery-item.empty {
    background: rgba(60, 20, 20, 0.10);
    border: 1px dashed rgba(180, 60, 60, 0.15);
    cursor: default;
}

.girls-gallery-item.empty:hover {
    transform: none;
    box-shadow: none;
    background: rgba(60, 20, 20, 0.10);
}

/* ── MODAL / LIGHTBOX ── */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 40px;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(180, 60, 60, 0.15);
    animation: zoomIn 0.3s ease;
    object-fit: contain;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ── MODAL NAME OVERLAY ── */
.modal-name-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 210, 143, 0.15);
    color: #ffd28f;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    pointer-events: none;
    animation: fadeInName 0.4s ease;
}

@keyframes fadeInName {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.modal-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 210, 143, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 210, 143, 0.2);
    color: #ffd28f;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.modal-arrow:hover {
    background: rgba(255, 210, 143, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.modal-arrow.prev {
    left: 30px;
}
.modal-arrow.next {
    right: 30px;
}

.modal-close {
    position: fixed;
    top: 30px;
    right: 40px;
    background: rgba(255, 210, 143, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 210, 143, 0.2);
    color: #ffd28f;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.modal-close:hover {
    background: rgba(255, 210, 143, 0.3);
    transform: rotate(90deg);
}

.modal-counter {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 210, 143, 0.6);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 210, 143, 0.1);
    z-index: 10001;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .venue-gallery-item, .girls-gallery-item {
        flex: 0 0 calc(33.333% - 11px);
        width: calc(33.333% - 11px);
    }
    .modal-content {
        max-width: 90%;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 40px 30px 35px 30px;
    }
    .row {
        gap: 30px;
    }
    .col-left {
        flex: 0 0 52%;
        max-width: 52%;
    }
    .col-right {
        flex: 0 0 48%;
        max-width: 48%;
        padding: 16px 18px 18px 18px;
    }
    h1 {
        font-size: 44px;
    }
    .subhead {
        font-size: 19px;
    }
    .modal-arrow {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .modal-arrow.prev {
        left: 16px;
    }
    .modal-arrow.next {
        right: 16px;
    }
    .nav-menu {
        position: relative;
        top: auto;
        right: auto;
        justify-content: flex-end;
        margin-bottom: 16px;
        gap: 20px;
    }
    .map-container iframe {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 28px 20px 25px 20px;
        border-radius: 20px;
        background: linear-gradient(37deg, rgba(39, 9, 17, 0.80) 0%, rgba(26, 6, 16, 0.92) 25%, rgba(15, 6, 8, 0.96) 50%, rgba(26, 6, 16, 0.92) 75%, rgba(39, 9, 17, 0.80) 100%);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    .row {
        flex-direction: column;
        gap: 28px;
    }
    .col-left {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .col-right {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 16px 18px 18px 18px;
        background: rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    .divider-right {
        margin: 14px 0 16px 0;
    }
    h1 {
        font-size: 42px;
    }
    .subhead {
        font-size: 18px;
    }
    .desc {
        font-size: 14.5px;
    }
    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px 10px;
    }
    .features-list li {
        font-size: 12.5px;
        padding: 7px 10px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    .features-list li:hover {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(255, 210, 143, 0.15);
    }
    .gallery-section {
        margin-top: 30px;
        padding-top: 25px;
    }
    .girls-gallery-section {
        margin-top: 30px;
        padding-top: 25px;
    }
    .venue-gallery-item, .girls-gallery-item {
        flex: 0 0 calc(50% - 6px);
        width: calc(50% - 6px);
    }
    .venue-gallery-item {
        background: rgba(60, 20, 20, 0.30);
        border-color: rgba(180, 60, 60, 0.15);
    }
    .venue-gallery-item:hover {
        background: rgba(80, 30, 30, 0.40);
        border-color: rgba(180, 60, 60, 0.3);
    }
    .girls-gallery-item {
        background: rgba(60, 20, 20, 0.30);
        border-color: rgba(180, 60, 60, 0.15);
    }
    .girls-gallery-item:hover {
        background: rgba(80, 30, 30, 0.40);
        border-color: rgba(180, 60, 60, 0.3);
    }
    .modal {
        padding: 20px;
    }
    .modal-content {
        max-width: 95%;
    }
    .modal-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .nav-menu {
        position: relative;
        top: auto;
        right: auto;
        justify-content: flex-end;
        margin-bottom: 14px;
        gap: 16px;
    }
    .nav-menu a {
        font-size: 12px;
    }
    .map-container iframe {
        height: 180px;
    }
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    .info-box {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    .info-box:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 210, 143, 0.12);
    }
    .contact-box {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    .contact-box:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 210, 143, 0.15);
    }
    .modal-name-overlay {
        font-size: 18px;
        padding: 8px 20px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 12px;
    }
    .container {
        padding: 18px 14px 16px 14px;
        border-radius: 16px;
        background: linear-gradient(37deg, rgba(39, 9, 17, 0.85) 0%, rgba(26, 6, 16, 0.95) 25%, rgba(15, 6, 8, 0.98) 50%, rgba(26, 6, 16, 0.95) 75%, rgba(39, 9, 17, 0.85) 100%);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }
    .row {
        gap: 18px;
    }
    .col-right {
        padding: 14px 14px 16px 14px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
    }
    h1 {
        font-size: 32px;
    }
    .subhead {
        font-size: 16px;
    }
    .desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .features-list {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    .features-list li {
        font-size: 12.5px;
        padding: 7px 10px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    .features-list li:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 210, 143, 0.15);
    }
    .features-list li .icon svg {
        width: 16px;
        height: 16px;
    }
    .info-box .info-text {
        font-size: 13px;
    }
    .info-box .icon svg {
        width: 16px;
        height: 16px;
    }
    .info-box {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    .info-box:hover {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(255, 210, 143, 0.12);
    }
    .contact-box .contact-text {
        font-size: 14px;
    }
    .contact-box .icon svg {
        width: 16px;
        height: 16px;
    }
    .contact-box {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    .contact-box:hover {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(255, 210, 143, 0.15);
    }
    .footer-note {
        font-size: 13px;
        padding-top: 16px;
        margin-top: 16px;
    }
    .divider-right {
        margin: 12px 0 14px 0;
    }
    .badge {
        font-size: 10px;
        padding: 4px 14px;
        margin-bottom: 16px;
        background: rgba(0, 0, 0, 0.3);
    }
    .gallery-section {
        margin-top: 24px;
        padding-top: 20px;
    }
    .girls-gallery-section {
        margin-top: 24px;
        padding-top: 20px;
    }
    .gallery-section .section-title {
        font-size: 15px;
        margin-bottom: 14px;
    }
    .girls-gallery-section .section-title {
        font-size: 15px;
        margin-bottom: 14px;
    }
    .venue-gallery-item, .girls-gallery-item {
        flex: 0 0 calc(50% - 5px);
        width: calc(50% - 5px);
        border-radius: 12px;
    }
    .venue-gallery-item {
        background: rgba(60, 20, 20, 0.35);
        border-color: rgba(180, 60, 60, 0.15);
    }
    .venue-gallery-item:hover {
        background: rgba(80, 30, 30, 0.45);
        border-color: rgba(180, 60, 60, 0.3);
    }
    .girls-gallery-item {
        background: rgba(60, 20, 20, 0.35);
        border-color: rgba(180, 60, 60, 0.15);
    }
    .girls-gallery-item:hover {
        background: rgba(80, 30, 30, 0.45);
        border-color: rgba(180, 60, 60, 0.3);
    }
    .girls-gallery-item .overlay .name {
        font-size: 14px;
    }
    .girls-gallery-item .overlay span {
        font-size: 12px;
        padding: 6px 14px;
    }
    .modal {
        padding: 12px;
    }
    .modal-content {
        max-width: 100%;
    }
    .modal-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .modal-arrow.prev {
        left: 8px;
    }
    .modal-arrow.next {
        right: 8px;
    }
    .modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    .modal-counter {
        bottom: 20px;
        font-size: 12px;
        padding: 6px 16px;
    }
    .modal-name-overlay {
        font-size: 15px;
        padding: 6px 16px;
        bottom: 16px;
        white-space: normal;
        max-width: 80%;
        text-align: center;
    }
    .nav-menu {
        position: relative;
        top: auto;
        right: auto;
        justify-content: flex-start;
        margin-bottom: 12px;
        gap: 14px;
        flex-wrap: wrap;
    }
    .nav-menu a {
        font-size: 11px;
        letter-spacing: 0.3px;
        color: rgba(255, 255, 255, 0.7);
    }
    .nav-menu a:hover {
        color: #ffd28f;
    }
    .nav-menu a.active {
        color: #ffd28f;
    }
    .section-header .open-text {
        font-size: 9px;
        letter-spacing: 1px;
    }
    .section-header .section-title {
        font-size: 13px;
    }
    .map-container iframe {
        height: 150px;
    }
    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
    .footer-stats {
        font-size: 10px;
        margin-top: 30px;
        padding-top: 16px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 14px 10px 12px 10px;
        background: linear-gradient(37deg, rgba(39, 9, 17, 0.90) 0%, rgba(26, 6, 16, 0.97) 25%, rgba(15, 6, 8, 0.99) 50%, rgba(26, 6, 16, 0.97) 75%, rgba(39, 9, 17, 0.90) 100%);
    }
    h1 {
        font-size: 26px;
    }
    .subhead {
        font-size: 14px;
    }
    .col-right {
        padding: 10px 10px 12px 10px;
        background: rgba(255, 255, 255, 0.06);
    }
    .venue-gallery-item, .girls-gallery-item {
        flex: 0 0 calc(50% - 4px);
        width: calc(50% - 4px);
        border-radius: 10px;
    }
    .venue-gallery-item {
        background: rgba(60, 20, 20, 0.40);
    }
    .girls-gallery-item {
        background: rgba(60, 20, 20, 0.40);
    }
    .girls-gallery-item .overlay .name {
        font-size: 12px;
    }
    .nav-menu {
        gap: 10px;
    }
    .nav-menu a {
        font-size: 10px;
    }
    .map-container iframe {
        height: 120px;
    }
    .modal-name-overlay {
        font-size: 13px;
        padding: 4px 12px;
        bottom: 12px;
    }
}