/* Reset and base styles */
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  font-style: normal;
  background-color: #232323;
  color: #fff;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}


h1 {
    color: #ffbc00;
    text-align: center;
    text-transform: uppercase;
}

.container {
  max-width: 1200px; /* limits width */
  margin: 0 auto;    /* centers it horizontally */
  padding: 0 20px;   /* optional padding for small screens */
}

/*   <<<<<<<<   NAVBAR  >>>>>>    */

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  display: block; /* ensure block context */
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

/* Inner flex row */
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Navbar when scrolled */
/* nav */
.scrolled {
  background-color: rgba(34, 34, 34, 0.9);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Logo */
.logo {
  height: 80px;
  width: auto;
  display: block;
  position: relative;
  z-index: 2000;
}


/* Mobile adjustments */
@media (max-width: 768px) {
  .logo {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 60px;
  }
}

/* Navigation links (default horizontal) */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffbc00;
}

/* Hamburger icon */
.hamburger {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  z-index: 1002; /* above drawer */
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease; /* 0.3s; */
}

.hamburger span + span { margin-top: 5px; }

/* Mobile / Tablet */
@media (max-width: 768px) {
  /* Hide big title on small screens */
  nav .site-title {
    display: none;
  }

    /* Show hamburger */
  .hamburger {
    display: block;
  }

  /* Drawer menu */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 260px;
    background-color: rgba(34, 34, 34, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 1rem;
    transform: translateX(100%);   /* hidden offscreen */
    transition: transform 0.3s ease-in-out;
    z-index: 1002;
  }

  .nav-links.active {
    transform: translateX(0);      /* slide in */
  }

  .nav-links li { width: 100%; text-align: center; }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
}

/* Hamburger animation to X */
.hamburger.active span:nth-child(1) {
  /* transform: rotate(45deg) translate(5px, 5px); */
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  /* transform: rotate(-45deg) translate(6px, -6px); */
  transform: translateY(-8px) rotate(-45deg);
}

/* Overlay for drawer menu */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* inset: 0; */
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 900;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* hero */
.hero-section {
  position: relative;
  height: 100vh; /* full screen */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* Slider container */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}

/* Each slide (full screen background) */
.hero-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* Show first slide initially */
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6); /* darkness */
  z-index: 2;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.hero-button {
  display: inline-block;
  padding: 12px 30px;
  background: #ffbc00;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 6px;
  transition: background 0.3s ease;
  margin: 0 10px;
}

.hero-button:hover {
  background: #e6a800;
}



/* about section  */
.about-section {
  padding: 100px 20px;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap; /* responsive: stacks on small screens */
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 15px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
}

 /* Testimonials  */
.testimonials-section {
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.testimonials-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.testimonial-wrapper {
  overflow: hidden;
  width: 100%;
}

/* Slider container */
.testimonial-slider {
  display: flex;
  /* gap: 40px; */
  transition: transform 0.5s ease;
}

/* Individual testimonial */
.testimonial-card {
  min-width: 100%;
  box-sizing: border-box; /* ?? */
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: center;
}

.testimonial-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}


.testimonial-card p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-card h4 {
  font-size: 1rem;
  color: #222;
  font-weight: bold;
}

/* Contact  */

.contact-section {
  background: #111;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.contact-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-section p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.contact-info {
  margin: 30px 0;
  font-size: 1rem;
}

.social-links {
  margin-top: 30px;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  padding: 10px 20px;
  background: #ff9900;
  color: #111;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: #ff6600;
}

#contact a {
  color: inherit;          /* inherit text color from parent */
  text-decoration: none;   /* remove underline */
}

#contact a:hover {
  text-decoration: none;   /* make sure underline doesn’t come back */
  color: #ffbc00;          /* optional: give a hover color */
}
