
@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;
}

  header {
    padding: 20px 40px;
    background-color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  header img.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.6); 
    backdrop-filter: blur(10px); 
    padding: 40px 0;
  }
  

  .main-section {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    gap: 30px;
    justify-content: center;
    align-items: center;
  }

  .main-image {
    flex: 1;
    min-width: 300px;
  }

  .main-image img {
    width: 100%;
    border-radius: 10px;
  }

  .description {
    flex: 1;
    min-width: 300px;
    
  }
  .description h2 {
    font-size: 30px;
    color: var(--brown);
    margin-bottom: 10%;
  }
  
  .description h1 {
    font-size: 30px;
    font-family:'UncialAntiqua';
    color: var(--white);
    margin-bottom: 20px;
  }
  
  .description p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--white);
    text-align: justify;
  }

  .exhibition {
    padding: 8% 80px;
    text-align: center;
  }

  .exhibition h1{
    font-size: 36px;
    color: var(--gold);
  }

  .ar{
    padding-top: 500px;
  }

  .exhibition-video {
    width:80%;
    max-height: 600px;
    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;
  }

  .exhibition .gallery{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-self: center;
    gap: 60px;
    padding: 40px;
  }
  

  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    align-self: center;
    gap: 80px;
    padding: 40px;
  }

  .gallery img {
    width: 100%;
    
    object-fit: cover; 
    border-radius: 10px;
    transition: transform 0.5s ease, filter 0.5s ease;
    cursor: pointer;
  }

  .gallery img:hover {
    transform: scale(1.05);
    filter: brightness(1.2) grayscale(100%);
  }

  
  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 (max-width: 768px) {
    body {
      padding: 0 !important;
      margin: 0 !important;
    }

    header nav ul {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    nav {
      flex-direction: row;
      justify-content: space-between;
    }
  
    .nav-links {
      display: none;
      width: 100%;
    }
  
    .hamburger {
      display: flex;
    }

    .main-section {
      flex-direction: column;
      align-items: center;
    }

  }
