/* General Body Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: #f0f0f0;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 12px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 45px;
}

.logo span {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #e63946;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Main Video Container */
.container {
  display: flex;
  flex-direction: row;
  height: 100vh;
}

/* Individual Video Section */
.section {
  position: relative;
  flex: 1;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

/* Diagonal Split Effect */
.section:first-child {
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}
.section:last-child {
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -10vw;
}

.section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.section:hover video {
  opacity: 1;
}

/* Overlay Style */
.overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  padding: 18px 35px;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.overlay:hover {
  background: #e63946;
  border-color: #e63946;
  transform: scale(1.05);
}

/* Redesigned Content Sections */
.content-section {
  padding: 100px 40px;
  text-align: center;
}

#about { background: #121212; }
#works { background: #000000; }
#contact { background: #121212; }

.content-section h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #d17b1f;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.content-section p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #ccc;
}

/* About Us - Two Column Layout */
.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text, .about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Contact Us - Icon Layout */
.contact-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact-item .icon {
  font-size: 40px;
}

.contact-item a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #e63946;
}

/* Works Section Alignment Fix */
.works-links {
  width: 100%;
  display: flex;
  justify-content: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 300px; /* keeps icons nicely grouped */
  margin: 20px auto;
  text-align: center;
}

.icon-link img {
  width: 50px;
  height: 50px;
  filter: none 
  transition: transform 0.3s ease, filter 0.3s ease;
}

.icon-link:hover img {
  transform: scale(1.2);
  filter: brightness(0) invert(0.3) sepia(1) saturate(5) hue-rotate(350deg);
}


/* Responsive Styles for Mobile */
@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  
  .container {
    flex-direction: column;
    padding-top: 70px;
    height: 100vh;
  }

  .section:first-child, .section:last-child {
    clip-path: none;
    margin-left: 0;
  }

  .overlay {
    font-size: 18px;
    padding: 15px 25px;
    letter-spacing: 3px;
  }

  .content-section { padding: 60px 20px; }
  .content-section h2 { font-size: 30px; }
  .content-section p { font-size: 16px; }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-container {
    flex-direction: column;
    gap: 30px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 15px;
  }
  
  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }
}
