 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Helvetica Neue', Arial, sans-serif;
     background-color: white;
     color: #333;
     line-height: 1.6;
     overflow-x: hidden;
 }

 img {
     width: 70%;
 }

 .menu-container {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 100;
     padding: 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     background-color: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(5px);
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 .logo {
     font-size: 24px;
     font-weight: 700;
     letter-spacing: -1px;
     color: black;
 }

 .menu-items {
     display: flex;
     gap: 30px;
 }

 .menu-item {
     position: relative;
     cursor: pointer;
     font-weight: 300;
     font-size: 16px;
     transition: all 0.3s ease;
 }

 .menu-item:after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 1px;
     background-color: #000;
     transition: width 0.3s ease;
 }

 .menu-item:hover:after {
     width: 100%;
 }

 .main-content {
     padding: 100px 20px 80px;
     min-height: 100vh;
 }

 .gallery {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
     gap: 15%;
     perspective: 100px;
 }

 .video-container {
     position: relative;
     overflow: hidden;
     border-radius: 8px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
     background: #000;
     transform-style: preserve-3d;
     will-change: transform;
     aspect-ratio: 16/9;
 }

 .video-container:nth-child(3n+1) {
     transform: rotate(-1deg) translateY(10px);
 }

 .video-container:nth-child(3n+2) {
     transform: rotate(2deg) translateY(-5px);
 }

 .video-container:nth-child(3n+3) {
     transform: rotate(-2deg) translateY(15px);
 }

 .video-container:hover {
     transform: scale(1.03) rotate(0deg) translateY(-5px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
     z-index: 10;
 }

 .video-container iframe {
     width: 100%;
     height: 100%;
     border: none;
     display: block;
 }

 .video-container:hover {
     transform: translateY(0);
 }

 footer {
     background-color: #f8f8f8;
     padding: 40px 20px;
     text-align: center;
 }

 .footer-content {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 10px;
     padding: 10px 100px;
     text-align: center;
     font-size: smaller;
 }

 .footer-section h3 {
     margin-bottom: 15px;
     font-weight: 500;
 }

 .social-links {
     display: flex;
     justify-content: center;
     gap: 15px;
     margin-top: 15px;
 }

 .social-links a {
     color: #333;
     font-size: 20px;
     transition: color 0.3s ease;
 }

 .social-links a:hover {
     color: #000;
 }



 @media (max-width: 768px) {
     .menu-container {
         flex-direction: column;
         gap: 15px;
         padding: 15px;
     }

     .menu-items {
         width: 100%;
         justify-content: space-between;
         gap: 10px;
     }

     .gallery {
         grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
     }

     .video-container:nth-child(n) {
         transform: none;
     }

     .video-container:hover {
         transform: scale(1.02);
     }

     img {
         display: none;
     }
 }

 @media (max-width: 480px) {
     .gallery {
         grid-template-columns: 1fr;
     }

     .menu-items {
         flex-wrap: wrap;
     }

     .menu-item {
         font-size: 14px;
     }

     img {
         display: none;
     }
 }

@media (max-width: 1023px) {
    img {
        display: none;
    }
}

 @media (min-width: 1024px) {
     .menu-container {
         position: absolute;
         flex-direction: column;
         align-items: flex-start;
         width: 120px;
         height: 100vh;
         padding: 40px 20px;
         box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
     }

     .menu-items {
         flex-direction: column;
         gap: 20px;
         margin-top: 40px;
     }

     .main-content {
         margin-left: 220px;
         padding: 40px 20px;
     }

     img {
         width: 70%;
     }
 }