/* ==================== ROOM 05 - JAPANESE MINIMALIST DESIGN ==================== */

/* Breadcrumbs positioning - ensure it's below fixed nav */
.breadcrumbs {
    margin-top: 80px;
}

/* Japanese Hero Section */
.room-hero-japanese {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
}

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

.room-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.3s ease;
    opacity: 0.4;
}

.room-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    z-index: 2;
}

.room-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.room-number-japanese {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(72px, 10vw, 180px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.room-number-western {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(24px, 3vw, 48px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 8px;
    margin-bottom: 30px;
    position: relative;
    top: -60px;
}

.room-hero-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 700;
    margin: 0 0 15px;
    color: white;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.3s both;
}

.room-hero-subtitle {
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 300;
    margin: 0 0 40px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.5s both;
}

.japanese-divider {
    width: 100px;
    height: 2px;
    background: white;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.7s both;
}

/* Room Info Section */
.room-info-section {
    padding: 100px 0;
    background: #ffffff;
}

.room-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.room-info-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
}

.room-info-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.room-info-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px;
    line-height: 1.4;
    letter-spacing: 1px;
}

.room-info-capacity {
    font-size: 16px;
    color: #666;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.room-info-description {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 50px;
    font-weight: 300;
}

.room-info-features h3 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 30px;
    letter-spacing: 1px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 0;
    border-left: 3px solid #1a1a1a;
    transition: all 0.3s ease;
    font-size: 15px;
    color: #333;
    font-weight: 300;
}

.features-list li:hover {
    background: #1a1a1a;
    color: white;
    transform: translateX(5px);
}

.feature-icon {
    font-size: 20px;
    flex-shrink: 0;
}

/* Price Card - Japanese Style */
.room-price-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 0;
    padding: 50px 40px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5),
                0 0 100px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    position: sticky;
    top: 100px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.room-price-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.room-price-card:hover::before {
    opacity: 1;
}

.room-price-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
                0 0 120px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border-color: rgba(255, 255, 255, 0.2);
}

.price-card-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.price-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    font-weight: 300;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-value {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

.price-unit {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.price-card-promo {
    background: transparent;
    border: 2px solid white;
    border-radius: 0;
    padding: 30px 25px;
    margin-bottom: 40px;
    text-align: center;
    color: white;
}

.promo-badge {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.promo-price {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.promo-time {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 8px;
    font-weight: 300;
}

.promo-note {
    font-size: 11px;
    opacity: 0.7;
    font-weight: 300;
}

.price-card-additional {
    margin-bottom: 30px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #333;
    font-size: 14px;
    font-weight: 300;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item strong {
    color: white;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
}

.price-card-note {
    background: transparent;
    border-left: 3px solid white;
    padding: 18px;
    border-radius: 0;
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.9;
}

.price-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px;
    background: white;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid white;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.price-card-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.price-card-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.price-card-btn:hover::before {
    width: 300px;
    height: 300px;
}

.price-card-btn:active {
    transform: translateY(0);
}

.price-card-btn svg {
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.price-card-btn:hover svg {
    color: white;
}

/* Gallery Section */
.room-gallery-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.section-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0 0 60px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.room-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay svg {
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

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

/* Gallery Modal */
.gallery-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: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    cursor: pointer;
}

.gallery-modal-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0;
    border: 1px solid #333;
}

.gallery-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 2;
}

.gallery-modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-modal-nav.prev {
    left: -70px;
}

.gallery-modal-nav.next {
    right: -70px;
}

.gallery-modal-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
}

/* CTA Section */
.room-cta-section {
    padding: 100px 0;
    background: #1a1a1a;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: white;
    margin: 0 0 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 50px;
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid white;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-btn.primary {
    background: white;
    color: #1a1a1a;
}

.cta-btn.primary:hover {
    background: transparent;
    color: white;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #1a1a1a;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .room-info-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .room-price-card {
        position: static;
    }

    .gallery-modal-nav.prev {
        left: 10px;
    }

    .gallery-modal-nav.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .room-hero-japanese {
        height: 70vh;
        min-height: 500px;
    }

    .room-number-western {
        top: -40px;
    }

    .room-info-section,
    .room-gallery-section,
    .room-cta-section {
        padding: 60px 0;
    }

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

    .room-price-card {
        padding: 40px 25px;
    }

    .price-value {
        font-size: 42px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}




