/* 
  Beverly Glamping - Design System & Base Styles
  Theme: Classical American Vintage & Wood Comfort
*/

:root {
  /* Color Palette */
  --color-main: #3E2723;
  /* Dark Walnut */
  --color-accent: #D35400;
  /* Burnt Orange */
  --color-bg: #F5F5DC;
  /* Beige / Ivory */
  --color-text: #2C1E1A;
  /* Deep Brownish Black */
  --color-overlay: rgba(62, 39, 35, 0.7);
  --color-white: #FFFFFF;

  /* Typography */
  --font-heading: 'Arvo', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  /* Offset for fixed header */
}

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

h1,
h2,
h3,
h4,
.font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-main);
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--color-accent);
  color: var(--color-white);
  border: none;
  font-family: var(--font-heading);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn:hover {
  background-color: var(--color-main);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(62, 39, 35, 0.5);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

header.scrolled .nav-link,
header.scrolled .logo {
  color: var(--color-white);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  color: var(--color-white);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-line-1 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.logo-line-2 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
}



.nav-list {
  display: flex;
  gap: 1.5rem; /* Reduced from 2.5rem */
  align-items: center;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-white);
}

.nav-link:hover {
  color: var(--color-accent);
}

/* Header Reserve Button */
.header-reserve-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-icon-left,
.btn-icon-right {
  flex-shrink: 0;
}

.header-first-btn {
  background-color: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  padding: 0.8rem 1.2rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.header-first-btn:hover {
  background-color: var(--color-white);
  color: var(--color-main);
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 1100px) {
  .hamburger {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--color-main);
    flex-direction: column;
    justify-content: center;
    transition: 0.3s;
    z-index: 1000;
  }

  .nav-list.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.2rem;
  }
}


.hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--color-white);
  transition: 0.3s;
}

header:not(.scrolled) .hamburger span {
  background-color: var(--color-white);
}

header.scrolled .hamburger span {
  background-color: var(--color-white);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Media Queries */
@media (max-width: 992px) {
  .section-title h2 {
    font-size: 2.5rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .img-shadow {
    box-shadow: 10px 10px 0 var(--color-main);
  }

  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-xl: 4rem;
    --spacing-lg: 2rem;
  }

  .nav-list.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  .section-title h2 {
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .section-title p {
    font-size: 0.75rem;
    margin-bottom: 0rem;
  }

  .section-title p.section-description {
    font-size: 0.85rem;
    margin-top: 1rem;
    line-height: 1.8;
  }

  .section {
    padding: var(--spacing-lg) 0;
  }

  /* Fix BBQ and other grid-2 sections for mobile */
  .grid-2 {
    grid-template-columns: 1fr !important;
    gap: var(--spacing-md);
  }

  /* Ensure image comes first or second correctly, and text has space */
  #bbq .grid-2 {
    display: flex;
    flex-direction: column;
  }

  #about .grid-2 {
    display: flex;
    flex-direction: column;
  }

  /* About Section Mobile Adjustments */
  .about-content {
    display: contents;
  }

  .about-content .section-title {
    order: 1;
    margin-bottom: 1.5rem;
  }

  .about-image-wrapper {
    order: 2;
    margin-bottom: 1.5rem;
  }

  .about-content .section-title h2 {
    font-size: clamp(1.1rem, 5.5vw, 1.4rem);
    letter-spacing: 0.05em;
  }

  .about-description {
    order: 3;
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .feature-item {
    padding: 1rem;
    gap: 1rem;
  }

  .feature-icon {
    font-size: 2rem;
    min-width: 50px;
    height: 50px;
  }

  .feature-text h4 {
    font-size: 1rem;
  }

  .feature-text p {
    font-size: 0.85rem;
  }

  .about-image-frame {
    max-width: 100%;
  }

  .image-decoration {
    top: -15px;
    right: -15px;
    border-width: 2px;
  }

  .about-image-frame:hover .image-decoration {
    top: -20px;
    right: -20px;
  }

  .plan-card .card-content {
    padding: 1.5rem;
  }

  #day-plans .plan-card .mb-2 {
    display: block !important;
    font-size: 0.85rem;
    margin-top: 1rem;
    line-height: 1.6;
  }

  #day-plans .card-title {
    font-size: clamp(1rem, 4.5vw, 1.2rem);
    line-height: 1.3;
  }

  #day-plans .plan-price {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
  }

  footer .grid-2 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-tel {
    justify-content: center;
  }

  .footer-btn-wrapper {
    align-items: center;
    margin-top: 2rem;
  }

  .footer-btn-wrapper .btn {
    width: 100%;
    max-width: 300px;
    padding: 0.8rem 1.5rem;
  }

  .footer-social {
    justify-content: center;
  }

  footer h2 {
    font-size: 1.2rem;
  }

  .page-header-content h1 {
    font-size: 1.5rem;
  }

  .page-header-content .font-heading {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .faq-category-title {
    font-size: 1.1rem;
    margin-top: 2.5rem;
  }

  .trailer-title {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .facility-card h3,
  .card-title {
    font-size: 1.0rem;
    line-height: 1.4;
  }
}

/* Sections */
.section {
  padding: var(--spacing-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.section-title p.section-description {
  color: var(--color-text);
  font-size: 1.05rem;
  line-height: 2.0;
  letter-spacing: 0.05em;
  text-transform: none;
  font-weight: 500;
  margin-top: 1.5rem;
}

/* Utility Classes */
.wood-bg {
  background-image: linear-gradient(rgba(245, 245, 220, 0.9), rgba(245, 245, 220, 0.9)), url('https://www.transparenttextures.com/patterns/wood-pattern.png');
}

.sp-br {
  display: none;
}

@media (max-width: 768px) {
  .sp-br {
    display: inline;
  }
}

.saloon-fixed-bg {
  position: relative;
  background-color: var(--color-main);
  /* Fallback dark color */
  background-image: url('images/saloon_4.jpeg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-white);
  padding: 120px 0;
  min-height: 400px;
  /* Ensure minimum height */
}

.saloon-fixed-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  /* slightly darker for better text contrast */
  z-index: 1;
}

.saloon-fixed-bg .container {
  position: relative;
  z-index: 2;
}

.saloon-fixed-bg h2,
.saloon-fixed-bg p {
  color: var(--color-white) !important;
}

.saloon-fixed-bg .section-title p {
  color: var(--color-accent) !important;
}

@media (max-width: 768px) {
  .saloon-fixed-bg {
    background-attachment: scroll;
    padding: 80px 0;
  }
}

.coming-soon-wrapper {
  margin-top: 2rem;
  text-align: left;
}

.coming-soon-badge {
  display: inline-block;
  padding: 0.6rem 2rem;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(0, 0, 0, 0.3);
  /* dark background for better visibility */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 4px;
  /* matching theme's button radius */
  position: relative;
  overflow: hidden;
}

.coming-soon-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

.bbq-fixed-bg {
  position: relative;
  background-image: url('images/bbq_images/family_1.jpeg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-white);
  padding: 120px 0;
}

.bbq-fixed-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* ダークオーバーレイ */
  z-index: 1;
}

.bbq-fixed-bg .container {
  position: relative;
  z-index: 2;
}

.bbq-fixed-bg h2,
.bbq-fixed-bg .card-title {
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.bbq-fixed-bg .section-title p {
  color: var(--color-accent);
  background-color: var(--color-white);
  display: inline-block;
  padding: 0.2rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
  text-shadow: none;
}

.bbq-fixed-bg .btn {
  background-color: var(--color-white);
  color: var(--color-main);
}

.bbq-fixed-bg .btn:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

@media (max-width: 768px) {
  .bbq-fixed-bg {
    background-attachment: scroll;
    /* モバイルでは固定を解除してパフォーマンスを安定させる */
  }
}

.bbq-content-wrapper {
  padding: 2rem 0;
}

.bbq-catchphrase {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--color-white);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
}

.bbq-catchphrase .highlight {
  color: var(--color-accent);
  display: block;
  font-size: 2.22rem;
  margin-top: 0.5rem;
}

.bbq-description-box {
  font-size: 1.1rem;
  line-height: 2;
  border-left: 3px solid var(--color-accent);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border-radius: 0 8px 8px 0;
}

@media (max-width: 768px) {
  .bbq-catchphrase {
    font-size: clamp(1.1rem, 4.5vw, 1.5rem);
    text-align: center;
  }

  .bbq-catchphrase .highlight {
    font-size: clamp(1.3rem, 5.5vw, 1.8rem);
  }

  .bbq-description-box {
    font-size: 0.95rem;
    padding: 1rem;
  }
}

/* Editorial Trailer Layout */
.trailer-showcase {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 2rem 0;
}

.trailer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.trailer-item.reverse {
  flex-direction: row-reverse;
}

.trailer-img-wrapper {
  width: 55%;
  position: relative;
}

.trailer-img-wrapper > img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 20px 20px 0 var(--color-bg), 25px 25px 0 rgba(62, 39, 35, 0.2);
  filter: sepia(0.2) contrast(1.1);
  transition: all 0.5s ease;
}

.trailer-item:hover .trailer-img-wrapper > img {
  filter: sepia(0) contrast(1);
  transform: scale(1.02);
  box-shadow: 15px 15px 0 var(--color-bg), 20px 20px 0 var(--color-accent);
}

.trailer-slideshow {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 4px;
  box-shadow: 20px 20px 0 var(--color-bg), 25px 25px 0 rgba(62, 39, 35, 0.2);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.trailer-item:hover .trailer-slideshow {
  transform: scale(1.02);
  box-shadow: 15px 15px 0 var(--color-bg), 20px 20px 0 var(--color-accent);
}

.trailer-slideshow .trailer-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.trailer-slideshow .trailer-slide.active {
  opacity: 1;
  z-index: 2;
}

.trailer-slideshow .trailer-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.2) contrast(1.1);
  transition: filter 0.5s ease;
}

.trailer-item:hover .trailer-slideshow .trailer-slide img {
  filter: sepia(0) contrast(1);
}

.vintage-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: rotate(-15deg);
  z-index: 2;
  border: 2px solid var(--color-white);
}

.trailer-item.reverse .vintage-badge {
  left: auto;
  right: -20px;
  transform: rotate(15deg);
}

.trailer-text-wrapper {
  width: 40%;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--color-main);
}

.trailer-item.reverse .trailer-text-wrapper {
  border-left: none;
  border-right: 5px solid var(--color-main);
}

/* Negative Margin for overlap effect */
.trailer-item .trailer-text-wrapper {
  margin-left: -5%;
}

.trailer-item.reverse .trailer-text-wrapper {
  margin-left: 0;
  margin-right: -5%;
}

.trailer-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--color-main);
  position: relative;
}

.trailer-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.trailer-deco {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 4rem;
  font-family: var(--font-heading);
  color: rgba(62, 39, 35, 0.05);
  pointer-events: none;
  font-weight: 700;
  z-index: -1;
}

@media (max-width: 900px) {

  .trailer-item,
  .trailer-item.reverse {
    flex-direction: column;
    gap: 2rem;
  }

  .trailer-img-wrapper {
    width: 100%;
  }

  .trailer-img-wrapper img {
    box-shadow: 10px 10px 0 var(--color-bg);
  }

  .trailer-text-wrapper {
    width: 100%;
    margin: 0 !important;
    padding: 2rem;
  }

  .vintage-badge {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }
}

.bg-white {
  background-color: var(--color-white);
}

.bg-beige {
  background-color: var(--color-bg);
}

/* Enhanced About Section */
.about-section {
  background: linear-gradient(135deg, #F5F5DC 0%, #E8E4D8 50%, #F5F5DC 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://www.transparenttextures.com/patterns/wood-pattern.png');
  opacity: 0.3;
  pointer-events: none;
}

.about-grid {
  position: relative;
  z-index: 1;
}

.about-content {
  padding-right: 2rem;
}

@media (min-width: 769px) {
  .about-content .section-title h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    line-height: 1.5;
  }
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: var(--color-text);
}

/* Feature Items */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border-left: 4px solid var(--color-accent);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.feature-icon {
  font-size: 2.5rem;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent), #E67E22);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3);
}

.feature-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: var(--color-main);
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--color-text);
  opacity: 0.8;
  margin: 0;
}

/* Image Frame with Decorations */
.about-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-frame {
  position: relative;
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  overflow: visible;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease;
  position: relative;
  z-index: 2;
}

.about-image-frame:hover .about-image {
  transform: scale(1.02);
}

.image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-accent);
  border-radius: 12px;
  z-index: 1;
  transition: all 0.5s ease;
}

.about-image-frame:hover .image-decoration {
  top: -30px;
  right: -30px;
  border-color: var(--color-main);
}

/* About Slideshow */
.about-slideshow {
  position: relative;
  width: 100%;
  min-height: 400px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
  background: var(--color-bg);
}

.about-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.about-slideshow .slide.active {
  opacity: 1;
  z-index: 2;
}

.about-slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Slideshow Dots */
.slideshow-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slideshow-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.slideshow-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.slideshow-dots .dot.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.3);
}

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

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* Hero Background Images (Desktop) */
.slide-1 {
  background-image: url('images/hero_desktop/site_day_1.jpg');
}

.slide-2 {
  background-image: url('images/hero_desktop/trailer_1.jpg');
}

.slide-3 {
  background-image: url('images/hero_desktop/car_1.jpg');
}

.slide-4 {
  background-image: url('images/hero_desktop/bike_1.jpg');
}

.slide-5 {
  background-image: url('images/hero_desktop/bear_1.jpg');
}

.slide-6 {
  background-image: url('images/hero_desktop/child_1.jpg');
}

.slide-7 {
  background-image: url('images/hero_desktop/couple_1.jpg');
}

.slide-8 {
  background-image: url('images/hero_desktop/meet_1.jpg');
}

.slide-9 {
  background-image: url('images/hero_desktop/site_night_1.jpg');
}

.slide-10 {
  background-image: url('images/hero_desktop/trailer_1.jpg');
}

/* Fallback for missing 10th desktop image */

/* Hero Background Images (Mobile) */
@media (max-width: 768px) {
  .slide-1 {
    background-image: url('images/hero_mobil/site_day_1.jpg');
  }

  .slide-2 {
    background-image: url('images/hero_mobil/trailer_1.jpg');
  }

  .slide-3 {
    background-image: url('images/hero_mobil/car_1.jpg');
  }

  .slide-4 {
    background-image: url('images/hero_mobil/bike_1.jpg');
  }

  .slide-5 {
    background-image: url('images/hero_mobil/bear_1.jpg');
  }

  .slide-6 {
    background-image: url('images/hero_mobil/child_1.jpg');
  }

  .slide-7 {
    background-image: url('images/hero_mobil/couple_1.jpg');
  }

  .slide-8 {
    background-image: url('images/hero_mobil/meet_1.jpg');
  }

  .slide-9 {
    background-image: url('images/hero_mobil/site_night_1.jpg');
  }

  .slide-10 {
    background-image: url('images/hero_mobil/room_1.jpg');
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15));
  z-index: -1;
}

/* Hero News */
.hero-news {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.news-label {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.news-content {
  flex: 1;
  overflow: hidden;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--color-white);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
}

.news-item:hover {
  opacity: 0.8;
}

.news-date {
  font-family: var(--font-heading);
  font-weight: 700;
  opacity: 0.8;
}

.news-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 30px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 768px) {
  .hero-news {
    bottom: 150px;
    padding: 8px 20px;
    gap: 10px;
  }

  .news-date {
    display: none;
  }

  .news-item {
    font-size: 0.85rem;
  }
}

.hero .container {
  text-align: center;
  color: var(--color-white);
  z-index: 5;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: 2rem;
  line-height: 1.2;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.4);
  font-weight: 700;
}

.hero h1 .accent-text {
  color: var(--color-accent);
  display: block;
  margin-top: 0.5rem;
  font-size: 2.8rem;
  letter-spacing: -2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-subcopy {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  line-height: 2.2;
  margin-bottom: 3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 5px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-tagline-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 3.5rem;
}

.tagline-line {
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.8;
}

.hero-tagline {
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  margin-bottom: 0;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-catch-wrapper {
  position: absolute;
  top: 15%;
  right: 5%;
  z-index: 10;
  opacity: 0;
  transform: scale(0.95);
  filter: blur(5px);
  animation: revealUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.5s;
  pointer-events: none;
}

.hero-logo-wrapper {
  position: absolute;
  bottom: 5%;
  left: 5%;
  z-index: 10;
  opacity: 0;
  transform: scale(0.95);
  filter: blur(5px);
  animation: revealUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.5s;
  pointer-events: none;
}



.hero-catch-img {
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.6));
}

.hero-logo-lockup {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--color-white);
}

.hero-logo-icon {
  height: 200px;
  width: auto;
  object-fit: contain;
}

.hero-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: var(--font-heading);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.3);
}

.hero-logo-line-1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 4px;
}

.hero-logo-line-2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 4px;
}

.hero-logo-subtitle {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  line-height: 2.2;
  margin-top: 20px;
  font-weight: 600;
  opacity: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 18px 45px;
  font-weight: 700;
  border: 2px solid var(--color-accent);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  padding: 18px 45px;
  font-weight: 700;
  border: 2px solid var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-main);
}

/* Animations */
.reveal-text {
  opacity: 0;
  transform: scale(0.95);
  filter: blur(5px);
  animation: revealUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.reveal-group .reveal-text:nth-child(1) {
  animation-delay: 0.8s;
}

.reveal-group .reveal-text:nth-child(2) {
  animation-delay: 1.0s;
}

.reveal-group .reveal-text:nth-child(3) {
  animation-delay: 1.2s;
}

.hero-btns.reveal-text {
  animation-delay: 1.4s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero h1 .accent-text {
    font-size: 2rem;
  }

  .hero-subcopy {
    font-size: 0.9rem;
    padding: 0 15px;
  }

  .hero-btns {
    flex-direction: column;
    padding: 0 30px;
  }

  .btn-primary,
  .btn-outline {
    padding: 15px 30px;
  }

  .hero-catch-wrapper {
    top: auto;
    bottom: 20px;
    right: 20px;
    left: auto;
  }

  .hero-logo-wrapper {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: fit-content;
    width: 90%;
    max-width: 400px;
    display: flex;
    justify-content: center;
  }

  .hero-logo-lockup {
    transform: scale(1);
    transform-origin: center top;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .hero-logo-icon {
    height: 140px;
  }

  .hero-logo-line-1,
  .hero-logo-line-2 {
    display: none;
  }

  .hero-logo-subtitle {
    font-size: 0.8rem;
    line-height: 2.0;
    letter-spacing: 0.1em;
    display: block;
    width: 100%;
  }

  .hero-catch-img {
    max-width: 200px;
  }
}

/* Booking Wizard Enhancements */
.step-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.step-content.active {
  display: block;
}

.wizard-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 3rem;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}

.btn-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

/* Calendar Selectable State */
.cal-cell.selectable {
  cursor: pointer;
  transition: all 0.2s ease;
}

.cal-cell.selectable:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: scale(1.05);
}

.cal-cell.selectable.selected {
  background: var(--color-main);
  color: var(--color-white);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.cal-cell.status-full {
  cursor: not-allowed;
  opacity: 0.5;
  background: #eee;
}

/* Completion View */
.completion-view {
  padding: 4rem 2rem;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.completion-icon {
  font-size: 4rem;
  color: #27ae60;
  margin-bottom: 1.5rem;
}

.booking-summary {
  background: var(--color-bg);
  padding: 1.5rem;
  border-radius: 8px;
  display: inline-block;
  text-align: left;
  min-width: 300px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .wizard-buttons {
    flex-direction: column-reverse;
  }
}

/* Common Layout */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-md);
}

/* First Time Guide Styles */
.page-header {
  height: 50vh;
  min-height: 400px;
  background-image: url('images/hero_desktop/bike_1.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header-content h1 {
  font-size: 4rem;
  color: var(--color-white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 1rem;
}

.page-header-content .font-heading {
  color: var(--color-white);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.flow-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.flow-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--color-accent);
  opacity: 0.3;
  z-index: 0;
}

.flow-step {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 2rem;
  align-items: center;
}

.flow-time {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-family: var(--font-heading);
  white-space: nowrap;
}

.flow-content h3 {
  color: var(--color-main);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .page-header-content h1 {
    font-size: 2.5rem;
  }

  .page-header-content .font-heading {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .flow-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* Global Section Title adjustment for mobile to prevent overflow */
  .section-title h2 {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

.flow-images {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  width: 100%;
}

.flow-img {
  width: calc(50% - 0.5rem);
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.flow-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.flow-video-wrapper {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 400px;
}

.flow-video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-video:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 480px) {
  .flow-images {
    flex-direction: column;
  }

  .flow-img {
    width: 100%;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing-md);
}

/* Cards */
.card {
  background: var(--color-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  margin-bottom: 0.5rem;
}

.plan-price-box {
  background-color: #fcfaf5;
  border-radius: 8px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(62, 39, 35, 0.05);
}

.price-main {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(62, 39, 35, 0.1);
  padding-bottom: 0.5rem;
}

.price-main .label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-main);
  opacity: 0.8;
}

.price-main .amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-accent);
  font-weight: 700;
}

.price-main .amount small {
  font-size: 0.7rem;
  margin-left: 2px;
}

.price-sub-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--color-main);
  opacity: 0.8;
}

.price-sub-info span {
  display: flex;
  justify-content: space-between;
}

.price-sub-info .val {
  font-weight: 700;
}

.price-note {
  font-size: 0.75rem;
  color: var(--color-main);
  opacity: 0.6;
  margin-top: 4px;
  display: block;
}

.plan-features {
  margin-bottom: 2rem;
  padding: 0;
  list-style: none;
  font-family: var(--font-body);
}

.plan-features li {
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-text);
  line-height: 1.4;
}

.plan-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: var(--color-accent);
  color: white;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-time-wrapper {
  margin-top: 0.8rem !important;
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px !important;
  align-items: center;
  padding-left: 0 !important;
}

.plan-time-wrapper::before {
  display: none !important;
}

.time-badge {
  display: inline-flex;
  align-items: center;
  background: white;
  border: 1px solid #ddd;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.03);
}

.time-badge .type {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 2px;
  margin-right: 8px;
  color: white;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.time-badge.day {
  border-color: #f1c40f;
}

.time-badge.day .type {
  background-color: #f1c40f;
}

.time-badge.night {
  border-color: var(--color-main);
}

.time-badge.night .type {
  background-color: var(--color-main);
}

.time-badge small {
  font-weight: 400;
  opacity: 0.6;
  margin-left: 4px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  background: white;
  border-radius: 12px;
  overflow: visible; /* バッジがはみ出せるように */
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 4px solid transparent;
  position: relative; /* バッジ位置の基準 */
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--color-accent);
}


.plan-card .card-img {
  border-radius: 12px 12px 0 0; /* カードの角丸（12px）に合わせて画像上部を調整 */
}

/* Hover zoom removed */


.plan-card.featured {
  border: 2px solid var(--color-accent);
  position: relative;
}

.plan-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 20px;
  z-index: 5;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-badge-special {
  top: -20px;
  right: -15px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  box-shadow: 0 10px 20px rgba(231, 76, 60, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transform: rotate(3deg);
  animation: badge-float 3s ease-in-out infinite;
  overflow: hidden;
  z-index: 10;
}

.plan-badge-special::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: badge-shine 4s infinite;
}

@keyframes badge-float {
  0%, 100% {
    transform: translateY(0) rotate(3deg);
  }
  50% {
    transform: translateY(-5px) rotate(5deg);
  }
}

@keyframes badge-shine {
  0% { left: -100%; }
  20%, 100% { left: 200%; }
}

@media (max-width: 768px) {
  .plan-badge-special {
    top: -12px;
    right: -5px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    box-shadow: 0 5px 10px rgba(231, 76, 60, 0.3);
  }
}

/* Day Plans Contact Buttons */
.day-plans-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.contact-notice {
  font-size: 0.95rem;
  color: var(--color-main);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.day-plans-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.day-plans-contact .btn {
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  padding: 1rem 2rem;
}

.btn-tel-round {
  background-color: var(--color-main) !important;
  color: var(--color-white) !important;
}

.btn-tel-round:hover {
  background-color: var(--color-accent) !important;
}

.btn-line-round {
  background-color: #06C755 !important;
  color: var(--color-white) !important;
}

.btn-line-round:hover {
  background-color: #05b14c !important;
  box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

@media (max-width: 768px) {
  .day-plans-contact {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .day-plans-contact .btn {
    width: 100%;
    max-width: 400px;
  }
}

.plans-more {
  text-align: center;
  margin-top: 4rem;
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-main);
  border: 2px solid var(--color-main);
  padding: 15px 40px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background: var(--color-main);
  color: var(--color-white);
}

.btn-card {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: var(--color-accent);
  color: var(--color-white);
  text-align: center;
  margin-top: auto;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-card:hover {
  background-color: var(--color-main);
  opacity: 0.9;
}

/* Facility specific */
.facility-more {
  text-align: center;
  margin-top: 3rem;
}

#show-more-facilities {
  display: none;
}

@media (max-width: 768px) {
  .facility-card.hide-mobile {
    display: none;
  }
  
  .facility-card.show-mobile {
    display: block !important;
  }
  
  #show-more-facilities {
    display: inline-block;
  }
}

.facility-card {
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  border: 4px solid transparent;
}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--color-accent);
}

.facility-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.facility-card .card-content {
  padding: 1.5rem;
}

.facility-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.new-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(211, 84, 0, 0.3);
  text-transform: uppercase;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(211, 84, 0, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(211, 84, 0, 0.5);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(211, 84, 0, 0.3);
  }
}

.facility-card p {
  font-size: 0.9rem;
}

/* Text helpers */
.text-left {
  text-align: left;
}

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

.mb-2 {
  margin-bottom: 2rem;
}

/* Image helpers */
.img-radius {
  border-radius: 8px;
}

.img-shadow {
  box-shadow: 20px 20px 0 var(--color-main);
}

/* Footer */
footer {
  background-color: var(--color-main);
  color: var(--color-white);
  padding: var(--spacing-lg) 0;
}

footer h2 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

footer p {
  opacity: 0.8;
}

.footer-tel {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2rem;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.footer-tel-icon {
  flex-shrink: 0;
  color: var(--color-accent);
}

.tel-link,
.footer-tel a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: all 0.3s ease;
  display: inline-block;
}

.tel-link:hover,
.footer-tel a:hover {
  color: var(--color-accent);
  transform: translateY(-2px) scale(1.02);
  text-decoration-thickness: 2px;
}

#access .tel-link {
  color: var(--color-main);
  font-weight: 700;
}

.footer-btn-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-end;
}

.btn-line-footer {
  background-color: #06C755 !important;
  color: var(--color-white) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-line-footer svg {
  flex-shrink: 0;
}

.btn-line-footer:hover {
  background-color: #05b14c !important;
  box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

.btn-white {
  background-color: var(--color-white) !important;
  color: var(--color-main) !important;
  text-align: center;
}

.btn-white:hover {
  background-color: var(--color-accent) !important;
  color: var(--color-white) !important;
}

.footer-social {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}

.footer-social a {
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a svg {
  width: 20px;
  height: 20px;
}

.footer-social a:hover {
  opacity: 1;
  color: var(--color-accent);
  transform: translateY(-3px);
}

.footer-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.footer-links a {
  color: var(--color-white);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-accent);
}

.footer-copy {
  text-align: center;
  margin-top: var(--spacing-md);
  padding-bottom: 2rem;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* Sitemap & Content Pages */
.text-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--color-accent);
  padding-left: 1rem;
}

.rule-item {
  margin-bottom: 2.5rem;
}

.rule-item h4 {
  color: var(--color-main);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.rule-item p {
  line-height: 1.7;
  color: #555;
  padding-left: 1.2rem;
}

.text-content ul {
  margin-bottom: 1.5rem;
}

.text-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.sitemap-list ul {
  list-style: none;
  padding-left: 2rem;
}

.sitemap-main > li {
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.sitemap-main ul {
  margin-top: 0.5rem;
  font-weight: 400;
  font-size: 0.95rem;
}

.sitemap-main a {
  color: var(--color-main);
  text-decoration: none;
  transition: color 0.3s ease;
}

.sitemap-main a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.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(62, 39, 35, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay::after {
  content: '+';
  color: var(--color-white);
  font-size: 3rem;
  font-weight: 300;
}

/* Animations shadow classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

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

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
}

.modal-content {
  margin: auto;
  display: block;
  width: auto;
  max-width: 90%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--color-accent);
}

/* BBQ Full Gallery Page */
.bbq-full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .bbq-full-gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.gallery-back-button {
  text-align: center;
  margin-top: 4rem;
  padding-bottom: 2rem;
}

/* Access Map Desktop Scaling */
@media (min-width: 993px) {
  #access .grid-2 {
    grid-template-columns: 1fr 1.5fr;
    align-items: flex-start;
  }
}

.access-block {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--color-accent);
  transition: all 0.3s ease;
}

.access-block:last-child {
  margin-bottom: 0;
}

.access-block h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-main);
  text-transform: none;
  letter-spacing: 0;
}

.access-block p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--color-text);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .access-block {
    padding-left: 1rem;
    margin-bottom: 1.5rem;
  }
}


/* FAQ Page Styles */

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-category-title {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.faq-category-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--color-accent);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item[open] {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  /* Remove default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-main);
  transition: background-color 0.2s;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  background-color: rgba(62, 39, 35, 0.02);
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 2px;
  height: 100%;
}

.faq-icon::after {
  width: 100%;
  height: 2px;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--color-text);
  line-height: 1.8;
  opacity: 0.9;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #fafafa;
  margin-top: 0;
  padding-top: 1.5rem;
}

/* Reservation Page Styles */
.booking-wizard {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  background: var(--color-white);
  padding: 0 10px;
}

.step-num {
  width: 40px;
  height: 40px;
  background: #eee;
  color: #999;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  transition: all 0.3s;
}

.step-text {
  font-size: 0.8rem;
  color: #999;
  font-weight: 600;
}

.wizard-step.active .step-num {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 10px rgba(211, 84, 0, 0.4);
}

.wizard-step.active .step-text {
  color: var(--color-accent);
}

.wizard-line {
  flex: 1;
  height: 2px;
  background: #eee;
  margin-top: -24px;
  /* Adjust based on step-text height */
  z-index: 1;
}

/* Plan Selection */
.plan-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.plan-select-card {
  cursor: pointer;
  position: relative;
  display: block;
}

.plan-select-card input[type="radio"] {
  display: none;
}

.plan-select-content {
  background: var(--color-bg);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
}

.plan-select-card input[type="radio"]:checked+.plan-select-content {
  border-color: var(--color-accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(211, 84, 0, 0.15);
}

.plan-select-content img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.plan-info {
  padding: 1.5rem;
}

.plan-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.plan-info .price {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.plan-info .description {
  font-size: 0.9rem;
  opacity: 0.8;
}

.select-marker {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.plan-select-card input[type="radio"]:checked+.plan-select-content .select-marker {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.plan-select-card input[type="radio"]:checked+.plan-select-content .select-marker::after {
  content: '✓';
  color: white;
  font-weight: bold;
}

/* Calendar Mock */
.calendar-mock-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cal-btn {
  background: none;
  border: 1px solid #ddd;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-family: var(--font-heading);
  color: var(--color-main);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  gap: 5px;
}

.cal-head {
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 10px;
  color: var(--color-main);
}

.cal-cell {
  padding: 10px 0;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
}

.cal-cell:not(.empty):hover {
  background: #f5f5f5;
}

.status-ok {
  display: block;
  color: #4CAF50;
  font-size: 0.8rem;
}

.status-few {
  display: block;
  color: #FF9800;
  font-size: 0.8rem;
}

.status-full {
  display: block;
  color: #F44336;
  font-size: 0.8rem;
}

/* Booking Form */
.booking-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.mock-form .form-group {
  margin-bottom: 1.5rem;
}

.mock-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.required {
  background: #F44336;
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 5px;
  vertical-align: middle;
}

.mock-form input,
.mock-form select,
.mock-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fdfdfd;
}

.mock-form input:focus,
.mock-form select:focus,
.mock-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--color-white);
}

/* Instagram Section */
.instagram-section {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: hidden;
  background-color: var(--color-bg);
}

.instagram-section iframe {
  width: 100%;
  border: none;
  display: block;
  min-height: 800px;
}

@media (max-width: 768px) {
  .instagram-section iframe {
    min-height: 600px;
  }
}

/* BBQ Gallery Custom Badge */
.bbq-gallery-point {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(211, 84, 0, 0.2);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.bbq-gallery-point::before {
  content: '★';
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 5rem;
  opacity: 0.1;
  color: var(--color-white);
  transform: rotate(-20deg);
}

.bbq-gallery-point h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  line-height: 1.4;
  margin: 0;
  position: relative;
  z-index: 1;
}

.bbq-gallery-point p {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .bbq-gallery-point {
    aspect-ratio: 4 / 3;
    padding: 1rem;
    height: auto;
  }
  .bbq-gallery-point h3 {
    font-size: 1.1rem;
  }
  .bbq-gallery-point p {
    font-size: 0.8rem;
    margin-top: 0.3rem;
  }
}

/* Flow Section Badge */
.flow-badge {
  display: inline-block;
  border: 2px solid var(--color-main);
  background-color: var(--color-white);
  color: var(--color-main);
  padding: 0.6rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  border-radius: 0;
  box-shadow: 6px 6px 0 var(--color-accent);
  letter-spacing: 0.1em;
  transform: rotate(-1deg); /* Slight tilt for a vintage tag feel */
}
/* Floating Home Button */
.floating-home-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: all 0.3s ease;
  border: 2px solid var(--color-white);
  text-align: center;
}

.floating-home-btn:hover {
  background-color: var(--color-main);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.floating-home-btn svg {
  margin-bottom: 2px;
}

.floating-home-btn span {
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
}

@media (max-width: 768px) {
  .floating-home-btn {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
  }
  
  .floating-home-btn span {
    font-size: 0.6rem;
  }
}
