/* =============================
   GLOBAL STYLES
============================= */
body {
  background: #0b0b0b;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  overflow-x: hidden;
}

h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.3s ease-in-out;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

/* =============================
   DETAILS + OVERVIEW BACKGROUND
============================= */

.details-section,
.overview-section {
  position: relative;
  background: url('Assets/images/bg.jpg') center/cover no-repeat;
  padding: 100px 0;
  z-index: 1;
}

.details-section::before,
.overview-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  z-index: -1;
}
h1{
  margin: 20px 0;
}
/* =============================
   PRICE + BUTTONS
============================= */
.price-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffb400, #ff8800);
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 153, 0, 0.4);
}

.btn-gradient {
  background: linear-gradient(135deg, #ffb400, #ff8800);
  color: #fff;
  border: none;
  border-radius: 25px;
  transition: 0.3s;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #ff8800, #ffb400);
  transform: scale(1.05);
}

/* =============================
   OVERVIEW SECTION
============================= */
.overview-section .glass-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.overview-section h3 {
  letter-spacing: 1px;
}

.overview-section p {
  font-size: 15px;
  margin: 0;
}

/* =============================
   RELATED ART SECTION
============================= */
/* .related-art {
  position: relative;
  background: url('Assets/images/bg.jpg') center/cover no-repeat;
  padding: 100px 0;
  overflow: hidden;
  z-index: 1;
}
.related-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  z-index: 0;
}



.related-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: 0.4s ease;
  z-index: 1;
}

.related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.related-card:hover img {
  transform: scale(1.1);
}

.related-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: 0.4s ease;
}

.related-card:hover .overlay {
  opacity: 1;
}

.related-card h5 {
  font-weight: 600;
  color: #ffb400;
}
 */


 .related-art {
  position: relative;
  background: url('Assets/images/bg.jpg') center/cover no-repeat;
  padding: 100px 0;
  overflow: hidden;
  z-index: 1;
}

.related-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(14px);
  z-index: 0;
}

/* 🔥 Heading Style Fix */
.related-art h1,
.related-art h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffb400;
  letter-spacing: 2px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 12px rgba(255, 180, 0, 0.6);
  text-align: center;
}

/* Optional glow line under heading */
.related-art h1::after,
.related-art h3::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ffb400, #fff8e1);
  margin: 10px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 180, 0, 0.6);
}

.related-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  z-index: 2;
  transform: translateY(0);
}

.related-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 180, 0, 0.3);
}

.related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.related-card:hover img {
  transform: scale(1.1);
}

.related-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.related-card:hover .overlay {
  opacity: 1;
}

.related-card h5 {
  font-weight: 600;
  color: #ffb400;
  margin-bottom: 4px;
}

.related-card p {
  font-size: 0.9rem;
  color: #ddd;
  margin: 0;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 768px) {
  .details-section, .overview-section, .related-art {
    padding: 70px 0;
  }
  .glass-card {
    padding: 20px;
  }
  .overview-section .glass-card {
    padding: 25px;
  }
}
/* modal */
/* --- Modal Overlay --- */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

/* --- Modal Box --- */
.modal-content {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 35px;
  width: 420px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: fadeIn 0.5s ease-in-out;
}

/* --- Close Button --- */
.close {
  color: #fff;
  float: right;
  font-size: 25px;
  cursor: pointer;
  transition: 0.3s;
}
.close:hover {
  color: #ff6363;
}

/* --- Title --- */
.modal-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 5px;
  font-weight: 600;
}
.modal-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: #ddd;
  margin-bottom: 20px;
}

/* --- Form --- */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

textarea {
  resize: none;
  height: 80px;
}

/* --- Submit Button --- */
.buy-btn {
  width: 100%;
  background: linear-gradient(135deg, #6d5dfc, #c183ff);
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-btn:hover {
  background: linear-gradient(135deg, #c183ff, #6d5dfc);
  transform: scale(1.03);
}

/* --- Animation --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
