body {
  margin: 0;
  font-family: 'Merriweather', serif;
  background-color: #000;
  color: #fff;
  opacity: 0;
  transition: opacity 1.2s ease;
}

body.fade-in {
  opacity: 1;
}

body.fade-out {
  opacity: 0;
  transition: opacity 1.2s ease;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
}

a {
  text-decoration: none;
}

/* Landing Page */
.landing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  text-align: center;
  background: url("images/black_marble.jpg") no-repeat center center/cover;
  overflow: hidden;
}

.landing .shimmer-logo {
  width: 240px;
  max-width: 80%;
}

.landing .enter-button {
  margin-top: 40px;
  padding: 12px 28px;
  background-color: #d4af37;
  color: #000;
  font-size: 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 10px rgba(212,175,55,0.5); }
  to { box-shadow: 0 0 25px rgba(212,175,55,1); }
}

.landing .enter-button:hover {
  background-color: #fff;
  color: #000;
}

/* Hero Section */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("images/1000021533.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}




@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.hero-overlay {
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fadeInUp 1.5s ease-out forwards;
}




.hero-title {
  font-size: 5rem;
  font-weight: bold;
}

.hero-subtitle {
  font-size: 2.5rem;
  margin-top: 10px;
}


.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}



.hero-text h1 {
  font-size: 48px;
  margin: 0;
}

.hero-text h2 {
  font-size: 22px;
  color: #ccc;
  letter-spacing: 2px;
  margin-top: 10px;
}

/* Sections */
.about, .collection, .contact {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.about p {
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.6;
  color: #eee;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.art-card {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #333;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  text-align: center;
}

.art-card img {
  width: 100%;
  border-radius: 8px;
}

.art-card h3 {
  margin: 15px 0 10px;
}

.swiper {
  width: 100%;
  height: 300px;
}

.swiper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.swiper-button-prev,
.swiper-button-next {
  color: #d4af37;
  font-weight: bold;
}

/* Shimmer Card */
.shimmer-card {
  position: relative;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d4af37;
}

.shimmer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(212, 175, 55, 0.5),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -150%; }
  100% { left: 150%; }
}

.shimmer-text {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 3px;
  z-index: 1;
}

/* Contact */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.contact input, .contact textarea {
  padding: 12px;
  border: 1px solid #444;
  border-radius: 5px;
  background: #222;
  color: #fff;
}

.contact button {
  background: #d4af37;
  color: #000;
  border: none;
  padding: 14px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.contact button:hover {
  background: #fff;
  color: #000;
}

.price {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 600;
  color: #d4af37;
  margin-top: 10px;
  letter-spacing: 1px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
  padding: 20px;
}

.modal-content {
  text-align: center;
  color: #fff;
}

.modal img {
  max-width: 90%;
  max-height: 70%;
  border-radius: 8px;
}

#close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-top: 20px;
}

.modal p {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: #d4af37;
  margin-top: 10px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: left;
}

.hero-text {
  max-width: 500px;
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
}

/* Typography updates */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
}

.about p, .collection p, .contact p, .contact input, .contact textarea {
  font-family: 'Lora', serif;
}

.price {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 600;
  color: #d4af37;
  margin-top: 10px;
  letter-spacing: 1px;
}

.landing .shimmer-logo {
  width: 300px;
  max-width: 85%;
}

.landing .enter-button {
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  font-size: 20px;
  padding: 14px 34px;
}

.collection h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.collection h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background-color: #fff;
}





.landing-logo {
  width: 20%;
  height: auto;
  max-width: none;
}

@media (max-width: 640px) {
  .landing-logo {
    width: 100%;
  }
}



}



.fullview-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.fullview-popup img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


.artwork-story {
  margin-top: 12px;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
  max-width: 800px;
}
#luxury-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.6s ease;
}

#luxury-overlay.show {
  display: block;
  opacity: 1;
}

.luxury-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(0,0,0,0.95);
  color: gold;
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  text-align: center;
  padding: 30px 40px;
  border: 2px solid gold;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(255,215,0,0.6);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.luxury-popup.show {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
