body {
  margin: 0;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
  font-size: 18px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  /* box-shadow: 0 2px 6px rgba(0,0,0,0.05); */
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
}
.nav-left, .nav-right {
  display: flex;
  gap: 2rem;
  margin-bottom:4% ;

}

/* Elegant Logo Container */
.logo {
  display: inline-block;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
  transform: translateY(-2px) scale(1.02);
}

/* Elegant Logo Image */
.logo-img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  border-radius: 12px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.logo:hover .logo-img {
  filter: drop-shadow(0 4px 12px rgba(227, 13, 13, 0.3)) brightness(1.1);
}
.nav-link {
  text-decoration: none;
  color:white;
  font-weight: 600;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
 
}
.nav-link:hover {
  color: #d4a373;
}
.logo {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
}



.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; 
  height: 28px;
  margin-left: 5px;

  border: 2px solid #fff;  /* square border */
  border-radius: 7px;      /* slightly rounded, remove if sharp */
  
  font-size: 1rem;
  color: #fff;
}
.traditional-navbar.transparent {
  background-color: rgba(255,255,255,0) !important;
  box-shadow: none !important;
  border-bottom: none !important;
}
.traditional-navbar.scrolled {
  background: linear-gradient(to bottom, #ffffff 65%, transparent 25%);
  color: black;
  /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
  
}
.traditional-navbar.scrolled .nav-link {
  color: #222 !important;
}

.traditional-navbar.scrolled .logo {
  color: #222 !important;
}
.traditional-navbar.scrolled .nav-icon {
  color: #222 !important;
}

/* Center desktop menu and align icons to the right */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.nav-menu-center {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex: 1;
}
.nav-menu-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: 2rem;
}
.nav-icon {
  color: white;
  font-size: 1.3rem;
  transition: color 0.2s;
}
.nav-icon:hover {
  color: #007bff;
}

/* Banner */
.banner {
  height: 100vh;
  background: url('../img/banner-bar.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 0 2rem;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}
.banner-content {
  max-width: 600px;
}

.banner-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.btn {
  padding: 1rem 2rem;
  border: 2px solid #e30d0d;
  background: #e30d0d;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
  transition: all 0.3s;
  border-radius: 4px;
}
.btn:hover {
  background: transparent;
  color: #e30d0d;
}
.banner h1, .banner p ,.banner .location{
  position: relative;
  z-index: 2;
}

/* Banner bottom info */
.banner-bottom {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 0 3rem;
  font-size: 1.1rem;
}
.socials img {
  filter: invert(1);
  transition: 0.3s;
}
.socials img:hover {
  filter: invert(0.7);
}
.location {
  color:white;
  text-align: center;
  justify-content: center;
  font-size: 1.1rem;
  
}

/* Photo Marquee */
/* .photo-marquee {
  width: 100%;
  overflow: hidden;
  height: 20vh;
  padding: 0;
  height: 110px;
  display: flex;
  align-items: center;
  position: relative;
}
.marquee-track {
  display: flex;
  width: max-content;
  
  height: 100%;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  animation: marquee 40s linear infinite;
}
.marquee-img {
  height: 100%;
  width: 220px;
  object-fit: cover;
  
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  background: #222;
}
@keyframes marquee {
  0% { left: 0; }
  100% { left: -50%; }
} */

/* Icon Section */
/* .icon-section {
  background: #fff;
  width: 100%;
  padding: 2.5rem 0 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-content {
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}
.icon-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;

  background: #eee;
} */


/* .icon-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #222;
}
.icon-desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0;
} */
@media (max-width: 768px) {
  .icon-section {
    padding: 1.5rem 0 1rem 0;
  }
  .icon-img {
    width: 64px;
    height: 64px;
    margin-bottom: 0.8rem;
  }
  .icon-title {
    font-size: 1.05rem;
  }
  .icon-desc {
    font-size: 0.95rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  .banner-content h2 {
    font-size: 1.6rem;
  }
  .banner-content p {
    font-size: 1rem;
  }
  .banner-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }
  /* Responsive navbar for phone view */
  .nav-left, .nav-right {
    display: none !important;
  }
  .nav-center {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .logo {
    font-size: 1.2rem;
    padding: 0.5rem 0;
    text-align: left;
    width: 100%;
  }
  
  .nav-container {
    position: relative;
    flex-direction: row;
    align-items: center;
    padding: 0.5rem 1rem;
  }
  
  .hamburger:hover {
    background: rgba(0,0,0,0.08);
  }
  
  } */
/* } */
/* Hide hamburger by default, show only on phone */
.hamburger {
  display: none;
}
.traditional-navbar.scrolled + .hamburger span {
  background: #222; /* dark lines on white bg */
}
@media (max-width: 768px) {
  .hamburger {
    display: flex; /* show only on mobile */
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 1100;
  }
}


/* Ensure hamburger and mobile menu are only visible on mobile, and styled for visibility */
.hamburger {
  display: none;
}
@media (max-width: 768px) {
  .nav-left {
    display: none !important;
  }
  
  } 
  
 

/* Desktop menu visible only on desktop */
.nav-menu {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .nav-menu {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 2100;
    background: transparent;
   
    box-shadow: none;
    transition: background 0.3s;
  }
  /* .hamburger.scrolled {
   
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  } */
  .hamburger span {
    display: block;
    height: 3px;
    width: 20px;
    background: #222;
    margin: 4px 0;
    /* border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08); */
    transition: 0.3s;
  }
}
@media (max-width: 768px) {
  .navbar.menu-open {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff; /* white background for mobile menu */
    box-shadow: none;
    flex-direction: column;
    z-index: 2000;
    border-radius: 0 0 8px 8px;
    min-height: 120px;
    padding-bottom: 1rem;
  }
  .mobile-menu.show {
    display: flex;
  }
  .mobile-menu a {
    color: #222;
    padding: 1rem 2rem;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .navbar .logo {
    color: #222 !important;
    padding: 6px;
    border-radius: 12px;
  }
  
  .logo-img {
    width: 100px;
    height: 50px;
  }
}

.video-section {
  
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 35vh; /* Banner height (adjust as needed) */
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-section .closed{
  font-size: 0.5rem;
}

.video-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.oz-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes video cover the container */
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent dark overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.video-times h2,
.video-times h3,
.video-times p {
  margin: 0.2em 0;
}

/* Optional: responsive text */
@media (max-width: 768px) {
  .video-section {
    height: 45vh; /* slightly taller on small screens */
  }

  .video-times h2 {
    font-size: 1.2rem;
  }

  .video-times h3,
  .video-times p {
    font-size: 1rem;
  }
}
.icon-section {
  text-align: center;
  margin: 20px 0;
}

.image-text-container {
  display: flex;
  align-items: flex-start;   /* align top, not center vertically */
  justify-content: center;
  gap: 30px;
  max-width: 1100px;         /* keeps content from stretching too far */
  margin: 0 auto;            /* center inside screen */
  padding: 0 20px;           /* add side padding */
}

.image-box {
  flex: 1;                   /* take 50% width */
  display: flex;
  flex-direction: column;
  align-items: center;       /* center image horizontally in its half */
}

.image-box img.left-img {
  max-width: 80%;           /* responsive inside container */
  width: 100%;
  height: auto;
  
}

.image-top-text {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: normal;
  color: #333;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 10px;
  width: 80%;
}

/* Yellow underline only under "Standard" */
.image-top-text .highlight {
  text-decoration: underline;
  text-decoration-color: black;
  text-underline-offset: 3px;
}

.text-box {
  flex: 1;                   /* take 50% width */
  text-align: center;
  position: relative;
  
  padding: 5px;
}

.text-icon {
    display: flex;           /* enable flex layout */
    justify-content: center; /* horizontal centering */
    align-items: center;     /* vertical centering */
    text-align: center;      /* fallback for text if any */
    height: 100%;   
    margin-top: 5%;         /* optional, if you want vertical centering in parent */
}
.text-decor-icon {
    max-width: 120px;         /* make sure image is responsive */
    height: auto;
}


/* Two-column layout inside text box */
.karaoke-info {
  margin-left: 20px;    /* a little apart from left */
  margin-top: 20%;
  text-align: left;     /* keep left-aligned */
}

.info-col {
  margin-bottom: 20px;  /* space between pricing and language */
}

.info-title {
  font-weight: 500;     /* slightly heavier for Japanese readability */
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 8px;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
}

.info-text {
  font-size: 1rem;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
  font-weight: 400;
  color: #444;
  line-height: 1.6;
  margin: 0;
}
.extra-note{
  font-size: 1.2rem;
  font-weight: 600;
  
  
  color: black;
  line-height: 1.5;
  text-align: left;
  margin-left: 20px;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;

}

.extra-note .dis {
display: inline-block;          /* Make box fit the text */
  padding: 5px 10px;              /* Space inside the box */
  background-color: #000;         /* Black background */
  color: #fff;                    /* White text */
  font-weight: 600;               /* Slightly bold */
  border: 1px solid #fff;         /* Optional white border */
  border-radius: 5px;       
}

/* ✅ Responsive for tablets & mobile */
@media (max-width: 768px) {
  .image-top-text {
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-align: left;
    width: 90%;      
    margin-left: 10%; 
  }

  .image-text-container {
    flex-direction: column;   /* stack vertically */
    text-align: center;
  }

  .image-box {
    align-items: center;       /* center the image */
  }

  .image-box img.left-img {
    max-width: 80%;            /* shrink image */
    height: auto;
    margin: 0 auto;            /* center horizontally */
  }

.text-box {
    max-width: 90%;
    margin-left: 10%;
  }

  .text-decor-icon {
    width: 50px;
  }

  .karaoke-info {
    margin-left: 15px;   /* reduce spacing on smaller screens */
    margin-right: 15px;
    margin-top: 5%;
  }

  .info-title {
    font-size: 1.2rem;  /* larger for Japanese readability */
  }

  .info-text {
    font-size: 1.1rem;  /* larger for Japanese readability */
    line-height: 1.6;
  }
  .text-decor-icon {
        width: 90px;  /* slightly bigger than tablet */
    }
    .extra-note{
      margin: 0;
    }
}

@media (max-width: 480px) {
  .image-top-text {
    font-size: 1rem;
    line-height: 1.4;
    width: 90%;
    margin-left: 10%;  
  }

  .image-box img.left-img {
    max-width: 80%;           /* smaller but not full width */
    height: auto;
    margin: 0 auto;           /* still centered */
  }

   .text-box {
    max-width: 90%;
    margin-left: 10%;
    padding: 12px;
  }

  .karaoke-info {
    margin-left: 10px;
    margin-right: 10px;
  }

  .info-title {
    font-size: 1.1rem;
  }

  .info-text {
    font-size: 1rem;
  }
  .text-decor-icon {
        width: 100px;  /* slightly bigger than tablet */
    }
    .extra-note{
      margin: 0;
    }
}


@media (max-width: 600px) {
  .logo {
    padding: 4px;
    border-radius: 10px;
  }
  
  .logo-img {
    width: 80px;
    height: 40px;
    border-radius: 8px;
  }
}

/* Karaoke Neon Lights Section */
.karaoke-section {
  padding: 30px 20px;
  text-align: center;
}

.section-header {
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
}

.neon-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 20px;
  gap: 30px;
}

.neon-item {
  flex: 0 0 33.333%;
  width: 33.333%;
  max-width: 400px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.neon-item:hover {
  transform: translateY(-5px) scale(1.02);
}

.neon-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: all 0.3s ease;
  display: block;
  border-radius: 10px;
}

.neon-item:hover .neon-image {
  transform: scale(1.05);
}


/* Mobile responsive */
@media (max-width: 768px) {
  .karaoke-section {
    padding: 20px 15px;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .neon-gallery {
    flex-direction: column;
    gap: 20px;
  }
  
  .neon-item {
    flex: none;
    width: 100%;
    max-width: none;
  }
  
  .neon-image {
    height: 400px;
  }
}

/* About Us Section Styling */
.about-us-section {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Special Guest Card */
.special-guest-card {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.special-guest-card:hover {
  transform: translateY(-5px);
}

.guest-content {
  flex: 1;
  padding: 30px;
}

.guest-title {
  font-size: 1.8rem;
  color: #e30d0d;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
}

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

.guest-name {
  font-weight: 600;
  color: #e30d0d;
}

.profile-link {
  color: #e30d0d;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.profile-link:hover {
  border-bottom-color: #e30d0d;
}

.guest-image {
  flex: 0 0 300px;
  height: 200px;
}

.guest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Philosophy Section */
.philosophy-section {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.philosophy-title {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
}

.philosophy-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: #555;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
  border-left: 4px solid #e30d0d;
  background: #f8f9fa;
  border-radius: 0 10px 10px 0;
}

/* Owner Section */
.owner-section {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.owner-title {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
}

.owner-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  align-items: start;
}

.owner-image,
.owner-image-2 {
  text-align: center;
}

.owner-image img,
.owner-image-2 img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e30d0d;
  box-shadow: 0 4px 15px rgba(227, 13, 13, 0.2);
}

.owner-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.owner-description,
.owner-experience {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #e30d0d;
}

.owner-description h4,
.owner-experience h4 {
  font-size: 1.2rem;
  color: #e30d0d;
  margin-bottom: 10px;
  font-weight: 600;
}

.owner-description p,
.owner-experience p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-us-section {
    padding: 30px 15px;
  }
  
  .about-container {
    gap: 30px;
  }
  
  .special-guest-card {
    flex-direction: column;
  }
  
  .guest-image {
    flex: none;
    width: 100%;
    height: 200px;
  }
  
  .guest-content {
    padding: 20px;
  }
  
  .guest-title,
  .philosophy-title,
  .owner-title {
    font-size: 1.5rem;
  }
  
  .philosophy-quote {
    font-size: 1.1rem;
    padding: 15px;
  }
  
  .owner-section {
    padding: 25px;
  }
  
  .owner-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .owner-image img,
  .owner-image-2 img {
    width: 120px;
    height: 120px;
  }
}