/* style.css */
/* 0. Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --bg-color: #1a1a1a;
    --bg-accent: #222222;
    --text-color: #f0f0f0;
    --accent-color: #8c8c8c;
    --gold-color: #c5a059;
    --font-main: 'Shippori Mincho', serif;
}
body {
      margin: 0;
      padding: 0;
      font-family: var(--font-main);
      background-color: var(--bg-color);
      color: var(--text-color);
      line-height: 2.0; letter-spacing: 0.1em;
      width: 100%;
      overflow-x: hidden;
  }

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

.container { 
    width: 100%; 
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 0 20px; 
    text-align: center; 
}

.section { padding: 120px 0; position: relative; background-color: var(--bg-color); }
.bg-dark { background-color: var(--bg-accent); }

/* Header */
 .header {
      position: fixed; top: 0; width: 100%; padding: 20px 40px;
      display: flex; justify-content: space-between; align-items: center;
      background: rgba(26, 26, 26, 0.8); backdrop-filter: blur(5px);
      z-index: 9998;
      transition: top 0.3s ease;
  }
.header .logo { margin: 0; z-index: 9999; line-height: 1; }
.header .logo a { display: block; }
.header .logo img { display: block; height: 40px; width: auto; }

.nav ul { display: flex; list-style: none; gap: 20px; margin: 0; padding: 0; align-items: center; }
.nav a { text-decoration: none; color: var(--text-color); font-size: 0.85rem; transition: opacity 0.3s; }
.nav a:hover { opacity: 0.6; }

.btn-reserve-pc a {
    display: inline-block; padding: 10px 25px;
    background-color: var(--gold-color); color: #1a1a1a;
    font-weight: 400; border-radius: 2px; transition: opacity 0.3s;
}
.btn-reserve-pc a:hover { opacity: 0.8; }

.pc-only-nav .link-mypage {
    display: block; font-size: 0.85rem; color: var(--text-color);
    border: 1px solid var(--text-color); padding: 8px 15px; border-radius: 2px;
}
.pc-only-nav .link-mypage:hover { background-color: rgba(255,255,255,0.1); opacity: 1; }

.hamburger {
      display: none; background: none; border: none; cursor: pointer;
      width: 30px; height: 20px; position: relative; z-index: 9999; padding: 0;
  }
.hamburger span {
    position: absolute; left: 0; width: 100%; height: 2px;
    background-color: var(--text-color); transition: all 0.4s;
}
.hamburger span:nth-of-type(1) { top: 0; }
.hamburger span:nth-of-type(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-of-type(3) { bottom: 0; }
.hamburger.active span:nth-of-type(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.active span:nth-of-type(2) { opacity: 0; }
.hamburger.active span:nth-of-type(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* FV */
.fv {
      height: 100vh; /* フォールバック */
      height: calc(var(--vh, 1vh) * 100); /* JavaScript対応 */
      height: 100dvh; /* 最新ブラウザ対応 */
      width: 100%;
      position: relative;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000;
  }
.fv-video-area { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.bg-video { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.fv-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); z-index: 1; }
.fv-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.4) 1px, transparent 1px);
    background-size: 5px 5px;
    z-index: 2;
    pointer-events: none;
}
.fv-content { position: relative; z-index: 3; text-align: center; }
.fv-content.fade-in-up { transition: all 2.5s cubic-bezier(0.16, 1, 0.3, 1); }
.fv-copy { font-size: 3rem; font-weight: 400; margin-bottom: 90px; letter-spacing: 0.2em; line-height: 1.3; font-feature-settings: "palt"; position: relative; }
.fv-copy::after { content: ''; position: absolute; left: 50%; bottom: -70px; transform: translateX(-50%); width: 1px; height: 50px; background-color: #fff; }
.fv-sub-lines { margin-top: 0; }
.fv-sub-lines p { font-size: 1.1rem; letter-spacing: 0.2em; margin: 10px 0; }

/* Titles */
.section-subtitle { display: block; font-size: 0.8rem; color: var(--accent-color); margin-bottom: 20px; text-transform: uppercase; }
.section-title { font-size: 1.6rem; font-weight: 400; margin-bottom: 60px; }

/* Concept */
.concept-wrapper { min-height: 100vh; position: relative; background-color: #000; }
.concept-sticky-container { position: relative; width: 100%; min-height: 100vh; overflow: hidden; display: flex; justify-content: center; align-items: center; padding: 80px 0; }
.concept-bg-image { position: absolute; top: -40%; left: 0; width: 100%; height: 160%; background-image: url('https://images.unsplash.com/photo-1532960401447-7dd05bef20b0?q=80&w=2000&auto=format&fit=crop'); background-size: cover; background-position: center; z-index: 1; }
.concept-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 2; }
.concept-container { position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 0 60px; max-width: 1200px; margin: 0 auto; }
.concept-layout { display: flex; flex-direction: column; gap: 40px; margin-top: 20px; }
.concept-top { text-align: center; margin-bottom: 20px; }
.text-main-large { font-size: 1.4rem; line-height: 2.2; letter-spacing: 0.1em; font-weight: 400; }
.text-main-small { font-size: 1.1rem; line-height: 2.2; letter-spacing: 0.1em; font-weight: 400; margin-top: 20px; }
.concept-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.concept-bottom-left { flex: 1; text-align: left; }
.text-detail-small { font-size: 0.9rem; line-height: 2.0; color: #ccc; letter-spacing: normal; }
.concept-bottom-right { flex: 1; text-align: right; }
.text-message-large { font-size: 2.16rem; line-height: 1.8; font-weight: 400; letter-spacing: 0.2em; }

/* Feature */
.feature-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.feature-card { width: 300px; text-align: left; }
.card-img { width: 100%; height: 200px; overflow: hidden; margin-bottom: 20px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.feature-card:hover .card-img img { transform: scale(1.05); }
.feature-card h4 { font-size: 1.2rem; margin-bottom: 15px; border-bottom: 1px solid var(--accent-color); display: inline-block; padding-bottom: 5px; font-weight: 400; }
.feature-card p { font-size: 0.9rem; color: #ccc; line-height: 1.8; }

/* Price */
.price-list { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; margin-bottom: 30px; }
.price-item { text-align: center; border: 1px solid #333; padding: 40px 60px; width: 320px; flex-shrink: 0; }
.price-item h4 { font-size: 1.5rem; margin-top: 0; margin-bottom: 10px; font-weight: 400; }
.price-item .time { font-size: 1.1rem; color: var(--gold-color); font-weight: 400; margin-bottom: 10px; letter-spacing: 0.1em; }
.price-item .price { font-size: 2rem; margin: 0; font-weight: 400; }
.price-item .price span { font-size: 0.9rem; color: var(--accent-color); margin-left: 5px; }
.price-note { color: var(--accent-color); font-size: 0.9rem; margin-top: 20px; }

/* Room Detail Button */
.btn-room-detail {
    margin-top: 25px;
    padding: 12px 40px;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Shippori Mincho', serif;
    letter-spacing: 0.1em;
}

.btn-room-detail:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

/* Room Detail Modal */
.room-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 10000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.4s ease, background 0.4s ease;
}

.room-modal.active {
    display: block;
}

.room-modal.show {
    opacity: 1;
    background: rgba(0, 0, 0, 0.95);
}

.room-modal-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
}

.room-modal.show .room-modal-close {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s, background 0.3s ease, color 0.3s ease;
}

.room-modal-close:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    transform: scale(1) rotate(90deg) !important;
}

.room-modal-content {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.room-modal.show .room-modal-content {
    opacity: 1;
    transform: translateY(0);
}

.room-modal-image {
    width: 100%;
    height: 50vh;
    overflow: hidden;
    position: relative;
}

.room-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.room-modal-info {
    flex: 1;
    background: var(--bg-color);
    padding: 50px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-modal-info-inner {
    max-width: 800px;
    width: 100%;
}

.room-modal-info h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 400;
	padding-top: 0;
}

.room-title {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 400;
    line-height: 1.8;
}

.room-description {
    font-size: 1.0rem;
    line-height: 2.2;
    color: #ccc;
    text-align: justify;
    max-width: 800px;
    margin: 0 auto;
}
.room-description span {
	text-decoration: underline;
}

/* How to */
.howto-list { max-width: 800px; margin: 0 auto; text-align: left; border-top: 1px solid #333; }
.howto-item { display: flex; align-items: baseline; padding: 30px 0; border-bottom: 1px solid #333; margin: 0; }
.howto-item dt { width: 30%; font-size: 1.2rem; font-weight: 400; color: var(--text-color); }
.howto-item dd { width: 70%; font-size: 0.95rem; color: #ccc; margin: 0; }

/* Flow */
#flow .container { max-width: none; }
.flow-steps { display: flex; justify-content: center; align-items: flex-start; gap: 15px; flex-wrap: wrap; }
.flow-step { flex: 1; min-width: 180px; background: #222; padding: 30px 15px; border: 1px solid #444; position: relative; }
.step-num { font-size: 2rem; font-weight: 400; color: #444; display: block; margin-bottom: 10px; line-height: 1; }
.flow-step h4 { font-size: 1rem; margin-bottom: 15px; font-weight: 400; }
.flow-step p { font-size: 0.85rem; color: #ccc; line-height: 1.6; }
.step-arrow { align-self: center; font-size: 1.2rem; color: var(--accent-color); }

/* News */
.news-list { list-style: none; padding: 0; max-width: 800px; margin: 0 auto; text-align: left; }
.news-list li { border-bottom: 1px solid #333; padding: 20px 0; display: flex; align-items: center; gap: 20px; }
.news-list .date { font-family: sans-serif; color: var(--accent-color); font-size: 0.9rem; }
.news-list .category { background: #333; padding: 2px 10px; font-size: 0.7rem; border-radius: 2px; }
.news-list .title { color: var(--text-color); text-decoration: none; transition: color 0.3s; }
.news-list .title:hover { color: var(--accent-color); }

/* --- SNS (Full Width Parallax) --- */
.sns-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden; /* はみ出し防止 */
    background-color: var(--bg-color);
}

.sns-header-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    background: rgba(26, 26, 26, 0.7); /* 半透明背景 */
    padding: 40px 60px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

.sns-gallery-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    padding: 0 20px; /* 少しだけ余白 */
    opacity: 0.6; /* 画像を少し暗くして文字を目立たせる */
    transition: opacity 0.5s;
}
.sns-section:hover .sns-gallery-wrapper {
    opacity: 0.9; /* ホバーで明るく */
}

.sns-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sns-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/4; /* 縦長比率 */
    filter: grayscale(20%); /* 少し落ち着かせる */
}

.btn-insta { color: var(--text-color); text-decoration: none; border-bottom: 1px solid var(--text-color); padding-bottom: 5px; font-size: 0.9rem; }

/* Access */
.access-full-layout { display: flex; width: 100%; min-height: 600px; }
.access-info-area { width: 50%; display: flex; align-items: center; justify-content: flex-end; padding: 80px 60px 80px 20px; box-sizing: border-box; }
.access-info-content { max-width: 500px; width: 100%; text-align: left; }
.access-info-content .section-subtitle { text-align: left; }
.access-info-content .section-title { margin-bottom: 40px; }
.access-info-content .shop-name { font-size: 1.5rem; margin-bottom: 10px; }
.btn-map { display: inline-block; margin-top: 30px; color: var(--text-color); text-decoration: none; border-bottom: 1px solid var(--accent-color); padding-bottom: 5px; transition: all 0.3s; }
.btn-map:hover { color: var(--accent-color); border-color: transparent; }
.access-map-area { width: 50%; background-image: url('../images/map.png'); background-size: cover; background-position: center; position: relative; } 
.access-map-area::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.2); }

/* Contact */
.btn-contact { display: inline-block; padding: 15px 60px; border: 1px solid var(--text-color); color: var(--text-color); text-decoration: none; margin-top: 30px; transition: all 0.3s; }
.btn-contact:hover { background: var(--text-color); color: var(--bg-color); }

.fade-in-up { opacity: 0; transform: translateY(50px); transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1); }
.is-visible { opacity: 1; transform: translateY(0); }

/* Concept Section Enhanced Animations */
.concept-top .fade-in-up {
    transition-delay: 0.2s;
}

.concept-bottom-left .fade-in-up {
    opacity: 0;
    transform: translateX(-30px) translateY(20px);
    transition: all 1.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.4s;
}

.concept-bottom-left .fade-in-up.is-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.concept-bottom-right .fade-in-up {
    opacity: 0;
    transform: translateX(30px) translateY(20px) scale(0.95);
    transition: all 1.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.6s;
}

.concept-bottom-right .fade-in-up.is-visible {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

.footer { padding: 50px 0; text-align: center; font-size: 0.8rem; color: var(--accent-color); border-top: 1px solid #333; background-color: var(--bg-color); margin-bottom: 0; }
.footer-links { margin-bottom: 20px; }
.footer-links a { color: var(--text-color); text-decoration: none; margin: 0 10px; font-size: 0.9rem; }

/* Mobile Bottom Nav */
.mobile-bottom-nav { display: none; }

/* Responsive */
@media (max-width: 768px) {
    .header { padding: 15px 20px;z-index:9999;}
    .header .logo img { height: 24px; }
    .hamburger { display: block; }
    
          .nav {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100vh; /* フォールバック */
          height: calc(var(--vh, 1vh) * 100); /* JavaScript対応 */
          height: 100dvh; /* 最新ブラウザ対応 */
          background-color: rgba(26, 26, 26, 0.98);
          display: flex;
          justify-content: center;
          align-items: center;
          opacity: 0;
          pointer-events: none;
          transition: opacity 0.4s;
      }
    .nav.active { opacity: 1; pointer-events: auto; }
    .nav ul { flex-direction: column; text-align: center; gap: 30px; }
    .nav a { font-size: 1.2rem; }
	.spdnt { display: none;}
    
    .fv-copy { font-size: 2rem; }
    .fv-sub-lines p { font-size: 0.9rem; }

    .section-title { font-size: 1.2rem; }

    .concept-container { padding: 0 20px; }

    .concept-bottom { flex-direction: column; gap: 30px; }
    .concept-bottom-left, .concept-bottom-right { text-align: left; }
    .text-main-large { font-size: 1.1rem; }
    .text-main-small { font-size: 0.95rem; }
    .text-message-large { font-size: 1.68rem; text-align: left; }
    
    .feature-grid { flex-direction: column; align-items: center; }
    .feature-card { width: 100%; max-width: 400px; }

    .price-list { gap: 30px; }
    .price-item { width: 100%; max-width: 350px; padding: 30px 20px; }
    .price-item .price { font-size: 1.6rem; white-space: nowrap; }
    .price-item .price span { font-size: 0.8rem; }

    .howto-item { flex-direction: column; padding: 20px 0; }
    .howto-item dt { width: 100%; margin-bottom: 10px; }
    .howto-item dd { width: 100%; }
    
    .flow-steps { flex-direction: column; align-items: center; }
    .flow-step { width: 100%; max-width: 350px; }
    .step-arrow { transform: rotate(90deg); margin: 10px 0; }
    
    /* SNS Mobile: 2 columns */
    .sns-gallery-wrapper { gap: 10px; padding: 0 10px; }
    .sns-col:nth-child(3), .sns-col:nth-child(4) { display: none; } /* スマホは2列に減らす */
    
    .access-full-layout { flex-direction: column; }
    .access-info-area { width: 100%; justify-content: center; padding: 60px 20px; }
    .access-info-content { text-align: center; }
    .access-info-content .section-subtitle { text-align: center; }
    .access-map-area { width: 100%; height: 300px; }
    
    .news-list li { flex-direction: column; align-items: flex-start; gap: 5px; }

    body { 
		padding-top: 0 !important; /* プラグインの自動padding-topを強制リセット */
		padding-bottom: 70px;
	}
    
    .mobile-bottom-nav { display: flex; position: fixed; bottom: 0; left: 0; width: 100%; height: 60px; background: #222; border-top: 1px solid #333; z-index: 10000; }
    .nav-item { flex: 1; display: flex; justify-content: center; align-items: center; text-decoration: none; color: var(--text-color); font-size: 0.8rem; transition: background 0.2s; }
    .nav-item:hover { background-color: #333; }
    .nav-item.highlight { background-color: var(--gold-color); color: #1a1a1a; font-weight: 400; }
}

/* ======================================
   FAQ Page Styles
   ====================================== */

/* FAQ Hero Section */
.faq-hero {
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(26,26,26,1) 100%);
    padding: 120px 20px 80px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.faq-hero-desc {
    font-size: 1rem;
    color: #ccc;
    margin-top: 20px;
    line-height: 1.8;
}

/* FAQ Content Section */
.faq-content {
    padding: 80px 20px;
    min-height: 60vh;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.03);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-q-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--bg-color);
    font-weight: 400;
    font-size: 1.2rem;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 20px;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    color: var(--text-color);
	text-align: left;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-color);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(0, 0, 0, 0.3);
    border-top: 0 solid #333;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 25px 30px;
    border-top-width: 1px;
}

.faq-answer {
    display: flex;
    align-items: flex-start;
}

.faq-a-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(197, 160, 89, 0.2);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 400;
    font-size: 1.2rem;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 20px;
}

.faq-answer-text {
    flex: 1;
    color: #ccc;
    line-height: 1.9;
    font-size: 0.95rem;
	text-align: left;
}

.faq-answer-text p {
    margin: 0 0 15px 0;
}

.faq-answer-text p:last-child {
    margin-bottom: 0;
}

.faq-empty {
    text-align: center;
    padding: 100px 20px;
    color: #666;
    font-size: 1.1rem;
}

/* FAQ Page Contact Section Override */
#contact.section {
    background: #000;
    border-top: 1px solid #333;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-hero {
        padding: 80px 20px 60px;
    }

    .faq-hero .section-title {
        font-size: 1.8rem;
    }

    .faq-hero-desc {
        font-size: 0.9rem;
    }

    .faq-content {
        padding: 60px 15px;
    }

    .faq-question {
        padding: 20px 15px;
    }

    .faq-q-label,
    .faq-a-label {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-right: 15px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer-text {
        font-size: 0.9rem;
    }

    .faq-item.active .faq-answer {
        padding: 20px 15px;
    }

    /* Room Modal Responsive */
    .room-modal-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .room-modal-info h2 {
        font-size: 1.8rem;
		padding-top: 0;
		margin-top: 0;
    }

    .room-title {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .room-description {
        font-size: 0.8rem;
        line-height: 2;
    }

    .room-modal-info {
        padding: 10px 15px;
    }
}

/* ======================================
   Contact Page Styles
   ====================================== */

/* Contact Hero Section */
.contact-hero {
    background-color: #000;
    padding: 120px 20px 80px;
    text-align: center;
}

.contact-hero-desc {
    font-size: 1rem;
    color: #ccc;
    margin-top: 20px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 20px 120px;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

/* Contact Form 7 Custom Styles */
.wpcf7 {
    background: transparent;
}

.wpcf7-form p {
    margin-bottom: 30px;
}

.wpcf7-form label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: #1a1a1a;
    border: 1px solid #444;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1rem;
    border-radius: 2px;
    transition: border-color 0.3s;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.wpcf7-form textarea {
    min-height: 200px;
    resize: vertical;
}

.wpcf7-form input[type="submit"] {
    background-color: var(--gold-color);
    color: #1a1a1a;
    border: none;
    padding: 15px 50px;
    font-size: 1rem;
    font-family: var(--font-main);
    cursor: pointer;
    border-radius: 2px;
    transition: opacity 0.3s;
    display: block;
    margin: 40px auto 0;
}

.wpcf7-form input[type="submit"]:hover {
    opacity: 0.8;
}

/* Form Validation Messages */
.wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 5px;
}

.wpcf7-response-output {
    border: none !important;
    padding: 20px !important;
    margin: 30px 0 0 0 !important;
    text-align: center;
    border-radius: 2px;
}

.wpcf7-mail-sent-ok {
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid var(--accent-color) !important;
    color: var(--accent-color);
}

.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b !important;
    color: #ff6b6b;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 20px 60px;
    }

    .contact-hero .section-title {
        font-size: 1.8rem;
    }

    .contact-hero-desc {
        font-size: 0.9rem;
    }

    .contact-form-section {
        padding: 60px 15px;
    }

    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .wpcf7-form input[type="submit"] {
        padding: 12px 40px;
        font-size: 0.95rem;
    }
}

.mtsnb .mtsnb-container {
	padding-left: 10px;
	padding-right: 10px;
}

.footer-links-min {
	text-align: center;
}
.footer-links-min a {
	text-decoration: none;
	color: #ffffff;
	display: inline-block;
	margin: 0 5px;
}
