
  @font-face {
    font-family: 'Noracle';
    src: url('../assets/fonts/Noracle.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: 'UncialAntiqua';
    src: url('../assets/fonts/UncialAntiqua-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: 'Forum';
    src: url('../assets/fonts/Forum-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'GreatVibes';
    src: url('../assets/fonts/GreatVibes-Regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }


  
  :root {
    --gold: #F0A139;
    --white: #f0f0f0;
    --brown:#866d59;
    --dark-brown:#49382E;
    --black:#000;
    --gray:#5a5a5a;
    
  }

  ::selection {
    color: var(--dark-brown);
    background: var(--white);
  }


  * {
    margin: 0;
    padding: 0;
    font-family:'Forum','Noracle' , 'Times New Roman', serif;
    letter-spacing: 3px;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }

  body {
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
  }

  .banner {
    width: 100%;
    height: 100vh;
    position: relative;
  }

  .navbar {
    width: 90%;
    padding: 30px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    position: relative;
    text-decoration: none;
  }

  .logo {
    width: 50px;
  }

  .nav-links {
    display: flex;
    list-style: none;
  }

  .nav-links li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding: 15px;
    display: block;
    transition: 0.4s ease;
  }


  .nav-links a:hover {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 5px;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }

  .hamburger span {
    height: 3px;
    width: 25px;
    background: var(--white);
    margin: 4px 0;
    border-radius: 5px;
  }
  .nav-active {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: absolute;
    top: 100px;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.44); 
    backdrop-filter: blur(10px); 
    padding: 40px 0;
  }
  

  .content {
    width: 100%;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    text-align: left;
    padding-left: 4%;
  }

  .content h1 {
    font-size: 60px;
    font-weight: 800;
    font-family: 'GreatVibes';
  }

  .content p {
    font-size: 20px;
    margin: 2px auto 40px;
  }

  .btn {
    color: var(--gold);
    text-decoration: none;
    border: 3px solid var(--gold);
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s;

  }
  
  .btn:hover {
    color: var(--white);
    border: 3px solid var(--white);
  
  }

  .banner video {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  .artworks {
    padding: 10% 10%;
  }

  .artwork-row {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;

  }

  .artwork-row.reverse {
    flex-direction: row-reverse;
  }

  .artwork-row img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.9s ease, filter 0.5s ease;

  }
  .artwork-row img:hover{
    transform: scale(1.06);
    filter: brightness(1.2) saturate(1.2);
  }
  .artwork-row a{
    text-decoration: none;
    width: 800px;
  }
  .artwork-row h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--brown);
    font-family:'UncialAntiqua';
  }
  .artwork-row p {
    flex: 1;
    font-size: 18px;
    line-height: 1.7;
    margin-top: 0;
  }

  .awards {
    padding: 15% 10%;
    text-align: center;
    margin-top: 100px;
   
  }

  .awards h1 {
    font-size: 32px;
    margin-bottom: 80px;
    color: var(--gold);
  }

  .awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-items: center;
    justify-content: center;
  }

  .awards-grid img {
    opacity: 0.6;
    transition: 0.2s ease-in-out;
    height: 90px;
  }
  .awards-grid img:hover {
    opacity: 1;
    filter: brightness(1.9);
  }

  .youtube-placeholder {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 340px;
    margin: 60px auto;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    transition: 0.3s;
  }
  
  .youtube-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
  }
  
  .youtube-placeholder:hover img {
    filter: brightness(1.2);
  }
  
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  
  .play-button::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 18px;
    width: 0;
    height: 0;
    border-left: 20px solid var(--dark-brown);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }

  .exhibition {
    padding: 100px 10%;
    text-align: center;
  }

  .exhibition h1{
    font-size: 32px;
    color: var(--gold);
  }
  
  .exhibition-video {
    width:80%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.14);
    transition: 0.3s;
    margin: 40px auto;
  }
  
  .exhibition-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--white);
  line-height: 1.8;
  text-align: justify;
  }


  .about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 60px 10%;
    gap: 40px;
    margin: 150px auto;
  }

  .about img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
  }

  .about-text {
    flex: 1;
  }

  .about-text h1 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--gold);
  }

  .about-text p {
    font-size: 18px;
    line-height: 1.8;
  text-align: justify;
  }

  .about-text ul{
    font-size: 18px;
    line-height: 1.8;
  }
  .about-text ul li{
    margin-left: 4%;
  }

  footer {
    padding: 30px 10%;
    text-align: center;
    background-color: #111;
    border-top: 1px solid #333;
    
  }

  .footertext{
    display: flex;
    justify-content: space-between; 
    align-items: center;
    flex-wrap: wrap;
    margin: 40px auto;
  }

  .footertext .contact{
    color: var(--gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    margin-right: 15px;
  }
  
  .footertext .contact a {
    text-decoration: none;
    color: var(--white);
    transition: 0.6s ease;
    
  }

  .footertext .contact a:hover{
    text-decoration: underline;
    text-underline-offset: 5px;
  }

  .social-icons {
    margin-bottom: 25px;
    font-size: 16px;
    
  }

  .social-icons a {
    margin: 0 10px;
    display: inline-block;
    text-decoration: none;
    color: var(--white);
    transition: 0.4s ease;
  }

  .social-icons a:hover{
    text-decoration: underline;
    text-underline-offset: 5px;
    color: var(--brown);
  }

  footer p {
    font-size: 14px;
    color: #aaa;
  }







  @media screen and (max-width: 768px) {
    body {
      padding: 0 !important;
      margin: 0 !important;
    }
    
    .artwork-row a {
      width: 100%;
    }
  
    .artwork-row {
      flex-direction: column !important;
      text-align: center;
    }
  
    .navbar {
      flex-direction: row;
      justify-content: space-between;
    }
  
    .nav-links {
      display: none;
      width: 100%;
    }
  
    .hamburger {
      display: flex;
    }

    
  }