/* Ultra-Premium Base */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --platinum: #E5E4E2;
  --gold: #D4AF37;
  --onyx: #0A0A0A;
  --carbon: #1A1A1A;
  --emerald: #50C878;
  --ruby: #E0115F;
}

.platinum-gallery {
  padding: 100px 40px;
  background: var(--onyx);
  color: var(--platinum);
  font-family: 'Montserrat', sans-serif;
  max-width: 1800px;
  margin: 0 auto;
}

/* Masthead */
.gallery-masthead {
  margin-bottom: 60px;
  position: relative;
}

.masthead-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.curator-badge {
  margin-bottom: 30px;
}

.curator-badge span {
  font-size: 14px;
  letter-spacing: 5px;
  color: var(--gold);
  position: relative;
  padding: 0 20px;
}

.curator-badge span::before,
.curator-badge span::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--gold);
}

.curator-badge span::before {
  left: 0;
}

.curator-badge span::after {
  right: 0;
}

.masthead-title {
  font-family: 'Playfair Display', serif;
  font-size: 82px;
  font-weight: 700;
  margin: 0 0 40px 0;
  line-height: 1.1;
  position: relative;
  display: inline-block;
}

.title-decor {
  position: relative;
}

.title-decor::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(90deg, rgba(212,175,55,0.3) 0%, transparent 100%);
  z-index: -1;
}

.viewing-mode {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.mode-btn {
  background: transparent;
  border: none;
  color: var(--platinum);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 25px;
  cursor: pointer;
  position: relative;
  opacity: 0.6;
  transition: all 0.3s;
}

.mode-btn.active {
  opacity: 1;
  color: var(--gold);
}

.mode-btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.mode-btn.active::before {
  transform: scaleX(1);
}

/* Gallery Container */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.gallery-cell {
  position: relative;
}

.cell-artwork {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 125%;
  overflow: hidden;
  border-radius: 8px;
}

.artwork-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.artwork-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Artwork Overlay */
.artwork-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.4) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.header-badge {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--gold);
  color: var(--onyx);
  border-radius: 4px;
}

.header-actions {
  display: flex;
  gap: 10px;
}

.action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  border: none;
  color: var(--platinum);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.zoom-btn:hover {
  background: var(--platinum);
  color: var(--onyx);
}

.like-btn:hover {
  background: var(--ruby);
  color: white;
}

.overlay-body {
  margin-top: auto;
}

.body-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.meta-date, .meta-location {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  padding-left: 15px;
}

.meta-date::before, .meta-location::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.body-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.overlay-footer {
  margin-top: 30px;
}

.view-reel-btn {
  background: transparent;
  border: 1px solid var(--platinum);
  color: var(--platinum);
  padding: 12px 25px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.view-reel-btn:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* Gallery Navigation */
.gallery-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--carbon);
  border: none;
  color: var(--platinum);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-btn:hover {
  background: var(--gold);
  color: var(--onyx);
}

.nav-pagination {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--platinum);
}

.current-page {
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
}

/* Hover Effects */
.gallery-cell:hover .artwork-overlay {
  opacity: 1;
}

.gallery-cell:hover .artwork-image {
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 1200px) {
  .masthead-title {
    font-size: 72px;
  }
  
  .gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 992px) {
  .platinum-gallery {
    padding: 80px 30px;
  }
  
  .masthead-title {
    font-size: 60px;
  }
  
  .body-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .masthead-title {
    font-size: 48px;
  }
  
  .gallery-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .cell-artwork {
    padding-bottom: 150%;
  }
}

@media (max-width: 576px) {
  .platinum-gallery {
    padding: 60px 20px;
  }
  
  .masthead-title {
    font-size: 36px;
  }
  
  .gallery-container {
    grid-template-columns: 1fr;
  }
  
  .cell-artwork {
    padding-bottom: 125%;
  }
  
  .viewing-mode {
    flex-wrap: wrap;
  }
}

/* Feedback Section */
.feedback-section {
  padding: 100px 40px;
  background: #0a0a0a;
  position: relative;
}

.feedback-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.feedback-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.section-badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  background: #D4AF37;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  color: white;
}

.highlight-word {
  position: relative;
}

.highlight-word::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(212, 175, 55, 0.3);
  z-index: -1;
}

/* Testimonial Grid */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 8px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #2a2a2a;
}

.testimonial-card.featured {
  border: 1px solid #D4AF37;
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #D4AF37;
  color: #0a0a0a;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.testimonial-rating {
  color: #D4AF37;
  margin-bottom: 20px;
  font-size: 14px;
}

.testimonial-text {
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 60px;
  color: rgba(212, 175, 55, 0.1);
  position: absolute;
  top: -30px;
  left: -20px;
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #D4AF37;
}

.author-info h4 {
  color: white;
  margin: 0 0 5px 0;
  font-size: 16px;
}

.author-info span {
  color: #aaa;
  font-size: 12px;
}

/* Hover Effects */
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card.featured:hover {
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

/* Feedback CTA */
.feedback-cta {
  text-align: center;
  margin-top: 60px;
}

.feedback-cta p {
  color: #aaa;
  margin-bottom: 20px;
  font-size: 14px;
}

.cta-button {
  background: linear-gradient(90deg, #D4AF37, #F5E6B3);
  color: #0a0a0a;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .feedback-section {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .testimonial-card {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .feedback-grid {
    grid-template-columns: 1fr;
  }
}

 /* Font Import */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
    @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

    /* Base Styles */
    .dark_bg {
        background: #0a0a0a;
        padding: 100px 0;
        color: #fff;
        font-family: 'Poppins', sans-serif;
    }

    .section_header {
        margin-bottom: 60px;
    }

    .section_header h3 {
        font-size: 42px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
        background: linear-gradient(90deg, #FF4533, #FF8A33);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .divider {
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, #FF4533, #FF8A33);
        margin: 15px auto;
    }

    .section_header p {
        color: #aaa;
        font-size: 16px;
    }

    /* Event Card */
    .event_card {
        background: #1a1a1a;
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0, 1);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .event_card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(255, 69, 51, 0.2);
    }

    .event_img {
        position: relative;
        height: 220px;
        overflow: hidden;
    }

    .event_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .event_card:hover .event_img img {
        transform: scale(1.05);
    }

    .event_date {
        position: absolute;
        top: 20px;
        left: 20px;
        background: rgba(255, 69, 51, 0.9);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 14px;
    }

    .event_content {
        padding: 25px;
    }

    .event_meta {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        font-size: 13px;
        color: #aaa;
    }

    .event_meta i {
        margin-right: 5px;
        color: #FF4533;
    }

    .event_content h4 {
        font-size: 22px;
        margin-bottom: 10px;
        font-weight: 600;
        color: #0341c5;
    }

    .event_content p {
        color: #999;
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .event_footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
    }

    .price {
        color: #FF4533;
        font-weight: 600;
        font-size: 18px;
    }

    /* Buttons */
    .buy_btn {
        background: linear-gradient(90deg, #FF4533, #FF8A33);
        color: white;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
    }

    .buy_btn i {
        margin-left: 5px;
        font-size: 12px;
    }

    .buy_btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 69, 51, 0.4);
        color: white;
    }

    .view_all_btn {
        color: #FF4533;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 14px;
        transition: all 0.3s;
    }

    .view_all_btn:hover {
        color: #FF8A33;
    }

    .view_all_btn i {
        margin-left: 5px;
        transition: transform 0.3s;
    }

    .view_all_btn:hover i {
        transform: translateX(5px);
    }

    /* Responsive */
    @media (max-width: 767px) {
        .dark_bg {
            padding: 60px 0;
        }
        
        .section_header h3 {
            font-size: 32px;
        }
        
        .event_img {
            height: 180px;
        }
    }