/* GENERAL */

body {
  margin: 0;
  padding: 0;
  background: #02040F;
  font-family: "Georgia", serif;
  color: #EADBC8;
  overflow-x: hidden;
}

/* NAVIGATION */

.nav {
  width: 100%;
  padding: 20px;
  text-align: center;
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  z-index: 1000;
}

.nav a {
  margin: 0 15px;
  color: #EADBC8;
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav a:hover {
  color: #F1D28A;
  transition: 0.3s;
}

/* HERO SECTION */

.hero {
  text-align: center;
  margin-top: 120px;
  padding: 40px;
  animation: fadeIn 2s ease forwards;
}

.title {
  font-size: 3rem;
  letter-spacing: 2px;
  color: #F0DFA8;
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(255, 221, 157, 0.6);
}

.hero-image {
  width: 55%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(190, 140, 255, 0.4);
  animation: fadeIn 3s ease forwards;
}

.subtitle {
  font-size: 1.4rem;
  margin-top: 25px;
  color: #F0DFA8;
  opacity: 0;
  animation: fadeIn 3.5s ease forwards;
}

/* ANIMATIONS */

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* MOBILE */

@media(max-width: 768px) {
  .title {
    font-size: 2rem;
  }

  .hero-image {
    width: 85%;
  }

  .subtitle {
    font-size: 1.1rem;
  }
}
/* --- Art Gallery --- */

.section-header {
    color: #f5e8c7;
    font-size: 1.8rem;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.art-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(120, 90, 255, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.art-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(160, 130, 255, 0.45);
}

.art-item p {
    color: #f5e8c7;
    text-align: center;
    margin-top: 8px;
    font-size: 1.1rem;
}
Sent
Write to

