/* ------------------------------
   RESET & BASE STYLES
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: 'Bebas Neue', sans-serif;
  color: white;
  /* overflow: hidden; */
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* ------------------------------
   BACKGROUND VIDEO
------------------------------ */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}

/* ------------------------------
   SIDEBAR TOGGLE & NAVBAR
------------------------------ */
.sidebar-trigger {
  position: fixed;
  top: 0;
  left: 0;
  /* height: 100vh; */
  height: 20vh;
  width: 100px;
  z-index: 12;
}

.left-line {
  position: absolute;
  top: 0;
  left: 100px;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 11;
}

.hamburger {
  position: absolute;
  top: 42px;
  left: 35px;
  width: 30px;
  height: 11px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 12;
}

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

.hamburger .top {
  transform: translateX(4px);
}

.hamburger .bottom {
  transform: translateX(-4px);
}

.hamburger:not(.active):hover .top,
.hamburger:not(.active):hover .bottom {
  transform: translateX(0);
}

.hamburger.active .top {
  transform: rotate(45deg);
  position: absolute;
  top: 0;
}

.hamburger.active .bottom {
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
}

/* Sidebar Menu */
.sidebar {
  position: fixed;
  top: 0;
  left: -25%;
  width: 25%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.95);
  transition: left 0.4s ease;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.sidebar.active {
  left: 0;
}

.sidebar nav ul {
  list-style: none;
  padding: 0;
}

.sidebar nav ul li {
  margin: 25px 0;
}

.sidebar nav ul li a {
  font-family: 'Bebas Neue', sans-serif;
  color: white;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.3s ease;
}

.sidebar nav ul li a:hover {
  opacity: 0.7;
}

body.menu-open .left-line,
body.menu-open .nav-panel-pages {
  display: none;
}

/* ------------------------------
   VERTICAL NAVBAR (SHARED)
------------------------------ */
.nav-panel-pages {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100vh;
  background-color: black;
  z-index: 1;
}

.logo-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  z-index: 10;
}

.vertical-logo {
  width: 100%;
  height: auto;
  display: block;
}

/* ------------------------------
   PORTFOLIO SECTION
------------------------------ */
.portfolio-interactive {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.portfolio-left {
  width: 47%;
  background: #fff;
  padding: 4rem 2rem 4rem 12rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portfolio-right {
  width: 53%;
  background: #f0f0f0;
  position: relative;
  overflow: visible;
}

.portfolio-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.portfolio-links li {
  margin: 1rem 0;
  font-size: 2.8rem;
  line-height: 0.9;
  cursor: pointer;
  color: #282828;
}

.portfolio-links li span {
  display: inline-block;
  transform: scale(1);
  transform-origin: left center;
  color: #282828;
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.portfolio-links li span::after {
  content: "";
  position: absolute;
  top: 41%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: black;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  pointer-events: none;
}

.portfolio-links li.active span {
  transform: scale(1.8);
  color: #000;
}

.portfolio-links li.active span::after {
  transform: scaleX(1);
}

.portfolio-img-preview {
  position: absolute;
  top: 50%;
  right: -15%;
  transform: translateY(-50%);
  width: 125%;
  pointer-events: none;
  z-index: 1;
}

.portfolio-img-preview img {
  display: block;
  width: 100%;
  max-width: none;
  object-fit: cover;
  border-radius: 0;
  transition: opacity 0.25s ease-in-out, filter 0.25s ease-in-out;
  opacity: 1;
  filter: blur(0px);
  z-index: 1;
}

/* Play Icon */
.play-icon {
  position: absolute;
  top: 50%;
  left: 44%;
  transform: translate(-44%, -50%);
  font-size: 4.5rem;
  color: white;
  pointer-events: auto;
  z-index: 2;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.play-icon:hover {
  transform: translate(-44%, -50%) scale(0.9);
  filter: blur(2px);
}

/* Lightbox */
.video-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.video-frame-wrapper {
  position: relative;
  width: 80%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
}

.video-frame-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* ------------------------------
   CONTACT PAGE
------------------------------ */
.contact-page {
  display: flex;
  height: 100vh;
  /* padding-left: 120px; */
  font-family: 'Bebas Neue', sans-serif;
}

.contact-left-panel {
  width: 45%;
  padding: 4rem 6rem 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  color: #000;
}

.contact-label {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: #888;
  margin-bottom: 1rem;
}

.contact-heading {
  font-size: 4.0rem;
  line-height: 1.2;
  color: #000;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 2rem 0;
}

.icon-link {
  font-size: 1.4rem;
  color: #000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.icon-link:hover {
  transform: scale(1.2);
  opacity: 0.6;
}

.contact-right-panel {
  width: 55%;
  padding: 4rem 15rem 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
}

.contact-left-panel .social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 0rem;
}

/* Contact Form */
.contact-form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-family: 'Arial', sans-serif;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row.two-col {
  flex-direction: row;
  gap: 1.5rem;
}

.form-row.two-col input {
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  background: #fff;
  color: #000;
  font-family: 'Arial', sans-serif;
  outline: none;
  transition: border 0.2s ease;
}

input[type="date"] {
  appearance: none;
  background-color: #fff;
  color: #666;
  font-family: 'Arial', sans-serif;
  border: 1px solid #ccc;
  padding: 1rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
  margin-top: -1.2rem;
}

.contact-button {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-family: 'Arial', sans-serif;
  color: white;
  background-color: black;
  border: 2px solid black;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.contact-button:hover {
  background-color: white;
  color: black;
}

.contact-form label {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.4rem;
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}


/* ------------------------------
   ABOUT PAGE
------------------------------ */
.about-bio {
  display: flex;
  height: 100vh;
  width: 100%;
  font-family: 'Bebas Neue', sans-serif;
  padding-left: 6rem;

  overflow: hidden;
}

.bio-left {
  flex: 1;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;

  margin-left: -165px;
}

.bio-image-wrapper {
  position: relative;
  width: 400px;
  height: 600px;
}

.main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  object-fit: cover;
  border: 8px solid #f0f0f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.second-image {
  position: absolute;
  top: 50%;
  left: 107%;
  transform: translate(-50%, -50%);
  width: 375px;
  height: 750px;
  object-fit: cover;
  border: 8px solid #f0f0f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.bio-right {
  flex: 1;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem;
}

.bio-name {
  font-family: 'The Nautigal', cursive;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0 0 1rem 0;
  color: #000;
}

.bio-role {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #777;
  letter-spacing: 0.05em;
  margin: 0 0 2rem 0;
}

.bio-text {
  font-family: 'Arial', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

/* Responsive */
@media (max-width: 900px) {
  .about-bio {
    flex-direction: column;
    height: auto;
    padding: 0;
    margin: 0;
  }

  .bio-left {
    flex: none;
    width: 100%;
    padding: 2rem 2rem 1rem 2rem; /* less bottom padding */
    margin-left: 0;
  }

  .bio-image-wrapper {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
  }

  .main-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .second-image {
    display: none;
  }

  .bio-right {
    flex: none;
    width: 100%;
    background-color: #f0f0f0;
    padding: 1rem 2rem 2rem 2rem; /* less top padding */
    text-align: center;
  }

  .bio-name {
    font-size: 2.5rem;
  }

  .bio-role {
    font-size: 1.2rem;
  }

  .bio-text {
    margin-left: auto;
    margin-right: auto;
  }

  .nav-panel-pages {
    display: none;
  }
}

/* Semi-transparent sidebar only on index & weddings */
body.index-page .nav-panel-pages,
body.weddings-page .nav-panel-pages {
  background-color: rgba(0, 0, 0, 0.5);
}

.sidebar-trigger.dark .hamburger:not(.active) .line {
  background-color: #000;
}

/* ------------------------------
   RESPONSIVE MOBILE
------------------------------ */

@media only screen and (max-width: 767px) {

  .sidebar.active {
    width: 65%;
  }

  .hamburger {
    right: 35px;
  }

  /* ABOUT PAGE */

  .about-bio {
    padding: 0px;
  }

  .bio-right {
    margin-top: 37vh;
  }

  /* CONTACT PAGE */

  .contact-page {
    flex-direction: column;
  }

  .contact-left-panel,
  .contact-right-panel {
    padding: 2rem 2rem 2rem 2rem;
    width: 100%;
    text-align: left;
  }

  .contact-heading {
    font-size: 2.6rem;
  }

  .contact-left-panel .social-icons {
    justify-content: center;
  }

  .form-row {
    flex-direction: column !important;
  }

  /* PORTFILIO PAGE */

  .portfolio-interactive {
    flex-direction: column;
  }

  .portfolio-left {
    width: 100%;
    padding: 8rem 3rem 3rem 3rem;
  }

  .portfolio-links li {
    font-size: 1.2rem;
  }

  .portfolio-links li.active span {
    transform: scale(1.4);
  }

  .portfolio-right {
    width: 100%;
    padding: 2rem;
  }

  .portfolio-img-preview {
    position: relative;
    width: 100%;
    right: 0px;
  }

  /* --- PORTFOLIO PAGE (Mobile) --- */

.portfolio-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
}

.portfolio-item {
  display: flex;
  flex-direction: column;
}

.portfolio-item video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.portfolio-title {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: #222;
  padding-left: 0.25rem;
}
  
}

/* ------------------------------
   RESPONSIVE Tablets
------------------------------ */

@media only screen and (min-width: 767px) and (max-width: 1024px) {
  .about-bio {
    padding: 0px;
  }

  .bio-right {
    margin-top: 37vh;
  }

  .parallax-quote-heading {
    font-size: 4rem !important;
  }

  .second-image,
  .main-image {
    height: 450px;
    top: 65%;
    left: 120px;
  }

  .bio-right{
    background-color: transparent;
  }

  /* CONTACT PAGE */

  .contact-page {
    flex-direction: column;
  }

  .contact-left-panel,
  .contact-right-panel {
    padding: 6rem 3rem 3rem 3rem;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .contact-right-panel {
    text-align: left;
  }

  .contact-heading {
    font-size: 2.6rem;
  }

  .contact-left-panel .social-icons {
    justify-content: center;
  }

  .form-row {
    flex-direction: column !important;
  }

  /* PORTFILIO PAGE */

  .portfolio-interactive {
    flex-direction: column;
    overflow: scroll;
  }

  .portfolio-left {
    width: 100%;
    padding: 8rem 3rem 3rem 3rem;
  }

  .portfolio-links li {
    font-size: 1.2rem;
  }

  .portfolio-links li.active span {
    transform: scale(1.4);
  }

  .portfolio-right {
    width: 100%;
    padding: 2rem;
  }

  .portfolio-img-preview {
    position: relative;
    width: 100%;
    right: 0px;
  }

}