@charset "UTF-8";
/* 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: 8px 80px;
  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;
}

.documentary-section {
  padding: 110px 7%;
  background: #dfe9ed;
  color: #263947;
}

.documentary-header {
  max-width: 1100px;
  margin: 0 auto 42px;
  text-align: center;
}

.documentary-label {
  margin-bottom: 18px;
  color: #668b9b;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.documentary-header h2 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -5px;
  text-transform: uppercase;
}

.documentary-header h2 span {
  color: #668b9b;
}

.documentary-line {
  width: 70px;
  height: 4px;
  margin: 28px auto 0;
  background: #668b9b;
}

.documentary-video {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(38, 57, 71, 0.2);
  border-radius: 20px;
  background: #263947;
  box-shadow: 0 25px 55px rgba(38, 57, 71, 0.2);
}

.documentary-video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.documentary-description {
  max-width: 850px;
  margin: 42px auto 0;
}

.documentary-description h3 {
  margin-bottom: 18px;
  color: #263947;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -1px;
}

.documentary-description p {
  color: #5d7079;
  font-size: 1rem;
  line-height: 1.8;
}

.documentary-award {
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  margin-top: 28px;
  padding: 14px 20px;
  border-left: 4px solid #668b9b;
  background: rgba(255, 255, 255, 0.45);
}

.documentary-award strong {
  color: #496f80;
  font-size: 1.6rem;
}

.documentary-award span {
  color: #5d7079;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .documentary-section {
    padding: 75px 6%;
  }

  .documentary-header h2 {
    letter-spacing: -2px;
  }

  .documentary-award {
    align-items: flex-start;
  }
}

/* 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;
}

.reel-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.reel-video,
.reel-description {
  flex: 1;
}

.reel-video video {
  width: 100%;
  max-width: 500px;
  display: block;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.eyebrow {
  color: #777;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.reel-description h2 {
  margin: 12px 0 20px;
  font-size: 42px;
  line-height: 1.1;
}

.reel-description p {
  color: #555;
  font-size: 18px;
  line-height: 1.6;
}

.reel-button {
  display: inline-block;
  margin-top: 20px;
  padding: 13px 24px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.reel-button:hover {
  background: #444;
}

@media (max-width: 768px) {
  .reel-section {
    flex-direction: column;
    gap: 35px;
    margin: 40px auto;
  }

  .reel-video video {
    max-width: 100%;
  }

  .reel-description h2 {
    font-size: 32px;
  }
}
/* 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 */
.projects-section {
  padding: 120px 7%;
  background: #e8eef1;
  color: #263947;
}

.projects-title {
  max-width: 700px;
  margin: 0 auto 75px;
  text-align: center;
}

.projects-title p {
  margin-bottom: 15px;
  color: #668b9b;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.projects-title h2 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -5px;
  text-transform: uppercase;
}

.projects-title span {
  display: block;
  margin-top: 22px;
  color: #687980;
  font-size: 1rem;
}

.project-list {
  max-width: 1200px;
  margin: 0 auto;
}

.project-item {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
  padding: 55px 0;
  border-top: 1px solid rgba(38, 57, 71, 0.2);
}

.project-item:nth-child(even) {
  grid-template-columns: 0.85fr 1.15fr;
}

.project-item:nth-child(even) .project-media {
  order: 2;
}

.project-media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  background: #263947;
  box-shadow: 0 18px 40px rgba(38, 57, 71, 0.18);
}

.project-media img,
.project-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-media img {
  transition: transform 0.5s ease;
}

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

.project-details {
  max-width: 420px;
}

.project-category {
  margin-bottom: 16px;
  color: #668b9b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.project-details h3 {
  margin: 0 0 18px;
  color: #263947;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -1.5px;
}

.project-details > p:not(.project-category) {
  margin-bottom: 25px;
  color: #687980;
  font-size: 1rem;
  line-height: 1.7;
}

.project-details a {
  color: #496f80;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.project-details a span {
  margin-left: 6px;
  font-size: 1.1rem;
}

.project-details a:hover {
  color: #263947;
}

@media (max-width: 800px) {
  .projects-section {
    padding: 80px 6%;
  }

  .projects-title {
    margin-bottom: 45px;
  }

  .projects-title h2 {
    letter-spacing: -2px;
  }

  .project-item,
  .project-item:nth-child(even) {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    padding: 40px 0;
  }

  .project-item:nth-child(even) .project-media {
    order: initial;
  }

  .project-details {
    max-width: 100%;
  }

  .project-details h3 {
    font-size: 2rem;
  }
}
	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);
  }
}