* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: linear-gradient(135deg, #fdf0de, #faeee9);
  color: #333;
}

/* NAVBAR */
.navbar {
  background: linear-gradient(90deg, #667eea, #764ba2);
  color: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 90px 20px;
  text-align: center;
  background: linear-gradient(135deg, #89f7fe, #66a6ff);
}

/* GALLERY */
.gallery {
  padding: 40px 20px;
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

/* ART CARD */
.art-card {
  background: #ffe9a0d0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.art-card:hover {
  transform: translateY(-6px);
}

.thumbnail {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  cursor: pointer;
}

figcaption {
  padding: 10px;
  font-weight: bold;
  background: #f7f7f7;
}

/* CONTENT */
.content {
  background: #ffffffcc;
  margin: 20px;
  padding: 40px 20px;
  border-radius: 10px;
}

/* FOOTER */
footer {
  background: #764ba2;
  color: #fff;
  text-align: center;
  padding: 15px;
}

/* LIGHTBOX */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-content {
  position: relative;
  background: #111;
  padding: 15px;
  border-radius: 10px;
  max-width: 70vw;
  max-height: 70vh;
  text-align: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  border: 4px solid #fff;
}

.lightbox-title {
  color: #fff;
  margin-top: 10px;
}

.close {
  position: absolute;
  top: 6px;
  right: 12px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

/* WATERMARK */
.watermark-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-size: 2rem;
  color: rgba(255,255,255,0.18);
  pointer-events: none;
}

/* MOBILE */
@media (max-width: 600px) {
  .lightbox-content {
    max-width: 90vw;
  }
}

/* ACCORDION CONTAINER */
.accordion {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

/* ACCORDION HEADER */
.accordion-header {
  width: 100%;
  padding: 16px 20px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: left;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  color: #333;
}

/* Alternate colors (optional) */
.accordion:nth-child(2) .accordion-header {
  background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
}

.accordion:nth-child(3) .accordion-header {
  background: linear-gradient(135deg, #d4fc79, #96e6a1);
}

.accordion:nth-child(4) .accordion-header {
  background: linear-gradient(135deg, #fbc2eb, #a6c1ee);
}

/* ICON */
.accordion-icon {
  font-size: 1.4rem;
  transition: transform 0.3s;
}

/* CONTENT */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #ffffffdd;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

/* OPEN STATE */
.accordion.active .accordion-content {
  padding: 20px;
}

.accordion.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion.active .accordion-content {
  padding: 20px;
}

/* AWARDS SECTION */
.awards-section h2 {
  text-align: center;
  margin-bottom: 10px;
}

.awards-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1rem;
}

/* Grid */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* Card */
.award-card {
  background: linear-gradient(135deg, #fff1eb, #ace0f9);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* Icon */
.award-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* Text */
.award-year {
  font-weight: bold;
  color: #555;
  margin: 5px 0;
}

.award-desc {
  font-size: 0.95rem;
  color: #333;
}

.award-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px;
  background: #fff;
}

.award-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}