* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", sans-serif;
}

body, html {
  height: 100%;
  /* background: #0a0a0a; */
}

.intro {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: radial-gradient(circle at center, #111 0%, #000 100%);
  position: relative;
  overflow: hidden;
}

.intro h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  z-index: 2;
  animation: fadeInUp 2s ease forwards;
}

.subtext {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #bbbbbb;
  animation: fadeInUp 3s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  animation: float 18s infinite ease-in-out alternate;
}

.shape:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 50%;
  left: 75%;
  animation-delay: 3s;
}

.shape:nth-child(3) {
  width: 160px;
  height: 160px;
  top: 70%;
  left: 40%;
  animation-delay: 6s;
}

@keyframes float {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-30px) scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.5;
  }
}
.math-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

.math-curves {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: none;
  z-index: 0;
}

.math-curves svg {
  width: 100%;
  height: 100%;
}

.math-curves path {
  stroke: #ffffff;
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: draw 4s ease-out forwards, glow 3s infinite alternate;
  opacity: 0.8;
  filter: drop-shadow(0 0 6px #ffffff);
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes glow {
  from {
    stroke-opacity: 0.4;
    filter: drop-shadow(0 0 2px #ffffff);
  }
  to {
    stroke-opacity: 1;
    filter: drop-shadow(0 0 8px #ffffff);
  }
}
@keyframes glowPath {
  0%, 100% {
    stroke-opacity: 0.07;
  }
  50% {
    stroke-opacity: 0.25;
  }
}
.enter-btn {
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  background-color: #ffffff;
  color: #000;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  z-index: 2;
  animation: fadeInUp 4s ease forwards;
  transition: all 0.3s ease;
}

.enter-btn:hover {
  background-color: #b3b3b3;
  color: #000;
}/*# sourceMappingURL=style.css.map */

.banner {
  position: relative;
  /* height: 220px; */
  background: rgba(255,255,255,0);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* border-bottom: 1px dotted rgba(255, 255, 255, 0.5); */
}
.banner h1 {
    font-size: 160px;
  /* font-size: 2.8rem; */
  font-weight: 100;
  color: #ffffff;
  z-index: 2;
  mix-blend-mode: screen;
  /* text-shadow: 0 0 10px #ff80ab, 0 0 20px #80d8ff, 0 0 30px #ffd180; */
}
.banner svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.banner path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  animation: dash 25s linear infinite;
}
.banner path:nth-child(1) {
  stroke: #ff4081;
}
.banner path:nth-child(2) {
  stroke: #40c4ff;
  animation-delay: 5s;
}
.banner path:nth-child(3) {
  stroke: #ffd740;
  animation-delay: 10s;
}
.banner path:nth-child(4) {
  stroke: #69f0ae;
  animation-delay: 15s;
}
@keyframes dash {
  0% {
    stroke-dasharray: 5, 15;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 5, 15;
    stroke-dashoffset: 1000;
  }
}

.art-gallery {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; /* Optional for responsiveness */
  gap: 20px; 
  padding: 20px;
  margin-left: 100px;
  margin-right: 100px;
}





.art-card {
  width: 100%; /* Instead of 400px */
  max-width: 400px; /* Optional: limit width */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #fff;
  overflow: hidden;
}

.art-card-outline {
  flex: 1 1 calc(27.5% - 20px); /* With gap accounted */
  max-width: calc(27.5% - 20px);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 1s ease;
  margin-bottom: 5%;
}
/* .art-card-outline {
  flex: 1 1 calc(25%); /* 3 in a row with space between */
  /* box-sizing: border-box; */
  /* max-width: calc(25%); */

@media (max-width: 900px) {
  .art-card-outline {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .art-card-outline {
    flex: 1 1 100%;
    max-width: 100%;
  }
}


.image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* or 1 / 1 for square */
  overflow: hidden;
  background: #111; /* fallback background */
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures consistent fill without distortion */
  display: block;
  transition: filter 0.3s ease;
}

.image-wrapper.winner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16 / 9; /* cinematic and majestic */
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, #111, #1e1e1e);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.3), 0 0 80px rgba(0, 255, 255, 0.1);
  transition: transform 0.5s ease;
}

.image-wrapper.winner:hover {
  transform: scale(1.03);
}

.image-wrapper.winner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(95%) contrast(105%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.image-wrapper.winner:hover img {
  filter: brightness(105%) contrast(110%);
  transform: scale(1.02);
}




.slide-up {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(100%);
  transition: all 1.5s ease;
  padding: 1rem;
  box-sizing: border-box;
}


.art-card-outline:hover {
transform: scale(1.1);
}

/* .art-card-outline:hover {
  filter: brightness(50%);
  transform: scale(1.1);
  transition: all 1s ease;
} */

.image-wrapper:hover .slide-up {
  opacity: 1;
  transform: translateY(0);
  
}

.slide-top,
.slide-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.visit-a {
  align-self: center;
}
.visit-button {
  align-self: center;
  padding: 0.7rem 1.5rem;
  background: #fff;
  color: #333;
  border: none;
  border-radius: 5px;
  font-weight: 200;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.visit-button:hover {
  background: #e0e0e0;
}

.slide-icon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.creator {
  /* padding: 0.75rem 1rem; */
  /* font-family:Verdana, Geneva, Tahoma, sans-serif; */
  font-size: 1.5rem;
  letter-spacing: 5px;
  font-weight: 300;
  margin: 0;
  color: #ffffff;
}

.navbarcolor {
  background-color: #111;
}

.like-btn.fa-solid {
  color: #ff4081; /* or whatever color you want for "liked" */
}

.project-name {
  font-weight: 500;
}

/* ===== Creator credit (small, subtle bottom line) ===== */
.creator-credit {
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.5;
  color: #7a7f86;
  background: #0c0e11;
  padding: 9px 16px 11px;
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: 0.2px;
}
.creator-credit strong { color: #969ba2; font-weight: 600; }
.creator-credit a { color: inherit; text-decoration: none; }
.creator-credit a:hover { text-decoration: underline; }
