@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@700&family=Inter:wght@400;600;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --gold: #d4af37;
    --gold-dim: #a67c00;
    --dark-grey: #121212;
    --light-grey: #2a2a2a;
    --font-heading: 'Montserrat', 'Noto Sans JP', sans-serif;
    --font-accent: 'Playfair Display', serif;
    --font-price: 'Inter', sans-serif;
    --font-body: 'Montserrat', 'Noto Sans JP', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, .logo {
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

h2 {
    font-family: var(--font-accent);
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

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

/* Common Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.dark-section {
    background-color: var(--dark-grey);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-logo {
    height: 60px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a .en {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

.nav-links a .jp {
    font-size: 0.65rem;
    display: block;
    color: #888;
    margin-top: 2px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover .jp {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn .bar {
    width: 25px;
    height: 2px;
    background-color: var(--gold);
    transition: 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.primary-btn {
    background-color: var(--gold);
    color: #000;
}

.primary-btn:hover {
    background-color: var(--gold-dim);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

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

.outline-btn:hover {
    background-color: var(--gold);
    color: #000;
}

.social-btn-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.x-btn {
    background-color: #000;
    color: #fff;
    border: 1px solid #333;
}

.x-btn:hover {
    background-color: #222;
    border-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.social-indicator-text {
    font-size: 0.95rem;
    color: #aaa;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    perspective: 1000px;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
    /* For Ken Burns effect wait for animation */
    animation: zoomInOut 20s infinite alternate;
    transform: scale(1.1); /* Base scale for movement room */
    transition: transform 0.2s cubic-bezier(0.2, 0, 0.2, 1);
    will-change: transform;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    transform-style: preserve-3d;
    transition: transform 0.2s cubic-bezier(0.2, 0, 0.2, 1);
    will-change: transform;
    pointer-events: none; /* Let mouse events pass to hero container for parallax */
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    pointer-events: auto; /* Enable clicks on buttons */
    margin-top: 1rem;
}

.hero-btns .btn {
    min-width: 180px;
}

.hero-logo {
    max-width: 500px;
    width: 85%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    transform: translateZ(120px); /* 3D Depth */
    will-change: transform;
}

@keyframes tracking-in {
    0% { letter-spacing: -0.5em; opacity: 0; }
    40% { opacity: 0.6; }
    100% { opacity: 1; }
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    letter-spacing: 6px;
    transform: translateZ(30px); /* Lift subtitle slightly less */
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--gold);
    font-family: var(--font-heading);
}

.scroll-indicator .line {
    width: 1px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-indicator .line::after {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: var(--gold);
    animation: scrollDown 2s infinite ease-in-out;
}

@keyframes scrollDown {
    0% { top: -50px; }
    100% { top: 50px; }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

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

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

/* Concept Section */
.concept-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.concept-text {
    font-size: 1.1rem;
}

/* Split Layout */
.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.split-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
    pointer-events: none;
}

.split-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.split-image:hover img {
    transform: scale(1.03);
}

.split-text {
    flex: 1;
}

/* Event Section */
.event-content {
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    background-color: var(--light-grey);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-banner {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    background-color: #000;
}

.event-details {
    padding: 1.5rem;
}

.event-date {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

/* DJ Section */
.dj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.dj-card {
    text-align: center;
}

.dj-card img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 2px solid var(--gold);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.dj-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.dj-card h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.dj-title {
    display: block;
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.2rem;
}

.dj-card p {
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.insta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    background: rgba(212, 175, 55, 0.05);
}

.insta-link:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.insta-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Drink & Shisha Menu */
.menu-container, .shisha-content {
    max-width: 900px;
    margin: 0 auto;
}

.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.menu-category h3 {
    border-bottom: 1px solid var(--gold-dim);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.drink-list li, .shisha-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 300;
    font-size: 1.1rem;
    border-bottom: 1px dotted rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
}

.drink-list li span:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    font-weight: 500;
    flex: 1;
    margin-right: 1.5rem;
}

.furigana {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.drink-list .price, .shisha-list .price {
    font-family: var(--font-price);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.shisha-list {
    max-width: 600px;
    margin: 2rem auto;
}

.flavor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.tag {
    background-color: var(--light-grey);
    border: 1px solid var(--gold-dim);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #ccc;
    transition: all 0.3s;
}

.tag:hover {
    background-color: var(--gold);
    color: #000;
}

/* Food Menu */
.food-menu-image {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.menu-poster {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Drink Section Background */
#drink {
    position: relative;
    background-image: linear-gradient(rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.8)), url('assets/drink_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Shisha Section Background */
#shisha {
    position: relative;
    background-image: linear-gradient(rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.8)), url('assets/shisha_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Equipment Section */
#equipment {
    position: relative;
    background-image: linear-gradient(rgba(5, 5, 5, 0.85), rgba(5, 5, 5, 0.85)), url('assets/dj_booth_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.equipment-category h3 {
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.equipment-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 300;
}

/* Rental Section */
.rental-content {
    max-width: 1000px;
    margin: 0 auto;
}

.rental-info {
    background-color: var(--light-grey);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--dark-grey);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.rental-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.rental-plan {
    background-color: var(--dark-grey);
    padding: 2rem;
    border-radius: 4px;
    border-top: 3px solid var(--gold);
}

.rental-plan h4 {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.highlight-label {
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: #000;
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    display: inline-block;
    letter-spacing: 1px;
}

.rental-plan .price {
    font-size: 1.8rem;
    color: var(--gold);
    font-family: var(--font-price);
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 1rem;
}

.rental-plan ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 300;
}

.rental-plan ul li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 0;
}

.note {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.8;
}

.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* Recruit Section */
.recruit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.recruit-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 2.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.recruit-box:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.highlight-box {
    border-color: var(--gold-dim);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.free-label {
    background: linear-gradient(135deg, #f1c40f, var(--gold));
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px rgba(212, 175, 55, 0.3); }
    to { box-shadow: 0 0 15px rgba(212, 175, 55, 0.6); }
}

.recruit-box h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.recruit-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.recruit-details li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.recruit-details li strong {
    color: var(--gold);
    display: inline-block;
    width: 100px;
}

/* Photo Gallery Section */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1 / 1;
}

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

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

.photo-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    transition: background 0.3s;
    pointer-events: none;
}

.photo-item:hover::after {
    background: transparent;
}

/* System Area */
.system-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--light-grey);
    padding-bottom: 1.5rem;
}

.system-item:last-of-type {
    border-bottom: none;
}

.drink-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.drink-list .price {
    font-family: var(--font-heading);
    color: var(--gold);
}

.menu-divider {
    height: 1rem;
    border: none !important;
}

.tax-info {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
}

/* Access Area */
.access-content {
    display: flex;
    gap: 2rem;
    background-color: var(--bg-color);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid var(--light-grey);
}

.info-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-box a {
    color: var(--gold);
}

.info-box a:hover {
    text-decoration: underline;
}

.payment-methods {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.payment-methods h4 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-methods p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.payment-methods span {
    font-size: 0.8rem;
    color: #999;
    display: block;
    margin-top: 0.2rem;
}

.map-container {
    flex: 1;
    min-height: 400px;
    border-radius: 4px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    background-color: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid #111;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

.footer-brand p {
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--light-grey);
    font-size: 0.8rem;
    color: #555;
}

/* Responsive */
@media (max-width: 900px) {
    .split-layout, .split-layout.reverse, .access-content {
        flex-direction: column;
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(5, 5, 5, 0.95);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        border-bottom: 1px solid var(--gold);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 5rem 0;
    }
}
