/*------------------------------------------------------------------
Project:	沢の鶴キャンプサイト WordPress Theme - Modular CSS Version
Version:	2.0
Last change:	2025.01
Assigned to:	沢の鶴

[Architecture]

This is a modular CSS architecture using imports to organize styles 
by sections and components for better maintainability.

[Color codes]

Default: #000;
Color White: #fff

[Typography]

Body copy: 'Montserrat', sans-serif; 13px;
Headers: 'Montserrat', sans-serif;

-------------------------------------------------------------------*/

/* Core Styles */
@import 'components/_common.css';

/* Section Styles */
@import 'sections/_navigation.css';
@import 'sections/_hero.css';
@import 'sections/_story.css';
@import 'sections/_details.css';
@import 'sections/_news.css';
@import 'sections/_banner.css';
@import 'sections/_gallery.css';
@import 'sections/_gear.css';
@import 'sections/_products.css';
@import 'sections/_footer.css';

/* Pace.js Loading Screen Styles */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 2000;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  width: 200px;
  overflow: hidden;
}

.pace .pace-progress {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  max-width: 200px;
  position: fixed;
  z-index: 2000;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100%;
  background: #fff;
}

.pace.pace-inactive {
  display: none;
}

/* Page Wrapper Show Navigation Styles */
.page-wrapper.show-navigation .nav-btn:before {
  visibility: visible;
  -moz-transform: scale(30);
  -ms-transform: scale(30);
  -webkit-transform: scale(30);
  transform: scale(30);
}

.page-wrapper.show-navigation .nav-btn:after {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -moz-transition-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.page-wrapper.show-navigation .nav-btn figure {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transform: translateX(5px) scaleX(1.3);
  -ms-transform: translateX(5px) scaleX(1.3);
  -webkit-transform: translateX(5px) scaleX(1.3);
  transform: translateX(5px) scaleX(1.3);
}

.page-wrapper.show-navigation .nav-btn figure:nth-child(2) {
  -moz-transition-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.page-wrapper.show-navigation .nav-btn figure:nth-child(3) {
  -moz-transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.page-wrapper.show-navigation .navigation .right .navigation-links {
  visibility: visible;
  -moz-transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.page-wrapper.show-navigation .hero-title,
.page-wrapper.show-navigation #page-content > div,
.page-wrapper.show-navigation #page-footer > div {
  pointer-events: none;
}