@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

:root {
  --overlay-color: #03a9f4;
}
html {
  scroll-behavior: smooth;
}
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  
}

#main-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: top 0.4s, background-color 0.4s, padding 0.4s;
  z-index: 1000;
  background-color: transparent;
}

#main-header.scrolled-up {
  background-color: #000;
  padding: 10px 50px;
}

.showcase {
  position: relative;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  color: #fff;
  z-index: 2;
  transition: 0.3s;
}

.showcase.active {
  right: 300px;

}
.showcase video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.showcase header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}




/* Logo + desktop nav */
.header-left {
  
  display: flex;
  align-items: center;
}

.header-left .logo img {
  filter: invert(1);
  height: 75px;
  margin-right: 15px;
}

/* Desktop navigation */
.nav-buttons a {
  margin-left: 15px;
  text-decoration: none;
  font-family: 'Momo Trust Display', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.3s, transform 0.2s;
}

.nav-buttons a:hover {
  color: #d28e5e; /* highlight on hover */
  transform: scale(1.2);
}

/* Hamburger icon for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 70px;
  right: 50px;
  background: rgba(0,0,0,0.9);
  border-radius: 10px;
  padding: 20px;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

.mobile-menu a:hover {
  color: #d28e5e;
}


/* Show hamburger menu on small screens */
@media (max-width: 800px) {
  .nav-buttons {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}



.showcase .text {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: #ffffff;
}

/* Brand name */
.showcase .text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 12px;
}

/* Product name */
.showcase .text h3 {
  font-size: clamp(1.3rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

/* Tagline */
.showcase .text p {
  margin-top: 18px;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}


.text {
  font-size: 2.0em;
  font-weight: 600;
  position: absolute;
  bottom: 250px; 
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  width: 100%;
}


.text a {
  display: inline-block;
  font-size: 1.2em;
  background: transparent;
  padding: 20px 36px;
  text-decoration: none;
  color: #fcfcfc;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.3s;
  border-radius: 5px;
}

.text a:hover {
  letter-spacing: 4px;
  
}
.text p{
  font-size: 1.1em;
  margin: 20px 0;
  font-weight: 400;
}
.social img {
  width: 40px;  
  height: 40px;
  transition: transform 0.3s ease; 
  cursor: pointer;
}

.social img:hover {
  transform: scale(1.1); 
}

.social {
  position: fixed;
  bottom: 10%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;

}
.social li {
  list-style: none;

}
.social li a {
  display: inline-block;
  filter: invert(1);
  transform: scale(0.5);
  transition: 0.5s;
  
}
.social li a:hover {
  transform: scale(0.5) translateY(-15px);
}
.menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu ul {
  position: relative;
  list-style: none;
}

.menu ul li a {
  text-decoration: none;
  font-size: 24px;
  color: #111;
}
.menu ul li a:hover {
  color: var(--overlay-color);
}

.features {
  min-height: 100vh; 
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center; 
  padding: 80px 20px;
  background-color: #111;
  color: white;
  box-sizing: border-box;
}

.features-list li {
  background: #1b1b1b;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  list-style:none;
}

.features-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 10px rgba(154,205,50,0.5);
}

.features-list h3 {
  color: #9acd32;
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.features-list p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.features-list ul {
  list-style: disc inside;
  margin: 10px 0 10px 20px;
}

.features-list ul li {
  color: #ccc;
  margin-bottom: 5px;
}

.features h2 {
  font-size: 2.5rem;       
  margin-bottom: 30px;      
  margin-top: 20px;         
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  text-align: center;
}

.feature {
  background: #1b1b1b;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature h3 {
  margin-bottom: 10px;
  color: #9acd32;
  font-size: 1.3rem;
}

.feature p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}
.feature-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 15px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-image:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(172, 243, 29, 0.692);
}

.lightbox {
  display: flex;
  opacity:0;
  visibility: hidden;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
  transform: scale(0.8);
  transition: transform 0.4s ease;
}
.lightbox.active .lightbox-content{
  transform: scale(1);
}


.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  font-weight: bold;
}

.close:hover {
  color: #9acd32; 
}

.contact-container{
  
  background:#111;
  height:80vh;
  display: flex;
  align-items:center;
  justify-content: space-evenly;
  
}
.contact-left{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap:20px;
}
.contact-left-title h2{
  font-weight: 600;
  color:rgba(172, 243, 29, 0.692);
  font-size: 40px;
  margin-bottom:5px;
}

.contact-left label {
  display: block; 
  margin-bottom: 5px;
  font-weight: 500;
  color: white;
}

.required {
  color: red;
  margin-left: 2px;
  font-weight: bold;
}

.contact-left p {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.contact-left-title hr{
  border: none;
  width: 120px;
  height: 5px;
  background-color: rgba(172, 243, 29, 0.692);
  border-radius: 10px;
  margin-bottom:20px
}

.contact-inputs{
  
  width: 400px;
  height: 50px;
  border: none;
  outline:none;
  padding-left: 25px;
  font-weight: 500;
  color:#666;
  border-radius: 50px;
}
.contact-left textarea{
  height: 140px;
  padding-top: 15px;
  border-radius: 20px;

}
.contact-inputs:focus{
  border: 2px solid #ff994f;
}
.contact-inputs::placeholder{
  color:#a9a9a9;
}
.contact-left button{
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  color: #fff;
  gap:10px;
  border:none;
  border-radius: 50px ;
  background: linear-gradient(270deg, #ff994f, #fa6d86);
  cursor: pointer;
}
.contact-left button img{
  height:15px;
}

.contact-right img{
  width:500px;

}


.interior, .exterior {
  min-height: 100vh;
  background: black;
  display: flex;
  flex-direction: column;   
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

@media (max-width:800px){
  .contact-inputs{
    width:80vw;
  }
  .contact-right{
    display: none;
  }
}
@media(max-width: 991px) {
  .showcase, .showcase header {
    padding: 40px;
  }

  
}

.thumb-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 90%;
  margin: 20px auto 0;
}

.thumb-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; 
}

.thumb-track::-webkit-scrollbar {
  display: none;
}

.thumb-track img.thumb {
  width: 90px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.6;
  cursor: pointer;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: 0.3s;
}

.thumb-track img.thumb.active {
  opacity: 1;
  border-color: #9acd32;
  transform: scale(1.05);
}


.thumb-arrow {
  background: rgba(0,0,0,0.6);
  border: none;
  color: white;
  font-size: 26px;
  width: 40px;
  height: 60px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s;
}

.thumb-arrow:hover {
  background: rgba(154,205,50,0.7);
}

.carousel {
  width: 100%;
  max-width: 1100px; 
  background: #000;
}

.carousel-inner {
  width: 100%;
  height: 100vh;
  background: #000;
}

.carousel-item {
  width: 100%;
  height: 100vh;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.interior,
.exterior {
  padding: 0;
  margin: 0;
  background: #000;
}


.carousel,
.carousel-inner,
.carousel-item {
  width: 100vw;
  height: 100vh;
  max-width: none;
}


.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
@supports (-webkit-touch-callout: none) {
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 100svh;
  }
}
.carousel-title {
  position: absolute;
  top:-80px; 
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;

  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 6px;
  text-transform: uppercase;

  color: white;
  font-weight: 600;
  text-shadow: 0 6px 20px rgba(0,0,0,0.7);
  pointer-events: none; 
}

.interior,
.exterior {
  position: relative;
}


.section-divider {
  height: 200px; 
  background: linear-gradient(
    to bottom,
    #000 0%,
    #0a0a0a 40%,
    #000 100%
  );
}

.exterior {
  padding-bottom: 220px; 
}


.exterior::after {
  content: "";
  display: block;
  margin: 60px auto 0;
  width: 60%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(154, 205, 50, 0.6),
    transparent
  );
}
.mobile-menu.active {
  display: flex;
}