@charset "UTF-10";
/* CSS Document */
html, body {
  height: auto !important;
  overflow-x: hidden;
}
/* Prevent horizontal scrolling */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 
}

body {
	font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #000000;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 22, 42, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  z-index: 1000;
backdrop-filter: blur(8px);
}

/* Image Logo Styling */
.logo img {
  height: 30px;           /* Adjust logo size */
  width: auto;
  display: block;
  object-fit: contain;
}

/* Menu */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: red;
}

/* Hamburger (Tablet/Phone) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
}

.hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}


/* Intro Section */
.intro-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: white;
}

/* Content wrapper */
.intro-content {
  max-width: 1000px;
  margin: 0 auto;
}

/* Title above video */
.intro-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Video box */
.video-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  background: #000;
}

/* Video fills container */
.video-container video {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}

.intro-description {
  margin-top: 40px;           /* spacing below the video */
  font-size: .90rem;
  line-height: 1.6;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Intro Section */
.introstore {
  background-image: url("Pictures/storeintro.png"); /* Replace with your background image */
  background-size: cover; /* Show entire image */
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000; /* Fills space around image */
  height: 100vh; /* Full screen height */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
/* Optional dark overlay for better text contrast */
.intro::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

/* Text on image */
.intro .overlay {
  position: relative;
  z-index: 30;
}

.intro h1 {
  font-size: 5rem;
  color: white;
  letter-spacing: 4px;
  font-weight: bold;
	text-align: center;
}

.intro h2 {
  font-size: 1rem;
  color: white;
  letter-spacing: 1px;
  font-weight: lighter;
	text-align: center;
	padding: 0px 100px;
	align-content: center;
}

/* Body Section */
.body-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh; /* full height section */
  background: #99999; /* or any color/image */
  color: black;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 1.8rem;
  padding: 20px;
}

.body-section h2 {
  font-size: 1rem;
  color: black;
  letter-spacing: 1px;
  font-weight: lighter;
	text-align: center;
	padding: 0px 100px;
	align-content: center;
}
/* Biography Section */
.bio-section {
  padding: 80px 20px;
  background:linear-gradient(135deg, #0072ff, #00c6ff);
  color: #333;
}

.bio-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap; /* Makes it stack on smaller screens */
}

.bio-text {
  flex: 1 1 500px;
}

.bio-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #FBFBFb;
}

.bio-text p {
  font-size: 1.0rem;
  line-height: 1.6;
  margin-bottom: 0px;
	color: #FBFBFb;
}
/* Image area */
.bio-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bio-image img {
  width: 100%;
  max-width: 350px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  object-fit: cover;
  display: block;
}

/* youtube */
.video-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  background: #000;
}

/* Make iframe fill the container */
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.projects-title h2 {
  color: black;
  font-size: 2.5rem;
  letter-spacing: 3px;
}

/* Video Overlay */
.project-item {
 height: 100%; /* Full screen height */

}

.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
 max-width: 1000px;
  transition: transform 0.3s ease;
}

/* The video */
.project-video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* keeps it the same size, cropped nicely */
  display: block;
  border-radius: 0px;
}
/* Past Projects Section */
.projects-title {
  background: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}
/* Overlay description */
.project-description {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  opacity: 0;
  padding: 20px;
  transition: opacity 0.4s ease;
}

.project-item:hover .project-description {
  opacity: 1;
}


/* Each image card */
.project-card {
  position: relative;
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

/* Project Image + Button */

.project-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 20px 80PX;
  gap: 40px;
}
.project-gallery1 {
  background-position: center;
  background-color: #000; /* Fills space around image */
  height: 7px; /* Full screen height */
  display: flex;

}
.project-gallery2 {
  display: flex;
background-position: center;
  background-color: #000; /* Fills space around image */
  height: 606px; /* Full screen height */
}
/* Each image card */
/* Image styling */
.project-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Overlay text */
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding: 20px;
}

.project-overlay h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.project-overlay p {
  font-size: 1.2rem;
  max-width: 600px;
}

/* Hover animation */
.project-card:hover img {
  transform: scale(1.05);
}

.project-card:hover .project-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
}
	footer {
  position: inherit;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.footer-left {
  position: absolute;
  left: 20px;
}

.social-icon i {
  font-size: 22px;
  color: white;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover i {
  color: red; /* turn red on hover */
  transform: scale(1.1);
}
.contact-section {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.contact-section h2 {
  font-size: 2.5em;
  letter-spacing: 2px;
  color: black;
  margin-bottom: 15px;
}

.contact-section p {
  max-width: 600px;
  margin-bottom: 30px;
  color: #333;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-form label {
  font-weight: bold;
  text-align: left;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  font-family: inherit;
}

.contact-form button {
  background: black;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: red;
}
/* Mobile Style */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  .hamburger {
    display: flex;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: all 0.3s ease;
  }

  /* Menu hidden by default */
  .nav-menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    width: 100%;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  /* Menu visible when active */
  .nav-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu ul {
    flex-direction: column;
    padding: 20px 0;
  }

  .nav-menu a {
    display: block;
    padding: 15px 0;
    font-size: 1.2em;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }

  .nav-menu a:hover {
    color: #f4b400; /* optional hover color */
  }

  /* Hamburger → X animation */
  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}