/* === GLOBAL RESET === */
body {
    margin: 0;
    padding: 0;
  }
  
  /* === LAYOUT CONTAINER === */
  .main {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  
  /* === FIXED NAVIGATION === */
  nav {
    font-family: sans-serif;
    letter-spacing: 0.6em;
    width: 25%;
    min-width: 200px;
    padding: 1rem 0;
  }
  
  /* === LOGO STYLING === */
  nav svg,
  .logo {
    width: 10rem;
    height: 16rem;
    display: block;
    margin-left: 2rem;
  }

  
  nav svg {
    margin-left: 0.8rem;
  }
  
  /* === NAV LINKS === */
  nav a {
    display: block;
    width: fit-content;
    color: black;
    text-decoration: none;
    position: relative;
    display: inline-block;
    white-space: nowrap;
  }
  
  nav a:hover {
    color: #fa1413;
  }
  
  .navLinks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-size: 2rem;
    margin-left: 2rem;
    margin-top: -1rem;
    width: 100%;
  }
  
  /* === PAGE CONTENT CONTAINER === */
  .container {
    width: 90%;
    max-width: 900px;
    margin: 5rem auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border: 5px solid black;
    background-color: white;
    padding: 2rem;
  }
  
  /* === VIDEO CONTAINER === */
  .VideoContainer {
    position: relative;
    top: 0;
    left: -1.5%;
    width: 90%;
    height: 100vh;
    overflow: hidden;
    margin-left: 1rem;
    border-radius: 10px;
  }
  
  .VideoContainer video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(0.85);
    border-radius: 12px;
  }
  
  /* === SVG INTERACTION === */
  nav svg:hover .cls-2 {
    fill: #fa1413;
  }
  
  /* === OPTIONAL OVERRIDES FOR INLINE SVG === */
  nav svg.logo a::before,
  nav svg.logo a::after,
  nav a.logo::before,
  nav a.logo::after {
    display: none;
    opacity: 0;
    content: none;
  }
  
  /* === SVG FILL CLASSES === */
  .cls-1, .cls-3, .cls-4, .cls-5 {
    fill: #fefdfd;
  }
  
  .cls-2 {
    fill: #030303;
  }
  
  .cls-6 {
    fill: #fa1413;
  }
  
  /* === SLIDESHOW === */
  .slideshow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
  }
  
  .slideshow img {
    transition: all 0.3s ease;
  }
  
  .img1, .img3 {
    width: 200px;
    opacity: 0.6;
    transform: scale(0.8);
  }
  
  .img2 {
    width: 300px;
    opacity: 1;
    transform: scale(1);
  }
  
  #leftBtn,
  #rightBtn {
    cursor: pointer;
    width: 50px;
    height: 50px;
  }

  /* === RESPONSIVE BREAKPOINTS === */

  @media (max-width: 1400px) and (min-width: 1216px) {
    .VideoContainer {
      width: 85%;
    }
    .VideoContainer video {
      transform: scale(0.8);
    }
    nav {
      width: 25%;
    }
    .navLinks {
      font-size: 2rem;
      gap: 1.5rem;
      margin-top: 38%;
    }
    .logo {
      width: 8rem;
      height: 9rem;
      margin-left: 1.5rem;
    }
    a::before {
      left: -2.5rem;
      width: 2.5rem;
      height: 2.5rem;
    }
  }



  @media (max-width: 1215px) and (min-width: 1001px) {
    .VideoContainer {
      top: 6%;
      left: 6%;
      width: 85%;
    }
  
    .VideoContainer video {
      transform: scale(0.82);
    }
  
    .logo {
      margin-left: 1rem;
      width: 9rem;
      height: 9rem;
    }
  
    .navLinks {
      margin-top: 36%;
      font-size: 1.6rem;
    }
  
    .container {
      margin-left: calc(60px + 1rem);
      width: 85%;
    }
  }



  @media (max-width: 1000px) and (min-width: 700px) {
    .VideoContainer {
      top: 5%; /* adjusted for better centering */
      left: 7%;
    }
    .VideoContainer video {
      transform: scale(0.75);
    }
    .container {
      width: 70%;
      margin-left: 26%;
    }
    .navLinks {
      font-size: 1.5rem;
      gap: 1.5rem;
    }
  }

  @media (max-width: 899px) {
    .main {
      flex-direction: column;
    }
    nav {
      width: 100%;
      /* padding: 0.5rem; */
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .navLinks {
      flex-direction: column;
      align-items: center;
      font-size: 1.2rem;
      gap: 1rem;
      margin: 0;
      padding: 1rem;
    }
    nav svg {
      width: 10rem;
      height: 5rem;
      transform: scale(1.2);
    }
    .logo {
      width: 10rem;
      height: 5rem;
      margin-left: 17%;
      margin-top: 1rem;
    }
    .container {
      width: 90%;
      margin: 2rem auto;
      max-width: none;
      padding: 1.5rem;
    }
    .VideoContainer {
      width: 80%;
      height: 50vh;
      left: 10%;
    }
    .VideoContainer video {
      width: 100%;
      height: auto;
      transform: none;
      border-radius: 0;
    }
  }
