:root {
  --primary-color: #557153; /* Calming forest green */
  --primary-light: #7D8F69;
  --primary-dark: #3A4F39;
  --accent-color: #E6C287; /* Soft gold/sand for accents */
  --bg-color: #FBF9F1; /* Warm off-white */
  --surface-color: #FFFFFF;
  --text-main: #333333;
  --text-light: #666666;
  --border-color: #E2E2E2;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Shippori Mincho', serif; /* Elegant mincho font for headings */
  font-weight: 500;
  color: var(--primary-dark);
}

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

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

/* --- Layout --- */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

section {
  padding: 5rem 0;
}

/* --- Header & Navigation --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Shippori Mincho', serif;
  color: var(--primary-dark);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.btn-reserve {
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 500;
  box-shadow: 0 4px 6px rgba(85, 113, 83, 0.2);
}

.btn-reserve:hover {
  background-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(85, 113, 83, 0.3);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--text-main);
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  height: 100vh;
  padding-top: 80px; /* Offset for header */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(251, 249, 241, 0.9) 0%, rgba(251, 249, 241, 0.4) 100%);
}

.hero-content {
  max-width: 600px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards 0.5s ease-out;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

/* --- Features Section --- */
.features {
  background-color: var(--surface-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.feature-img-wrapper {
  height: 200px;
  overflow: hidden;
}

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

.feature-card:hover .feature-img-wrapper img {
  transform: scale(1.05);
}

.feature-text {
  padding: 2rem;
}

.feature-text h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-text p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- Menu Section --- */
.menu {
  background-color: var(--bg-color);
}

.menu-list {
  max-width: 800px;
  margin: 0 auto;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--surface-color);
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: var(--transition);
}

.menu-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  border-left: 4px solid var(--primary-color);
}

.menu-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.menu-info p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.menu-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary-color);
  font-family: 'Shippori Mincho', serif;
}

/* --- Testimonials --- */
.testimonials {
  background-color: var(--surface-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
  background-color: var(--bg-color);
  border-radius: 10px;
  position: relative;
}

.testimonial-card::before {
  content: '“';
  font-size: 4rem;
  font-family: serif;
  color: var(--accent-color);
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.3;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  text-align: right;
  font-weight: bold;
  color: var(--primary-dark);
}

/* --- Access / Info --- */
.access {
  background-color: var(--primary-dark);
  color: white;
  padding: 5rem 0;
}

.access .section-title {
  color: white;
}

.access-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.access-info {
  flex: 1;
  min-width: 300px;
}

.access-info h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.info-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.access-map {
  flex: 1;
  min-width: 300px;
  height: 350px;
  background-color: #ddd; /* Placeholder for iframe map */
  border-radius: 10px;
  overflow: hidden;
}

/* --- Footer --- */
footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 2rem 0;
}

footer p {
  font-size: 0.9rem;
}

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

.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, visibility;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 2rem 0;
    box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease-in-out;
  }

  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .menu-toggle {
    display: flex;
  }

  .menu-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .menu-price {
    margin-top: 1rem;
    align-self: flex-end;
  }
}
