/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;700&display=swap');

/* Root Variables - Japan Travel Inspired */
:root {
  --primary-color: #00695c;   /* Deep green/teal */
  --secondary-color: #e0f2f1; /* Soft seafoam */
  --accent-color: #004d40;    /* Darker teal */
  --text-color: #333;
  --bg-color: #ffffff;
  --max-width: 1200px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: 6px;
}

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

button {
  background: var(--primary-color);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
button:hover {
  background: var(--accent-color);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 0.6rem;
}
h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.2rem;
}

/* Header & Navigation */
header {
  background: var(--primary-color);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav ul li a {
  color: #fff;
  font-weight: 600;
}

nav ul li a.active {
  text-decoration: underline;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Mobile Menu */
@media (max-width: 768px) {
  nav ul {
    position: absolute;
    top: 60px;
    right: 0;
    background: var(--primary-color);
    flex-direction: column;
    width: 200px;
    padding: 1rem;
    display: none;
  }
  nav ul.show {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}

/* Section Spacing */
section {
  margin: 2rem 0;
}

/* Grid Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Cards */
.service-card {
  background: var(--secondary-color);
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.review-card {
  background: #fff;
  border-left: 4px solid var(--primary-color);
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: var(--secondary-color);
  padding: 2rem;
  border-radius: 8px;
}

/* Footer */
footer {
  background: var(--accent-color);
  color: #fff;
  text-align: center;
  padding: 1rem;
}
footer a {
  color: #fff;
  text-decoration: underline;
}

/* Forms (for contact page later) */
form {
  display: grid;
  gap: 1rem;
}
input, textarea, select {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Ad Placeholder */
.ad-placeholder {
  background: #f0f0f0;
  color: #888;
  text-align: center;
  padding: 1rem;
  border-radius: 4px;
  margin: 1rem 0;
}
/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;700&display=swap');

/* Theme Colors — Calm, Nature-Inspired Palette */
:root {
  --primary-color: #1B5E20;   /* Rich Forest Green */
  --secondary-color: #E8F5E9; /* Very Light Mint */
  --accent-color: #2E7D32;    /* Slightly Lighter Green */
  --text-color: #2F2F2F;
  --bg-color: #FFFFFF;
  --max-width: 1100px;
}

/* Reset & Base */
* {
  margin: 0; padding: 0; box-sizing: border-box;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-color);
  background: var(--bg-color);
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}
a {
  color: var(--primary-color);
  text-decoration: none;
}
button {
  background: var(--accent-color);
  color: #fff;
  padding: 0.8rem 1.4rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
button:hover {
  background: var(--primary-color);
}

/* Container Centering */
.container {
  max-width: var(--max-width);
  margin: 2rem auto;
  padding: 0 1rem;
}
h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }

/* Header & Navigation */
header {
  background: var(--primary-color);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}
.nav-container {
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
nav ul li a {
  color: #fff;
  font-weight: 600;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.hamburger span {
  width: 25px; height: 3px;
  background: #fff; border-radius: 2px;
}
/* Mobile Navigation */
@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 68px;
    right: 0;
    background: var(--primary-color);
    flex-direction: column;
    width: 200px;
    padding: 1rem;
  }
  nav ul.show {
    display: flex;
  }
  .hamburger { display: flex; }
}

.hero {
  position: relative;
  width: 100%;
  min-height: 80vh; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-image: url('../imagesss/bg.jpg'); 
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: 'Noto Sans JP', sans-serif;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero button {
  background-color: #004d40; /* Deep green accent */
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.hero button:hover {
  background-color: #00695c;
}


/* Grid Layouts */
.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 2rem; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Cards */
.service-card, .review-card {
  background: var(--secondary-color);
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover, .review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Reviews Emphasis */
.review-card {
  border-left: 5px solid var(--accent-color);
  background: #fff;
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: var(--secondary-color);
  padding: 3rem 1rem;
  border-radius: 10px;
}

/* Footer */
footer {
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem;
}
footer a {
  color: #fff;
  text-decoration: underline;
}

/* Ad Placeholder Styling */
.ad-placeholder {
  background: #F5F5F5;
  color: #999;
  text-align: center;
  padding: 2rem;
  border-radius: 6px;
  margin: 2rem 0;
}

.our-story {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* Makes it responsive */
}

.story-img {
  flex: 1 1 45%;
}

.story-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: block;
}

.story-content {
  flex: 1 1 50%;
}

.story-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #004d40; /* Deep green accent */
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

/* Responsive: stack image above content on small screens */
@media screen and (max-width: 768px) {
  .our-story {
    flex-direction: column;
    text-align: center;
  }

  .story-img, .story-content {
    flex: 1 1 100%;
  }

  .story-content h2 {
    font-size: 1.8rem;
  }

  .story-content p {
    font-size: 1rem;
  }
}


.our-values {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.our-values h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #004d40; /* Deep green accent */
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-list li {
  background-color: #e0f2f1; /* Light green accent */
  color: #004d40;
  padding: 20px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.values-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Responsive: smaller gap and font on mobile */
@media screen and (max-width: 768px) {
  .our-values h2 {
    font-size: 1.8rem;
  }

  .values-list li {
    font-size: 1rem;
    padding: 15px;
  }
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px; /* space between images */
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive: 2 columns on tablet, 1 column on mobile */
@media screen and (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* Blog Grid Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.blog-post {
  background-color: #e0f2f1; /* light green/blue accent */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-post img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  margin: 15px;
  color: #004d40; /* deep green accent */
}

.blog-post p {
  font-size: 1rem;
  margin: 0 15px 15px 15px;
  color: #333;
  flex-grow: 1;
}

.blog-post a {
  display: inline-block;
  margin: 0 15px 15px 15px;
  text-decoration: none;
  color: #fff;
  background-color: #004d40; /* deep green button */
  padding: 10px 15px;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s;
}

.blog-post a:hover {
  background-color: #00796b; /* lighter green on hover */
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Responsive Breakpoints */
@media screen and (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.container {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.container h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  color: #004d40;
  text-align: center;
  margin-bottom: 40px;
}

.accordion {
  border-radius: 10px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}

.accordion-header {
  width: 100%;
  padding: 15px 20px;
  text-align: left;
  font-size: 1.1rem;
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #e0f2f1;
  color: #004d40;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.accordion-header:hover {
  background-color: #b2dfdb;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: #f7f7f7;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content p {
  padding: 15px 0;
  margin: 0;
  color: #333;
}

/* Contact Info Section */
.contact-info {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.contact-info h2 {
  font-family: 'Noto Sans JP', sans-serif;
  color: #004d40;
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.1rem;
  color: #333;
  margin: 8px 0;
}

.contact-info a {
  color: #00796b;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.contact-form-section h2 {
  font-family: 'Noto Sans JP', sans-serif;
  color: #004d40;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #e0f2f1;
  padding: 30px;
  border-radius: 10px;
}

.contact-form label {
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  color: #004d40;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  width: 100%;
  resize: vertical;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  background-color: #00796b;
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #004d40;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form {
    padding: 20px;
  }
}

 .logo a {
      text-decoration: none;
      color: #f5f5f5;
      font-size: 1.8rem;
      font-weight: bold;
    }

    .logo a:hover {
      color: #eee94f;
    }
