/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: var(--white);

}

:root {
  /* Colour Pallete */
  --black: #101010;
  --orange: #FD7E21;
  --dark-gray: #1C1C1C;
  --mid-gray: #2a2a2a;
  --light-gray: #EAEAEA;
  --white: #FFFFFF;
  --silver: #C0C0C0;
  --accent-gold: #D4AF37;
  --deep-orange: #CC5500;
  --neon_orange: #FF5F1F;
  /* Font Size */

  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-md: 18px;
  --font-size-lg: 24px;
  --font-size-logo: 28px;
  --font-size-xl: 36px;
  /* Font Weight */

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  --site-max-width: 1300px;

  /* Border Radius */

  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 24px;
  --border-radius-circle: 50%;
}

html {
  scroll-behavior: smooth;
}
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* Site Stylings */
ul{
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section-content {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 20px;
}

.section-title {
  text-align: center;
  padding: 20px 0 40px;
  text-transform: uppercase;
  font-size: var(--font-size-xl);
}

.section-title::after {
  content: "";
  width: 80px;
  height: 5px;
  display: block;
  margin: 10px auto 0;
  border-radius: var(--border-radius-sm);
  background: var(--orange);
}






/* Navbar */
header {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9999;
}

header .navbar {
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}


.navbar .nav-menu .logo-text {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: var(--font-size-logo);
  font-weight: var(--font-weight-medium);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.logo-img {
  height: 4em;
  width: auto;
}
.logo-text {
  font-size: var(--font-size-lg);
}


.navbar .nav-menu {
  font-family: 'Montserrat', sans-serif;
  display: flex;
  gap: 10px;
}


.navbar .nav-menu .nav-link {
  padding: 10px 18px;
  background: var(--orange);
  font-size: var(--font-size-md);
  color: var(--black);
  border-radius: var(--border-radius-xl);
  font-family: 'Montserrat', sans-serif;
}

.navbar .nav-menu .nav-link:hover {
  color: var(--orange);
  background: var(--dark-gray);
  border: 2px solid transparent;
  border-color: var(--orange);
  border-radius: var(--border-radius-lg);
  transition: ease 0.4s;
}

  .navbar :where(#menuopenbutton, #menuclosebutton){
    display: none;
  }



.hero {
  background: linear-gradient(
  135deg,
  rgba(255, 95, 31, 0.95) 50%, /* neon orange with 70% opacity */
  rgba(16, 16, 16, 0.95) 50%   /* dark gray/black with 70% opacity */
);
color: white;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 60px 20px;

}

/* Video in the top half */
.hero-video {
  width: 90%;
  height: 50vh;
  overflow: hidden;
}

.hero-video video { 
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: var(--black);
  border-radius: 12px;
}

/* Text below the video */
.hero-text {
  padding: 2rem;
  text-align: center;
  max-width: 800px;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  font-style: italic;
  color: orange;
  font-family: "Montserrat", sans-serif;
  font-weight: 700; 
}

.hero-text p {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.6;
  font-family: "Lora", sans-serif;
}

.buttonContactUs {
  padding: 2rem;
  text-align: center;
  max-width: 800px;
}


.hero .hero-text .buttons .buttonContactUs {
  padding: 10px 26px;
  background-color: var(--orange);
  color: var(--black);
  border-radius: var(--border-radius-xl);
}

.hero .hero-text .buttons .buttonContactUs:hover {
  color: var(--orange);
  background: var(--dark-gray);
  border: 2px solid transparent;
  border-color: var(--orange);
  border-radius: var(--border-radius-md);
  transition: ease 0.4s;
}

.about-section {
  background: var(--dark-gray);
  color: white;
  padding: 100px 20px;
  border-top: 5px solid var(--orange);
}

.about-section .section-content {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.about-section .about-image-wrapper .about-image {
  width: 40vw;
  max-width: 500px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--border-radius-circle);
}

.about-section .about-details .text {
  text-align: center;
  max-width: 500px;
  font-size: 1.2rem;
  line-height: 1.8;
}

.highlight-kanji {
  color: var(--orange); /* Or use any color you prefer, e.g., #FFD700 or red */
  font-weight: bold;
}


.about-section .about-details .social-link-list {
  display: flex;
  gap: 25px;
  justify-content: center;
  text-align: center;
  max-width: 500px;
  font-size: 1.2rem;
  line-height: 1.8;
}

.social-link i {
  color: var(--white);
  gap: 25px;
  font-size: var(--font-size-l);
  transition: color 0.3s ease;
}

.social-link:hover i {
  color: var(--orange);
}


.service {
  background: linear-gradient(to right, #1C1C1C 0%, #2a2a2a 50%, #1C1C1C 100%);
  border-top: 5px solid var(--orange);
}

.service .disclaimer-text {
  text-align: center;
  text-transform: uppercase;
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
}


.service .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 0;
}

.service .service-list .service-image {
  width: 100%;
  height: auto;
  max-width: 240px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--border-radius-circle);
  margin-bottom: 15px;
}

.service .service-list .service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 300px; /* consistent card width */
  padding: 20px;
  border-radius: var(--border-radius-lg);
}


.service .service-list .service-item h2 {
  margin: 12px;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
}
.service .service-list .service-item h3 {
  margin: 2px;
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-bold);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
}

.service .service-list .service-item h4 {
  margin: 0px;
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-bold);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
}
.service .service-list .service-item p {
  margin: 5px;
}


.contact-section {
  background: var(--mid-gray);
  border-top: 5px solid var(--orange);
  color: white;
  padding: 80px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-section .section-content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-section .contact-info-list {
  flex: 1 1 300px;
  max-width: 400px;
}

.contact-section .contact-info-list .contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  font-size: 1.3rem; /* increased font size */
  color: #ddd;
  transition: color 0.3s ease;
}

.contact-section .contact-info-list .contact-item i {
  font-size: 2rem;       /* bigger icon */
  color: var(--orange);
  min-width: 40px;       /* fixed width so text aligns */
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-section .contact-info-list .contact-item:hover {
  color: var(--orange);
  cursor: pointer;
}

.contact-form {
  flex: 1 1 400px;
  max-width: 600px;
  background: #222;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.contact-form .form-input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--border-radius-lg);
  border: 1.5px solid var(--mid-gray);
  background: #333;
  color: white;
  font-size: var(--font-size-m);
  font-weight: 500;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  box-sizing: border-box;
  margin-bottom: 20px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.4;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

.contact-form .form-input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form .form-input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  background: #2a2a2a;
  box-shadow: 0 0 8px var(--orange);
}

.contact-form textarea {
  min-height: 120px;
  max-height: 300px;
}

.contact-form button {
  background: var(--orange);
  border: none;
  color: black;
  padding: 14px 24px;
  font-size: var(--font-size-l);
  font-weight: 600;
  border-radius: var(--border-radius-lg);
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(253, 126, 33, 0.5);
}

.contact-form button:hover {
  background-color: #e26500;
  box-shadow: 0 6px 16px rgba(230, 101, 0, 0.7);
}

.footer-section {
  padding: 20px 0;
  background: #18191A;

}
.footer-section .section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.footer-section :where(.copyright-text, .social-link .policy-link) {
  color: white;
}

.footer-section .social-link-list {
  display: flex;
  gap: 25px;
  align-items: center;
}

.footer-section .social-link-list .social-link {
  font-size: 20px;
}


.footer-section .social-link-list:hover{
  color: var(--orange);
}

.footer-section .policy-link:hover {
  color: var(--orange);
}

.footer-section .policy-text {
  font-size: 20px;
}

.footer-section .policy-text .separator {
  margin: 0 5px;
}

.footer-section .copyright-text {
  font-size: 20px;
}



@media screen and (max-width: 1024px) {

  .service .service-list {
    gap: 60px;
  }
  
  .service .service-list .service-item {
    width: calc(100% / 3 - 60px);
  }
}

.toast {
  visibility: hidden;
  min-width: 300px;
  max-width: 400px;
  background-color: orange;
  color: black;
  border-radius: 5px;
  padding: 12px 20px;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;

  /* Animation */
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

#toast-icon {
  font-size: 20px;
  flex-shrink: 0;
}

#toast-message {
  flex-grow: 1;
  font-weight: 600;
}

#toast-close {
  background: none;
  border: none;
  color: black;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
}

#toast-close:focus {
  outline: none;
}
/* ------------------ Slide-in Animation Effects ------------------ */

/* Initial hidden state */
.section-hidden {
  opacity: 0;
  transform: translateY(50px); /* default fallback: slide from bottom */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Slide in from left */
.slide-in-left {
  transform: translateX(-100px);
}

.slide-in-left.section-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide in from right */
.slide-in-right {
  transform: translateX(100px);
}

.slide-in-right.section-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide in from bottom */
.slide-in-bottom.section-visible {
  opacity: 1;
  transform: translateY(0);
}



@media screen and (max-width: 900px) {
  :root {
    --font-size-m: 1rem;
    --font-size-l: 1.3rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 1.8rem;
    --mid-gray: #2a2a2a;
  }

  .hero {
    flex-direction: column;
    padding: 20px 10px;
    gap: 20px;
    padding-top: 150px;
  }

  .hero-video {
    width: 100%;
    height: 30vh;
    order: 0;
  }

  .hero-text {
    width: 100%;
    order: 1;
    text-align: center;
  }

  .hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }

  .navbar :where(#menuopenbutton, #menuclosebutton) {
    display: block;
    font-size: var(--font-size-l);
  }

  .navbar #menuclosebutton {
    position: absolute;
    right: 30px;
    top: 30px;
  }

  .navbar #menuopenbutton {
    color: var(--white);
  }

  /* ✅ SOLID BACKGROUND MOBILE MENU */
  .navbar .nav-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: #1c1c1c !important; /* solid dark gray */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    z-index: 1001;
    transition: left 0.3s ease;
  }

  body.show-mobile-menu .navbar .nav-menu {
    left: 0;
  }

  .navbar .nav-menu .nav-link {
    color: var(--white);
    font-size: var(--font-size-l);
    display: block;
    margin-top: 17px;
  }

  .about-section .section-content {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    gap: 40px;
  }

  .about-section .about-image-wrapper .about-image {
    width: 60vw;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: var(--border-radius-circle);
    object-fit: cover;
  }

  .about-section .about-details .section-title {
    padding: 10px 0 20px;
    font-size: var(--font-size-xl);
  }

  .about-section .about-details .text {
    font-size: var(--font-size-l);
    line-height: 1.6;
    padding: 0 10px;
  }

  .about-section .about-details .social-link-list {
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }

  .about-section .about-details .social-link {
    font-size: var(--font-size-xl);
  }

  .service .service-list {
    flex-direction: column;
    align-items: center;
  }

  .service .service-list .service-item {
    width: 90%;
  }

  .footer-section .section-content {
    flex-direction: column;
    gap: 20px;
  }
  
}


  .hero .hero-text {
    gap: 50px;
    text-align: center;
    padding: 30px 20px 20px;
    flex-direction: column-reverse;
    justify-content: center;
  }

