/* ========================================
   CSS Reset & Base
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Zen Old Mincho", "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
    background-image: url('../img/background/marble.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Variables
   ======================================== */
:root {
    --gold: #a27400;
    --gold-dark: #8a6300;
    --white: #fff;
    --shadow: rgba(0,0,0,0.1);
}

/* ========================================
   Header
   ======================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: rgba(255,255,255,0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 96px;
    animation: fadeInDown 1.25s ease;
    box-shadow: 0 2px 20px var(--shadow);
}

.header-inner {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    margin-bottom: 20px;
}

.logo img {
    height: 95px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 80px;
}

nav a {
    color: var(--gold);
    font-size: 13px;
    padding: 5px 0;
    position: relative;
}

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

nav a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    margin: 4px 0;
    transition: 0.3s;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    margin-top: 168px;
    position: relative;
    height: calc(100vh - 168px);
    min-height: 500px;
    overflow: hidden;
}

/* 白いオーバーレイ（本サイト再現） */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 5;
    pointer-events: none;
}

.hero-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Ken Burns効果（画像が少し大きくなりながらフェード） */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); /* 初期状態で拡大済み */
}

.hero-slider .swiper-slide-active img {
    transform: scale(1); /* アクティブ時はリセットしてアニメーション開始 */
    animation: kenBurns 5s ease-out forwards;
}

/* キャッチコピー フェードインアニメーション */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-catchcopy {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    z-index: 10;
    font-size: 42px;
    color: var(--gold);
    text-shadow: 0 0 4px rgba(255,255,255,1);
    text-align: right;
    pointer-events: none;
    opacity: 0;
    animation: fadeInUp 1.5s ease 0.2s forwards;
}

/* ========================================
   Content Wrapper
   ======================================== */
.content-wrapper {
    max-width: 1220px; /* 1100px + padding 60px*2 = 1220px */
    margin: 0 auto;
    padding: 0 60px;
}

/* ========================================
   Sections
   ======================================== */
section {
    width: 100%;
    padding: 30px 0;
}

.section-title {
    text-align: left;
    margin-bottom: 30px;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--gold);
}

.section-title h2 {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 3.4px;
    line-height: 1;
    color: var(--gold);
    display: inline;
}

.section-title .ja {
    font-size: 19px;
    color: var(--gold);
    margin-left: 15px;
}

/* ========================================
   Gallery
   ======================================== */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
}

.gallery-filter button {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 14px;
    cursor: pointer;
    padding: 10px 20px;
    font-family: inherit;
}

.gallery-filter button:hover,
.gallery-filter button.active {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    border-radius: 10px;
}

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

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.6);
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s;
    border-radius: 0 0 10px 10px;
    backdrop-filter: blur(5px);
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.gallery-item .name {
    font-size: 11px;
    color: #333;
    margin-bottom: 3px;
    line-height: 1.4;
}

.gallery-item .price {
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
}

/* ========================================
   Menu
   ======================================== */
.menu-section {
    text-align: center;
}

/* Menu Image (for comparison) */
.menu-image {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.menu-image img {
    display: block;
    width: 100%;
    border-radius: 15px;
}

/* Price List Design */
.price-list {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.price-list-header {
    text-align: center;
    margin-bottom: 35px;
}

.price-list-logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.price-list-title {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--gold);
    margin: 0;
}

.price-category {
    margin-bottom: 30px;
}

.price-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 5px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(162, 116, 0, 0.3);
}

.category-note {
    font-size: 11px;
    color: #888;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.price-tables-row {
    display: flex;
    gap: 20px;
}

.price-table-half {
    flex: 1;
}

.price-table-half table,
.price-table-full {
    width: 100%;
    border-collapse: collapse;
}

.price-table-half thead th {
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    padding: 10px 12px;
    text-align: center;
    background: rgba(162, 116, 0, 0.08);
    border-radius: 5px 5px 0 0;
}

.price-table-half tbody td,
.price-table-full td {
    font-size: 15px;
    color: #555;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(162, 116, 0, 0.1);
}

.price-table-half tbody tr:last-child td,
.price-table-full tr:last-child td {
    border-bottom: none;
}

.price-table-half td:first-child,
.price-table-full td:first-child {
    text-align: left;
}

td.price {
    text-align: right;
    font-weight: 500;
    color: var(--gold);
    white-space: nowrap;
    font-size: 16px;
}

td.price.free {
    color: #e74c3c;
}

.or {
    font-size: 10px;
    color: #999;
    margin: 0 3px;
}

/* ========================================
   Reserve
   ======================================== */
.reserve-content {
    text-align: center;
}

/* 2週間カレンダー */
.reserve-calendar {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) #f0f0f0;
    -webkit-overflow-scrolling: touch;
}

.reserve-calendar::-webkit-scrollbar {
    height: 6px;
}

.reserve-calendar::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.reserve-calendar::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.calendar-day {
    flex: 0 0 auto;
    width: 70px;
    padding: 12px 8px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.calendar-day:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.calendar-day.active {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fff 0%, #fdf8e8 100%);
}

.calendar-day.closed {
    opacity: 0.5;
    cursor: default;
}

.calendar-day.closed:hover {
    transform: none;
    box-shadow: 0 2px 10px var(--shadow);
}

.calendar-day .month {
    font-size: 10px;
    color: #999;
    margin-bottom: 2px;
}

.calendar-day .weekday {
    font-size: 11px;
    color: #666;
    margin-bottom: 3px;
}

.calendar-day .weekday.sun {
    color: #e74c3c;
}

.calendar-day .weekday.sat {
    color: #3498db;
}

.calendar-day .date {
    font-size: 22px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.calendar-day .status {
    font-size: 18px;
    line-height: 1;
}

.calendar-day .status.available {
    color: #27ae60;
}

.calendar-day .status.few {
    color: #f39c12;
}

.calendar-day .status.full {
    color: #95a5a6;
}

.calendar-day .status.closed {
    color: #bdc3c7;
    font-size: 12px;
}

/* 選択日の詳細 */
.reserve-detail {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 30px var(--shadow);
    max-width: 500px;
    margin: 0 auto 30px;
    overflow: hidden;
}

.reserve-detail-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 15px 20px;
}

.reserve-detail-date {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.reserve-detail-slots {
    padding: 20px;
    max-height: 250px;
    overflow-y: auto;
}

.slot-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
}

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

.slot-time {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.slot-status {
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 20px;
}

.slot-status.available {
    background: #e8f8f0;
    color: #27ae60;
}

.slot-status.few {
    background: #fef5e7;
    color: #f39c12;
}

.slot-status.full {
    background: #f5f5f5;
    color: #95a5a6;
}

.slot-status.unavailable {
    background: #ffebee;
    color: #e74c3c;
}

.slot-status.ended {
    background: #f5f5f5;
    color: #95a5a6;
}

.slot-status.holiday {
    background: #f5f5f5;
    color: #95a5a6;
}

.slot-status.ended {
    background: #f0f0f0;
    color: #bdc3c7;
}

/* 予約案内 */
.reserve-contact {
    margin-top: 20px;
}

.reserve-contact p {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.reserve-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.reserve-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
}

.reserve-btn-tel {
    background: var(--white);
    color: var(--gold);
    border: 2px solid var(--gold);
}

.reserve-btn-tel:hover {
    background: var(--gold);
    color: var(--white);
}

.reserve-btn-line {
    background: var(--white);
    color: var(--gold);
    border: 2px solid var(--gold);
}

.reserve-btn-line:hover {
    background: var(--gold);
    color: var(--white);
}

.reserve-btn i {
    font-size: 20px;
}

/* ========================================
   Access
   ======================================== */
.access-map {
    width: 100%;
    height: 450px;
    margin-bottom: 30px;
}

.access-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.access-info {
    text-align: left;
}

.access-info h3 {
    font-size: 12px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1.3;
}

.access-info p {
    font-size: 12px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1.3;
}

/* ========================================
   Contact
   ======================================== */
.contact-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-title {
    font-size: 15px;
    color: var(--gold);
    margin-bottom: 30px;
    font-weight: 400;
    width: 100%;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 30px;
}

.contact-row {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.contact-label {
    font-size: 12px;
    color: var(--gold);
    line-height: 1.8;
    text-align: right;
    min-width: 70px;
}

.contact-value {
    font-size: 12px;
    color: var(--gold);
    line-height: 1.8;
    text-align: left;
}

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

.contact-info a:hover {
    color: var(--gold-dark);
}

.contact-cta {
    margin-bottom: 25px;
    text-align: center;
    width: 100%;
}

.contact-cta h3 {
    font-size: 15px;
    color: var(--gold);
    font-weight: 400;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
    align-self: center;
}

.social-icons a {
    font-size: 32px;
    color: var(--gold);
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--gold-dark);
    transform: scale(1.1);
}

/* ========================================
   Footer
   ======================================== */
footer {
    background: #333;
    padding: 30px 60px;
    text-align: center;
}

footer p {
    font-size: 12px;
    color: var(--gold);
}

/* ========================================
   Responsive - Tablet
   ======================================== */
@media (max-width: 1024px) {
    header {
        padding: 0 40px;
    }
    
    .content-wrapper {
        padding: 0 40px;
    }
    
    footer {
        padding: 30px 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   Responsive - Mobile
   ======================================== */
@media (max-width: 768px) {
    header {
        height: auto;
        padding: 6px 20px;
    }
    
    .header-inner {
        flex-direction: row;
        justify-content: center;
        position: relative;
    }
    
    .logo {
        margin-bottom: 0;
    }
    
    .logo img {
        height: 55px;
    }
    
    nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        padding: 20px;
        box-shadow: 0 5px 20px var(--shadow);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav ul li {
        text-align: center;
        padding: 0;
        border-bottom: 1px solid rgba(162,116,0,0.2);
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 0;
        width: 100%;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        margin-top: 50px;
        height: calc(100vh - 50px);
    }
    
    .hero-catchcopy {
        font-size: 24px;
        text-shadow: 
            0 0 5px rgba(255,255,255,1),
            0 0 10px rgba(255,255,255,1),
            0 0 15px rgba(255,255,255,1),
            0 0 20px rgba(255,255,255,1),
            0 0 30px rgba(255,255,255,1),
            0 0 40px rgba(255,255,255,0.9);
    }
    
    /* スマホ用背景調整 - 大理石が見えるように＆固定 */
    body {
        background: none;
    }
    
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../img/background/marble.jpg');
        background-size: auto 100%;
        background-repeat: repeat;
        background-position: center;
        z-index: -1;
    }
    
    .content-wrapper {
        padding: 0 20px;
    }
    
    section {
        padding: 20px 0;
    }
    
    .section-title h2 {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .section-title .ja {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .gallery-item .overlay {
        transform: translateY(0);
    }
    
    .gallery-filter {
        gap: 20px;
    }
    
    .gallery-filter button {
        font-size: 12px;
        padding: 8px 15px;
    }
    
    .contact-info {
        gap: 3px;
    }
    
    .contact-row {
        flex-direction: row;
        gap: 3px;
    }
    
    .contact-label,
    .contact-value {
        font-size: 11px;
    }
    
    footer {
        padding: 20px;
    }
    
    /* Menu - Mobile */
    .price-list {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .price-list-logo {
        height: 50px;
    }
    
    .price-list-title {
        font-size: 22px;
        letter-spacing: 5px;
    }
    
    .category-title {
        font-size: 18px;
        letter-spacing: 3px;
    }
    
    .price-tables-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .price-table-half tbody td,
    .price-table-full td {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    td.price {
        font-size: 15px;
    }
    
    .price-table-half thead th {
        font-size: 13px;
    }
    
    /* Reserve - Mobile */
    .calendar-day {
        width: 60px;
        padding: 10px 6px;
    }
    
    .calendar-day .date {
        font-size: 20px;
    }
    
    .reserve-detail {
        margin: 0 auto 20px;
    }
    
    .reserve-detail-header {
        padding: 12px 15px;
    }
    
    .reserve-detail-date {
        font-size: 14px;
    }
    
    .slot-item {
        padding: 10px 12px;
    }
    
    .slot-time {
        font-size: 14px;
    }
    
    .slot-status {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    .reserve-contact p {
        font-size: 12px;
    }
    
    .reserve-contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .reserve-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ========================================
   Responsive - Small Mobile
   ======================================== */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-catchcopy {
        font-size: 24px;
    }
    
    .social-icons {
        gap: 30px;
    }
    
    .social-icons a {
        font-size: 28px;
    }
}

/* ========================================
   Lightbox
   ======================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content img {
    transform: scale(0.9);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.lightbox.active .lightbox-content img {
    transform: scale(1);
}

@keyframes slideOutLeft {
    from { transform: translateX(0) scale(1); opacity: 1; }
    to { transform: translateX(-150px) scale(0.9); opacity: 0; }
}

@keyframes slideOutRight {
    from { transform: translateX(0) scale(1); opacity: 1; }
    to { transform: translateX(150px) scale(0.9); opacity: 0; }
}

@keyframes slideInFromRight {
    from { transform: translateX(150px) scale(0.9); opacity: 0; }
    to { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes slideInFromLeft {
    from { transform: translateX(-150px) scale(0.9); opacity: 0; }
    to { transform: translateX(0) scale(1); opacity: 1; }
}

.lightbox-content img.slide-out-left {
    animation: slideOutLeft 0.3s ease forwards;
}

.lightbox-content img.slide-out-right {
    animation: slideOutRight 0.3s ease forwards;
}

.lightbox-content img.slide-in-from-right {
    animation: slideInFromRight 0.3s ease forwards;
}

.lightbox-content img.slide-in-from-left {
    animation: slideInFromLeft 0.3s ease forwards;
}

.lightbox-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: var(--gold);
}

.lightbox-counter {
    font-size: 16px;
    letter-spacing: 2px;
}

.lightbox-close {
    font-size: 30px;
    color: var(--gold);
    cursor: pointer;
    padding: 5px 10px;
    transition: opacity 0.3s;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 90%;
    padding: 60px 20px 20px;
}

.lightbox img {
    max-width: 100%;
    max-height: calc(100vh - 200px);
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: var(--gold);
    cursor: pointer;
    padding: 15px;
    transition: opacity 0.3s;
    user-select: none;
    z-index: 2001;
}

.lightbox-nav:hover {
    opacity: 0.7;
}

.lightbox-prev {
    left: 15px;
}

.lightbox-next {
    right: 15px;
}

.lightbox-info {
    text-align: center;
    padding: 15px 20px;
    color: var(--gold);
}

.lightbox-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.lightbox-desc {
    font-size: 14px;
    opacity: 0.8;
}

/* ========================================
   Lightbox - Mobile
   ======================================== */
@media (max-width: 768px) {
    .lightbox-content {
        padding: 50px 35px 20px;
        touch-action: pan-y;
    }
    
    .lightbox img {
        max-height: 65vh;
    }
    
    .lightbox-info {
        padding: 10px;
    }
    
    .lightbox-nav {
        font-size: 18px;
        padding: 8px;
    }
    
    .lightbox-prev {
        left: 2px;
    }
    
    .lightbox-next {
        right: 2px;
    }
}

