  nav{
    position:fixed;
    top:0;
    width:100%;
    padding:25px 10%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
    background:rgba(0,0,0,0.4);
    backdrop-filter:blur(10px);
  }

  .logo{
    font-size:28px;
    font-weight:800;
    color:white;
  }

  nav ul{
    display:flex;
    gap:30px;
    list-style:none;
  }

  nav ul li a{
    text-decoration:none;
    color:white;
    transition:0.3s;
    font-weight:500;
  }

  nav ul li a:hover{
    color:gold;
  }
  *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
  }

  body{
    font-family:'Poppins',sans-serif;
    background:black;
    color:white;
  }

  .hero{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
    overflow:hidden;

  }
  .hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
  }

  .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
    z-index:1;
  }

  .hero-content{
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 180px 20px 60px;
    text-align: center;
  }

  /* REPLACE YOUR CURRENT .hero-logo WITH THIS */


  /* OPTIONAL: KEEP THE TOP TEXT CLEAR */
  .small-text{
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
  }
  .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.7);
  }


  .small-text{
    color:gold;
    letter-spacing:6px;
    margin-bottom:20px;
  }

  h1{
    font-size:120px;
    font-weight:900;
  }

  h1 span{
    color:gold;
  }

  .genre{
    margin-top: -40px;
    margin-bottom: 25px;
  }

  .buttons{
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  .gold-btn,
  .outline-btn{
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    transition:0.4s;
    font-weight:600;
  }

  .gold-btn{
    background:gold;
    color:black;
  }

  .gold-btn:hover{
    transform:scale(1.05);
  }

  .outline-btn{
    border:1px solid gold;
    color:gold;
  }

  .outline-btn:hover{
    background:gold;
    color:black;
  }

  section{
    padding:100px 10%;
  }

  .about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
  }

  .about img{transition:0.5s;
  transform-style:preserve-3d;
    width:100%;
    border-radius:30px;
  }
  .about img:hover{

    transform:
    rotateY(10deg)
    rotateX(10deg)
    scale(1.03);

    box-shadow:
    0 30px 60px rgba(255,215,0,0.25);

  }
  .section-title{
    color:gold;
    letter-spacing:6px;
    margin-bottom:20px;
  }

  h2{
    font-size:60px;
    margin-bottom:20px;
  }

  .about p{
    color:#aaa;
    line-height:1.8;
  }

  .gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
    margin-top:50px;
  }

  .gallery-grid img{transition:0.5s;
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:25px;
  }
  .gallery-grid img:hover{
    transform:scale(1.03);
    box-shadow:0 0 30px rgba(255,215,0,0.4);
  }
  .center{
    text-align:center;
  }

  .center-buttons{
    justify-content:center;
  }

  @media(max-width:900px){

    h1{
      font-size:70px;
    }

    h2{
      font-size:40px;
    }

    .about{
      grid-template-columns:1fr;
    }

  }
  section{
    opacity:1;
    transform:translateY(0);
    transition:1s;
  }
  body{
    overflow-x:hidden;
  }

  /* PARTICLES */

  .particles{
    position:fixed;
    inset:0;
    overflow:hidden;
    z-index:-2;
  }

  .particles::before,
  .particles::after{
    content:'';
    position:absolute;
    width:200%;
    height:200%;
    background-image:
    radial-gradient(gold 1px, transparent 1px);

    background-size:50px 50px;

    opacity:0.08;

    animation:moveParticles 40s linear infinite;
  }

  .particles::after{
    animation-direction:reverse;
    opacity:0.04;
  }

  @keyframes moveParticles{

    from{
      transform:translate(0,0);
    }

    to{
      transform:translate(-200px,-200px);
    }

  }

  /* CURSOR GLOW */

  .cursor-glow{
    width:300px;
    height:300px;
    background:rgba(255,215,0,0.12);
    position:fixed;
    border-radius:50%;
    pointer-events:none;
    filter:blur(100px);
    transform:translate(-50%,-50%);
    z-index:-1;
  }

  /* LOADER */

  .loader{
    position:fixed;
    inset:0;
    background:black;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;

    animation:loaderFade 2.5s forwards;
  }

  .loader h1{
    color:gold;
    font-size:90px;
    letter-spacing:10px;

    animation:pulse 1s infinite;
  }

  @keyframes pulse{

    0%{
      opacity:0.5;
      transform:scale(0.95);
    }

    50%{
      opacity:1;
      transform:scale(1);
    }

    100%{
      opacity:0.5;
      transform:scale(0.95);
    }

  }

  @keyframes loaderFade{

    0%{
      opacity:1;
    }

    80%{
      opacity:1;
    }

    100%{
      opacity:0;
      visibility:hidden;
    }

  }

  /* PARALLAX */

  .hero{
    background-attachment:scroll;
  }
  /* HAMBURGER */

  .menu-toggle{
    display:none;
    font-size:32px;
    color:white;
    cursor:pointer;
  }

  @media(max-width:900px){

    .menu-toggle{
      display:block;
    }

    .nav-links{
      position:fixed;
      top:0;
      right:-100%;
      width:70%;
      height:100vh;

      background:rgba(0,0,0,0.95);

      flex-direction:column;
      justify-content:center;
      align-items:center;

      transition:0.5s;

      backdrop-filter:blur(20px);
    }

    .nav-links.active{
      right:0;
    }

  }
  section{
    position:relative;
  }

  section::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
    to bottom,
    transparent,
    rgba(255,215,0,0.03),
    transparent
    );

    pointer-events:none;
  }
  /* FOG */

  .hero::after{
    content:'';

    position:absolute;
    inset:0;

    background:url('https://i.imgur.com/8IuucQZ.png');

    opacity:0.08;

    animation:fogMove 25s linear infinite;

  }

  @keyframes fogMove{

    from{
      transform:translateX(0);
    }

    to{
      transform:translateX(-500px);
    }

  }
  h1,
  h2,
  .section-title,
  .genre{
    opacity:1 !important;
    transform:translateY(0) !important;
  }
  /* VISUALIZER */

  .visualizer{
    margin-top: -5px;
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .visualizer span{
    width:8px;
    height:20px;
    background:gold;
    border-radius:20px;

    animation:visualizer 1s infinite;
  }

  .visualizer span:nth-child(2){
    animation-delay:0.2s;
  }

  .visualizer span:nth-child(3){
    animation-delay:0.4s;
  }

  .visualizer span:nth-child(4){
    animation-delay:0.6s;
  }

  .visualizer span:nth-child(5){
    animation-delay:0.8s;
  }

  @keyframes visualizer{

    0%,100%{
      height:20px;
    }

    50%{
      height:70px;
    }

  }
  /* AI CHAT */

  .ai-chat{display:flex;
  align-items:center;
  gap:10px;

    position:fixed;
    bottom:30px;
    right:30px;

    background:gold;
    color:black;

    padding:18px 24px;

    border-radius:50px;

    font-weight:700;

    cursor:pointer;

    box-shadow:
    0 0 30px rgba(255,215,0,0.4);

  z-index:999999;

    animation:float 2s ease-in-out infinite;

  }

  @keyframes float{

    0%,100%{
      transform:translateY(0);
    }

    50%{
      transform:translateY(-10px);
    }

  }
  /* AMBIENT GLOW ORBS */

  body::before,
  body::after{

    content:'';

    position:fixed;

    width:500px;
    height:500px;

    border-radius:50%;

    filter:blur(120px);

    z-index:-3;

    opacity:0.12;

  }

  body::before{

    background:gold;

    top:-150px;
    left:-150px;

    animation:orb1 10s ease-in-out infinite alternate;

  }

  body::after{

    background:#ff8800;

    bottom:-150px;
    right:-150px;

    animation:orb2 12s ease-in-out infinite alternate;

  }

  @keyframes orb1{

    from{
      transform:translate(0,0);
    }

    to{
      transform:translate(100px,50px);
    }

  }

  @keyframes orb2{

    from{
      transform:translate(0,0);
    }

    to{
      transform:translate(-100px,-50px);
    }

  }
  .ai-chat{
    display:flex !important;
    visibility:visible !important;
    opacity:1 !important;
  }



  .booking-form{
    max-width: 800px;
    margin: 50px auto 0;
    display: grid;
    gap: 20px;
  }

  .booking-form input,
  .booking-form textarea{
    width: 100%;
    padding: 18px 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,215,0,0.25);
    border-radius: 16px;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: 0.3s ease;
  }

  .booking-form input:focus,
  .booking-form textarea:focus{
    border-color: gold;
    box-shadow: 0 0 20px rgba(255,215,0,0.2);
  }

  .booking-form input::placeholder,
  .booking-form textarea::placeholder{
    color: rgba(255,255,255,0.6);
  }

  .booking-form input[type="date"]{
    color: rgba(255,255,255,0.8);
  }

  .submit-btn{
    border: none;
    cursor: pointer;
    justify-self: center;
    min-width: 280px;
  }

  @media (max-width: 768px){
    .booking-form{
      padding: 0 20px;
    }

    .submit-btn{
      width: 100%;
      min-width: auto;
    }
  }
  @media (max-width: 768px){

    .hero{
      min-height: 100vh;
      padding-top: 100px;
    }

    .hero-content{
      padding-top: 280px !important;
      padding-right: 20px;
      padding-bottom: 60px;
      padding-left: 20px;
    }

    .hero-content img,
    .hero-logo{
      margin-top: 40px;
    }

  }
    /* Clean mobile hero layout */

  /* Final mobile logo fix */
  @media (max-width: 768px) {
    .hero-content {
      padding: 130px 20px 60px !important;
    }

    .hero-content img {
      display: block;
      width: 95%;
      max-width: 420px;
      min-width: 300px;
      height: auto;
      margin: 20px auto 30px auto !important;
    }

    .small-text {
      margin-bottom: 20px;
    }

    .genre {
      margin-top: 20px;
    }

    .buttons {
      margin-top: 25px;
    }

    .visualizer {
      margin-top: 25px;
    }

    .ai-chat {
      transform: scale(0.9);
      transform-origin: bottom right;
    }
  }
  /* Ultimate mobile logo fix */
  @media (max-width: 768px) {
    .hero-content {
      padding: 130px 20px 60px !important;
    }

    .hero-content img {
      display: block;
      width: 95%;
      max-width: 420px;
      min-width: 300px;
      height: auto !important;
      max-height: none !important;
      object-fit: contain !important;
      overflow: visible !important;
      margin: 20px auto 30px auto !important;
    }
  }
  /* FINAL HERO LOGO FIX */
  .hero-logo {
    width: min(650px, 85vw);
    height: auto !important;
    max-height: none !important;
    display: block;
    margin: 20px auto 20px;
    object-fit: contain !important;
    clip-path: none !important;   /* IMPORTANT: disables cropping */
    overflow: visible !important;
    filter: drop-shadow(0 0 25px rgba(255,255,255,0.15));
  }

  @media (max-width: 768px) {
    .hero-logo {
      width: 95%;
      max-width: 420px;
      min-width: 280px;
      margin: 20px auto;
    }

    .hero-content {
      padding: 130px 20px 60px !important;
    }
  }