* { margin:0; padding:0; box-sizing:border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.logo {
  font-family: 'Sukajan Brush', cursive;
  font-size: 34px;
  letter-spacing: 3px;
  color: gray;
  transition: 1s ease;
}

.navbar {
  position:fixed;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 30px;
  background:rgba(0,0,0,0.7);
  backdrop-filter:blur(8px);
  z-index:1000;
}

.nav-links li:last-child a {
  border: 2px solid white;
  padding: 8px 18px;
  transition: 0.3s ease;
}

.nav-links li:last-child a:hover {
  background: white;
  color: black;
}

.logo { font-weight:bold; font-size:20px; }

.menu-toggle {
  background:none;
  border:none;
  color:white;
  font-size:24px;
  display:none;
  cursor:pointer;
}

.nav-links {
  list-style:none;
  display:flex;
  gap:20px;
}

.nav-links a {
  text-decoration:none;
  color:white;
}

/* HOME SECTION */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* VIDEO WRAPPER */
.video-background {
  position: absolute;
  pointer-events: none;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* TRUE FULLSCREEN 16:9 COVER */
.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Maintain 16:9 without shrinking */
@media (min-aspect-ratio: 16/9) {
  .video-background iframe {
    height: 56.25vw;
  }
}

@media (max-aspect-ratio: 16/9) {
  .video-background iframe {
    width: 177.78vh;
  }
}

/* CONTENT ABOVE VIDEO */
.hero-content {
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 6px black;
}

section {
  padding: 140px 5%;
  position: relative;
  z-index: 1;
}

.hero {
  display:flex;
  justify-content:center;
  align-items:center;
  text-shadow:2px 2px 5px black;
}

.light {
  background:#f4f4f4;
  color:#000;
}

@media (max-width:768px) {
  .menu-toggle { display:block; }
  .nav-links {
    position:absolute;
    top:70px;
    right:20px;
    flex-direction:column;
    background:rgba(0,0,0,0.9);
    padding:20px;
    border-radius:8px;
    display:none;
  }
  .nav-links.show { display:flex; }
}

/* ===== CINEMATIC SPLIT ABOUT ===== */

.about-section {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  padding: 180px 5%;
  overflow: hidden;
}

/* HUGE BACKGROUND WATERMARK */
.about-bg-text {
  z-index: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 300px;
  letter-spacing: 20px;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
}

.about-section {
  isolation: isolate;
}
/* MAIN GRID */
.about-wrapper {
  z-index: 1;
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 120px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

/* LEFT SIDE — ROTATED TITLE */
.about-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 140px;
  line-height: 0.9;
  letter-spacing: 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* RIGHT SIDE TEXT */
.about-right {
  font-family: 'Inter', sans-serif;
  max-width: 600px;
}

.about-intro {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 50px;
  text-transform: uppercase;
  opacity: 0.8;
}

.about-right p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 35px;
  font-weight: 300;
}

/* FADE IN ANIMATION */
.about-wrapper {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 1000px) {

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-left h2 {
    transform: none;
    font-size: 90px;
    text-align: center;
  }

  .about-right {
    text-align: center;
    max-width: 100%;
  }

  .about-bg-text {
    font-size: 120px;
  }
}

/* CONTACT SECTION — LUXURY VERSION */

.contact-section {
  background: #ffffff;
  color: #000;
  padding: 160px 20px;
  text-align: center;
}

.contact-title {
  font-size: 64px;
  letter-spacing: 8px;
  margin-bottom: 80px;
}

/* FORM WRAPPER */
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* INPUT FIELDS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 4px solid #000;
  padding: 25px;
  font-size: 20px;
  color: #000;
  outline: none;
  transition: all 0.3s ease;
}

/* Placeholder */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0,0,0,0.4);
  letter-spacing: 2px;
}

/* Focus Animation */
.contact-form input:focus,
.contact-form textarea:focus {
  background: #000;
  color: #fff;
  transform: scale(1.02);
}

/* BUTTON */
.contact-form button {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 25px;
  font-size: 20px;
  border: 4px solid #000;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 4px;
}

/* Button Hover */
.contact-form button:hover {
  background: #fff;
  color: #000;
}















