

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  font-family: Arial, sans-serif;
  background-color: #000;
  line-height: 1.6;
}
#banner {
  background-size: cover;
  background-position: center;
  padding-top: 400px;
  padding-bottom: 400px;
  }

.animation-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.circle {
  width: 50px;
  height: 30px;
  background-color: rgb(255, 150, 0); 
  border-radius: 50px 0 50px;
  animation: circleAnimation 2s ease-in-out forwards;
}

.word {
  font-size: 5vw;
  opacity: 0;
  color: rgb(255, 150, 0); 
  animation: wordAnimation 2s ease-in-out forwards 2s;
}

#sideNav {
  position: fixed;
  width: 100%;
  background-color: #000000;
  z-index: 10;
}

nav .mainMenu {
  display: flex;
  list-style: none;
  margin-left: 100px;
}

nav .mainMenu li {
  margin-left: 5px;
  margin-top: 10px;
  padding: 0;
 }

nav .mainMenu li a {
  display: inline-block;
  padding-top: 15px;
  text-decoration: none;
  text-transform: uppercase;
  color: rgb(255, 208, 0);
  font-size: 1rem;
  padding: 10px;
}

nav .mainMenu li:hover {
  background-color: rgb(255, 150, 0);
  transition: 0.5s ease;
}

nav .mainMenu li a:hover {
  color: #000000;
  height: 98.5%;
}

#biography {
  width: 100%;
  padding: 70px 0;
}

.bio-context-col {
  display: flex;
  justify-content: center;
  padding: 30px 20px;
}

#biography .title-text h3 {
  font-size: 3ex;
  font-weight: 1;
  color: rgb(255, 150, 0);
  text-align: center;
  margin-bottom: 40px;
}

.bio-context-col {
  color: rgb(255, 150, 0);
  flex-basis: 80%;
  padding: 20px;
  padding-left: 0;
  margin-bottom: 30px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5ms;
  margin-left: 150px;
  margin-right: 100px;
  box-shadow: 0 1px 1px 3px rgb(255, 150, 0);
}

.bio-context-col:hover {
  transform: translateY(5px);
}

.bio-context-col p {
  font-size: 20px;
  text-align: justify;
  line-height: 1.5;
  padding: 20px;
  margin-left: 45px;
}

#portfolio {
  margin: 0;
  padding: 0;
}
#portfolio .heading {
  text-align: center;
  padding-bottom: 30px;
}

#portfolio .heading h3 {
  font-size: 3ex;
  font-weight: 1;
  color: rgb(255, 150, 0);
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 20px;
  text-align: center;
  margin: 120px;
}

.art-card {
  border-radius: 12px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  display: flex;
  box-shadow: 0 2px 2px rgba(255,150,0,0.3);
}

.art-image-container {
  width: 100%;
  height: 250px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.art-card img {
  max-width: 100%;
  max-height: 90%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.art-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(255,150,0,0.3);
}

.art-card:hover img {
  transform: scale(1.02);
}
.art-info {
  padding: 10 px 15px 20px;
  text-align: center;
  margin-top: 2px;
}

.art-info h6 {
  font-size: 1.1rem;
  margin: 0;
  color: #926a34
}

.art-info p {
  font-size: 1rem;
  color: #ffffff;
  margin-top: 5px;
  margin-bottom:5px;
}

.art-info span {
  font-size: 1rem;
  color: #ffffff;
  margin-top: 5px;
  margin-bottom:5px;
}

#portfolio .popup-image {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  height: 100%;
  width: 100%;
}

.popup-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgb(255, 150, 0);
  border-radius: 5px;
  object-fit: cover;
  max-width: 70%;
  max-height: 70%;
}

.popup-image span {
  position: absolute;
  font-size: 30px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 1100;
}

#exhibitions {
  width: 100%;
  padding: 70px 0;
}

#exhibitions .title-text h3 {
  font-size: 3ex;
  font-weight: 1;
  color: rgb(255, 150, 0);
  text-align: center;
  margin-bottom: 40px;
}

.context-row {
  color: rgb(255, 150, 0);
  width: 80%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: auto;
}
.ex-context-col {
  margin-bottom: 30px;
  margin-left: 150px;
  margin-right: 150px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5ms;
  box-shadow: 0 1px 1px 3px rgb(255, 150, 0);
}

.ex-context-col ul {
  font-family: "Arial Narrow Bold", sans-serif;
  font-weight: lighter;
  line-height: 2;
  color: rgb(255, 150, 0);
  list-style: none;
  padding-left: 20px;
}

.ex-context-col:hover {
  transform: translateY(7px);
}

/* footer */ 
#footer {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: rgb(255, 150, 0);
  text-align: center;
}

/* .footer-contact{
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 30px;
  gap: 150px;
  margin-bottom: 20px;
  flex-wrap: wrap;
} */

/* #footer h3 {
  margin-bottom: 15px;
  padding-top: 20px;
} */
/* .contact-item p {
  margin-top: 0; 
  margin-bottom: 10px;
} */

.mediaBtn a img {
  margin-top: 20px;
  cursor: pointer;
  border-radius: 15px;
}

.social {
  margin: 20px 0;
}

.creater {
  margin-top: 20px;
}

.creater a {
  text-decoration: none;
  color: inherit;
  color: black;
  font-size: 90%;
  text-decoration: none;
}

#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    color: black;
    background-color: orange;
    outline: none;
    padding: 10px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1000;
    font-size: 15px;
    border: none;
    border-radius: 10px;
}

#scrollToTopBtn:hover {
    background-color: black;
    color:rgb(255, 150, 0);
}

@keyframes circleAnimation {
  from {
    left: -100px;
  }
  to {
    left: 120%; /* Adjust if needed */
    transform: translateX(-50%);
  }
}

@keyframes wordAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 800px) {
  #sideNav {
    position: fixed;
    background: transparent;
    margin: 0;
    padding: 0;
  }
  
  #sideNav .mainMenu {
    position: fixed;
    right: 0;
    top: 0;
    left: 0;
    height: 100vh; 
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    transition: top 1s ease;
    display: none;
    border-bottom: 2px solid rgb(255, 150, 0);
    margin: 0;
    z-index: 1000;
    overflow-y: auto; 
  }
  nav .openMenu {
  font-size: 1.5rem;
  margin: 20px;
  display: none;
  cursor: pointer;
}

nav .mainMenu .closeMenu,
.icons i {
  font-size: 2rem;
  display: none;
  cursor: pointer;
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 1.5rem;
  color: #fff;
}
 
  nav .openMenu {
    display: block;
    color: #fff;
  }
  
  nav .mainMenu li a:hover {
    background: none;
    color: rgb(255, 150, 0);
    font-size: 1.3rem;
  }
  
  nav .mainMenu li:hover {
    background-color: transparent;
  }
  
  #banner {
    height: auto;
    padding-top: 250px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .word{
    font-size: 25px;
  }
  .circle{
    margin-left: 25px; 
  }
  .title-text h3 {
    font-size: 25px;
    margin-top: 130px;
  }
  
  .bio-context-col {
    border-radius: 5px;
    box-shadow: none;
    cursor: pointer;
    margin-left: auto;
    margin-right: 2px;
    margin-bottom: 45px;
  }
  
  .bio-context-col:hover {
    transform: translateY(5px);
    transition: 0.5ms;
  }
  
  .bio-context-col p {
    line-height: 2;
    color: rgb(255, 150, 0);
  }
  
  #portfolio .art-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  
  #portfolio .art-grid .art-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  #portfolio .art-grid .art-card .art-image-container {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 2s linear;
  }
  
  #exhibitions {
    width: auto;
  }
  
  .ex-context-col {
    margin-bottom: 50px;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 5px 3px rgba(255, 150, 0, 0.5);
    padding: 0;
  }
  
  .ex-context-col ins {
    padding: 20px;
    color: rgb(255, 150, 0);
  }
  
  .ex-context-col li {
    font-family: "Arial Narrow Bold", sans-serif;
    font-weight: lighter;
    line-height: 2;
    color: rgb(255, 150, 0);
    font-size: 89%;
    margin: 0;
    padding-left: 10px;
    list-style: none;
  }
  
  #footer {
    padding: 1px;
    text-align: center;
  }
}

@media (max-width: 300px) {
  #sideNav {
    position: sticky;
    background: transparent;
    margin: 0;
    padding: 0;
  }
  
  nav {
    width: auto;
  }
  
  #sideNav .mainMenu {
    margin: 0;
    height: 40vh;
    width: 25px;
  }
  
  #sideNav .mainMenu li:hover {
    background-color: rgb(255, 150, 0);
    transition: 0.5s ease;
  }
  #sideNav .mainMenu li a:hover {
    color: #000000;
    height: 98.5%;
    font-size: 200%;
  }
  nav .mainMenu .closeMenu {
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5rem;
  }
  #banner {
    height: auto;
    padding-top: 250px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .circle{
    margin-left: 15px; 
  }
  #biography {
    width: 100%;
    padding: 70px 0;
    background-color: black;
  }
  biography .title-text h3 {
    font-size: 3ex;
    font-weight: 1;
    color: rgb(255, 150, 0);
    text-align: center;
    margin-bottom: 40px;
  }
  .bio-context-col {
    padding: 0;
  }
  .bio-context-col p {
    font-size: 90%;
    margin-left: 4px;
  }
  #exhibitions {
    width: auto;
  }
  .ex-context-col {
    margin-bottom: 50px;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 5px 3px rgba(255, 150, 0, 0.5);
    padding: 0;
  }
  .ex-context-col ins {
    padding: 20px;
  }
  .ex-context-col li {
    font-family: "Arial Narrow Bold", sans-serif;
    font-weight: lighter;
    line-height: 2;
    color: rgb(255, 150, 0);
    font-size: 89%;
    margin: 0;
    padding-left: 10px;
    list-style: none;
  }
  #footer .title-text h3 {
    color: #000000;
  }
  .footer-row h3 {
    margin-top: 6px;
    font-size: 100%;
  }
}
