* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Playfair Display', serif;
  background-color: #fffefc;
  color: #333;
}

/* Splash Welcome Screen */
#welcome-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: #fce3dc;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.5s ease;
}
#welcome-screen.hide {
  opacity: 0;
  pointer-events: none;
}
.welcome-text {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  color: #d96c6c;
  animation: fadeOut 2s ease 1.5s forwards;
}
@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* Header */
header {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  border-bottom: 1px solid #f2c5d3;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo img {
  height: 50px;
}
nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #d88ba0;
  font-weight: 600;
  font-size: 1rem;
}

/* Gallery Layout */
.gallery-editorial {
  background: #ffffff;
  padding: 5rem 8vw;
}
.art-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 60px;
}
.art-grid.reverse {
  direction: rtl;
}
.art-grid.reverse > * {
  direction: ltr;
}
.image-col img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.image-col img:hover {
  transform: scale(1.02);
}
.text-col {
  padding-top: 1.5rem;
}
.art-title {
  font-size: 2rem;
  color: #c66380;
  margin-bottom: 1rem;
}
.art-snippet {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
}

/* Responsive Layout */
@media screen and (max-width: 768px) {
  .art-grid {
    grid-template-columns: 1fr;
  }
  .text-col {
    text-align: center;
  }
  .image-col img {
    margin: 0 auto;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.6);
}
.modal-content {
  background-color: #fffefc;
  border: 8px solid #f9dbbd;
  color: #edafb8;
  margin: auto;
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 650px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.modal-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #F28482;
}
.modal-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.modal-images {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
}
.modal-images img {
  max-width: 45%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  object-fit: cover;
  height: auto;
}
@media (max-width: 600px) {
  .modal-images {
    flex-direction: column;
    align-items: center;
  }
  .modal-images img {
    max-width: 80%;
    margin-bottom: 15px;
  }
}
.close-btn {
  color: #edafb8;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close-btn:hover {
  color: #f6bd60;
}

/* About + Footer */
.about {
  padding: 4rem 2rem;
  text-align: center;
}
.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #c66380;
}
.about p {
  max-width: 700px;
  margin: 0 auto;
  color: #5a4c52;
  font-size: 1rem;
}
footer {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #9b7a87;
  background: #fff5f8;
  margin-top: 3rem;
}
