/* ============================
   GLOBAL STYLES
============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  html,
  body {
    width: 100%;
    height: 100%;
  }
  
  *::selection {
    background-color: #000;
    color: #fff;
  }
  .c-scrollbar {
    z-index: 3500;
    background: transparent !important;
  }
  
  .c-scrollbar_thumb {
    background: #000 !important;  
    border-radius: 10px; 
    opacity: 1 !important;   
  }
  body {
    background: #f7f7f7;
    transition: all 0.3s ease;
  }
  body.no-scroll {
    overflow: hidden;
    height: 100vh;
  }
  /* ============================ CURSOR ============================ */ 
  #cursor-main { 
    width: 150px;
    height: 150px;
    background-color: #f3e0a1;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%) scale(0);
    }
   #img-container #cursor 
   { 
    padding: 1.5vw 1vw;
    border-radius: 50%;
    color: #fff;
    background-color: #000;
    text-align: center;
    position: fixed;
    opacity: 0; 
    }
  /* ============================
     NAVBAR
  ============================ */
  #nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    height: 60px;
    width: 100%;
    padding: 60px 20px;
    background-color: #fff; 
    z-index: 3000;
  }

   #nav.scrolled {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  } 
  
   #nav #nav-part1{
    height: 82px;
    overflow: hidden;
    z-index: 4000;
  }
  #nav-part1 svg {
    display: block;
    z-index: 4000;
  } 

  #nav-part2 {
    display: flex;
    align-items: center;
    gap: 40px;
  } 
     #nav-part2 #links {
      display: flex;
      z-index: 4000;
    }
    #nav-part2 #links a {
      text-decoration: none;
      color: #000;
      font-size: 14px;
      text-transform: uppercase;
      margin-right: 30px;
      font-weight: 400;
      position: relative;
    }
    #nav-part2 #links a::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      height: 1px;
      width: 0;
      background-color: #000;
      transition: width 0.5s ease;
    }
    #nav-part2 #links a:hover::before {
      width: 100%;
    } 
    
    /* Icons */
    #nav-part2 #icons {
      padding: 6px 12px;
      border-radius: 15px;
      background-color: #f7f7f7;
      display: flex;
      align-items: center;
      gap: 20px;
    }

  #nav-part2 #links {
    display: flex;
    z-index: 4000;
    transition: transform 0.4s ease;
  }
  #nav-part2 #links a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    margin-right: 30px;
    font-weight: 400;
    position: relative;
  }
  #nav-part2 #links a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 1px;
    width: 0;
    background-color: #000;
    transition: width 0.5s ease;
  }
  #nav-part2 #links a:hover::before {
    width: 100%;
  } 
   #nav-part2 #icons {
    padding: 6px 12px;
    border-radius: 15px;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  #nav-part2 #icons i {
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  #nav-part2 #icons i:hover {
    transform: scale(1.1);
  }
  #nav-part2 #icons i.ri-menu-line {
    position: relative;
    z-index: 5000;
    color: #000;
    transition: transform 0.4s ease;
    display: none;
  }
  #nav-part2 #icons i.ri-menu-line.active {
    color: #fff;
  }
 
  #nav-part2 #links {
    transition: transform 0.4s ease;
  }

  /* ============================
     OVERLAY (when menu opens)
  ============================ */
  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99;
    display: none;
    transition: opacity 0.3s ease;
  }
  #overlay.active {
    display: block;
    opacity: 1;
  }
  
  /* ============================
     PAGE 1
  ============================ */
  .line {
    width: 95%;
    margin: 3vw auto;
    border: 1px solid #000;
  }
  
  #page1 {
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding-top: 15vw;
    padding: auto 1.4vw;
  }
  
  #page1 > h1 {
    font-size: 15.7vw;
    text-transform: uppercase;
    line-height: 12vw;
    letter-spacing: -8px;
  }
  
  #page1 #img-container {
    height: 100vh;
    width: 100%;
    padding: 1vw;
    position: relative;
  }
  
  #img-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
  #page1 #info {
    width: 100%;
    padding: 4.5vw 1vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  #info h1 {
    font-size: 2.5vw;
  }
  
  .btn {
    text-decoration: none;
    color: #000;
    font-size: 0.8vw;
    padding-top: 1vw;
    border-bottom: 1px solid #000;
    text-transform: uppercase;
  }
  
  /* ============================
     PAGE 2
  ============================ */
  #page2 {
    padding: 3vw 1vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    width: 100%;
  }
  
  #page2 .elem {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    width: 30%;
    padding: 1vw;
  }
  
  #page2 .elem img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    scale: 1.1;
  }
  
  #page2 .elem .dets {
    width: 60%;
    height: 50px;
    position: absolute;
    background-color: #DCC0B4;
    border-radius: 50px;
    overflow: hidden;
  }
  
  .dets {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5vw;
  }
  
  .dets h3 {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
  }
  
  .dets i {
    font-weight: 600;
    font-size: 14px;
  }
  
  /* ============================
     PAGE 3
  ============================ */
  #page3 {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 2vw 1vw;
  }
  
  #child1,
  #child2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 55vh;
    width: 35vw;
  }
  
  #child2 p {
    margin-bottom: 2vw;
  }
  
  #child3,
  #child4,
  #child5,
  #child6 {
    cursor: pointer;
  }
  
  .child {
    height: 80vh;
    width: 40vw;
    margin-bottom: 6vw;
    object-fit: cover;
  }
  
  .child h1 {
    font-size: 3vw;
    text-transform: uppercase;
  }
  
  .child img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    margin-bottom: 3vw;
  }
  
  .item-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .item-info h3,
  p {
    font-weight: 400;
    font-size: 15px;
  }
  
  /* ============================
     FOOTER
  ============================ */
  #footer {
    position: relative;
    min-height: 70vh;
    width: 100%;
    padding: 3vw 1vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .col h2 {
    font-size: 18px;
    text-transform: uppercase;
  }
  
  .col ul li {
    list-style: none;
    text-align: left;
  }
  
  .col ol li {
    list-style: none;
    text-align: right;
    cursor: pointer;
  }
  
  .col .links li a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
  }
  
  .col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .remarks {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .remarks p {
    padding: 5px;
    font-size: 12px;
    color: #333;
    text-transform: uppercase;
  }
  
  /* ============================
     RESPONSIVE MEDIA QUERIES
  ============================ */
  
  /* Tablets and small laptops */
  @media (max-width: 1024px) {
    #img-container #cursor {
        display: none; 
    }
    #nav-part2 #icons i.ri-menu-line {
      display: block;
      font-size: 26px;
      cursor: pointer;
    }

    #nav-part2 #links {
      position: fixed;
      top: 0;
      right: -50%;
      height: 100vh;
      width: 50%;
      background: #000;
      flex-direction: column;
      align-items: flex-start;
      padding: 100px 30px;
      gap: 25px;
      transition: right 0.4s ease;
      z-index: 2500;

    }
    #nav-part2 #links a {
      color: #fff;
      font-size: 18px;
    }
 
    #nav-part2 #links.active {
      right: 0;
    }
    #overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      display: none;
      z-index: 2000; 
    }
    #overlay.active {
      display: block;
    }
    #page1 {
      min-height: 90vh;
    }
    #page1 #img-container {
      height: 60vh;
    }
    #page1 > h1 {
      font-size: 11vw;
      line-height: 10vw;
      letter-spacing: -5px;
    }
    #info h1 {
      font-size: 4vw;
    }
    .btn {
      font-size: 2vw;
    }
    #page2 {
      flex-direction: column;
      gap: 4vw;
    }
    #page2 .elem {
      height: 80%;
      width: 80%;
      padding: 2vw;
    }
    #page3 {
      flex-direction: column;
      padding: 4vw 2vw;
    }
    .child {
      height: auto;
      width: 80%;
    }
    #child1,
    #child2 {
      width: 90vw;
      height: auto;
    }
    #footer {
      flex-direction: column;
      gap: 2vw;
    }
    .remarks {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }
  }
  @media (max-width: 768px) {
    #nav{
      padding: 40px 20px;
    }
    #nav #nav-part1 {
      height: 60px;
    } 
    #nav-part1 svg {
      height: 60px;
    }
    #nav-part2 #links {
      right: -100%;
      width: 50%;
    }
    #nav-part2 #links a {
      font-size: 16px;
    }
    #page1 > h1 {
      margin: 20px;
      font-size: 11vw;
      line-height: 9.5vw;
    }
    #info h1 {
      font-size: 5vw;
    }
    #info p {
      font-size: 12px;
    }
    .btn {
      font-size: 2.5vw;
    }
    #img-container{
      margin-top: 40px;
    }
    #img-container #cursor {
      display: none;
    }
    .dets {
      height: auto;
      padding: auto 5vw;
    }
    .dets h3 {
      font-size: 10px;
    }
    .dets i {
      font-size: 12px;
    }
    .child h1 {
      font-size: 5vw;
    }
    .item-info h3,
    p {
      font-size: 14px;
    }
    #footer .col {
      width: 100%;
      text-align: center;
    }
    .col ul li,
    .col ol li {
      text-align: center;
    }
    .col img {
      width: 50%;
      height: 50%;
    }
  }

  @media (max-width: 480px) {
    #nav-part2 #links {
      width: 100%;
      align-items: center;
      text-align: center;
    }
    #nav-part2 #links a {
      font-size: 22px;
    }
    #page1 {
      min-height: 50vh;
    }
    #page1 > h1:nth-child(1) {
      margin-top: 50px;
    }
    #page1 > h1 {
      font-size: 13vw;
      letter-spacing: -2px;
    }
    #page1 #img-container {
      height: 40vh;
    }
    .btn {
      font-size: 3vw;
    }
    .child h1 {
      font-size: 6vw;
    }
    .remarks p {
      font-size: 10px;
    }
  }
  