/* ===== page-screenshots.css =====
   Styles for the Screenshot Page template (page-screenshots.php).
   Loaded conditionally via Assets.php only on this page template.
========================================= */

/* ---- Screenshot Section ---- */
.screenshot-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.abstract-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.45;
  z-index: -1;
}

.circle-1 {
  width: 220px;
  height: 220px;
  background: #bbdefb;
  top: 140px;
  left: -80px;
}

.circle-2 {
  width: 320px;
  height: 320px;
  background: #ffe0b2;
  bottom: 60px;
  right: -140px;
}

.circle-3 {
  width: 280px;
  height: 280px;
  background: #b2deff;
  bottom: 400px;
  left: -140px;
}

.circle-4 {
  width: 140px;
  height: 140px;
  background: #d7b2ff;
  top: 50px;
  right: 80px;
}

/* ---- Screenshot Card ---- */
.screenshot-card {
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  background: #5fcae8;
}

.screenshot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.14);
}

.screenshot-card img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  background: #fff;
}

/* ---- Section Titles ---- */
.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 25px;
}

.main-section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0d47a1;
}

.main-section-subtitle {
  color: #607d8b;
}

/* ---- CSS Custom Properties ---- */
:root {
  --primary: #00d4ff;
  --secondary: #6f42c1;
  --dark: #0b0f1a;
}

/* ---- Dashboard Header ---- */
.dashboard-header {
  color: #434343;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header .slider-heading span {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- Slider Section ---- */
.slider-section {
  position: relative;
}

.slider-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.photography-slider--item {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.photography-slider--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photography-slider--inner {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  animation: slideUp 1.2s ease;
}

/* Slider text — using div/p instead of h1 now */
.photography-item--title {
  font-size: 9vh;
  font-weight: 700;
  text-transform: uppercase;
}

.photography-item--title span {
  color: var(--primary);
}

.photography-item--title-outline {
  font-size: 14vh;
  font-weight: 700;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4);
  color: transparent;
}

/* ---- Pagination ---- */
.swiper-pagination-bullet {
  background: #ffd147;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
}

/* ---- Sidebar ---- */
.sidebar {
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.sidebar a {
  display: block;
  margin: 20px 0;
  padding: 6px 14px;
  border: 1px solid #00d4ff;
  color: #6f42c1;
  text-decoration: none;
  transform: rotate(90deg);
  transition: 0.3s;
}

.sidebar a:hover {
  background: var(--primary);
  color: #000;
}

/* ---- Thumbnails ---- */
.photography-thumbs {
  height: 110px;
}

.photography-thumbs img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.photography-thumbs .swiper-slide {
  opacity: 0.4;
  transition: 0.3s;
}

.photography-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  transform: scale(1.05);
  border: 2px solid var(--primary);
}

/* ---- Animations ---- */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

/* ---- Document Showcase ---- */
.document-showcase-section {
  margin: 60px 0;
}

/* CARD */
.doc-preview-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  margin: 10px;
}

.doc-preview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.14);
}

/* IMAGE */
.doc-image {
  height: 420px;
  background: #fff;
  overflow: hidden;
  border: 1px solid #5fcae8;
  border-radius: 0.25rem;
}

.doc-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

/* TITLE BAR */
.doc-title-bar {
  background: #63cbe8;
  text-align: center;
  padding: 12px 10px;
  font-size: 16px;
  font-weight: 500;
  color: #0b2a3d;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 2;
}

.doc-preview-card:hover .doc-title-bar {
  background: #4bb8d6;
  color: #06202e;
}

/* MODAL */
.doc-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.doc-modal-content {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 0.25s ease;
  cursor: grab;
}

.doc-modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .photography-slider--inner {
    left: 0;
    width: 100%;
    text-align: center;
  }

  .photography-item--title {
    font-size: 5vh;
  }

  .photography-item--title-outline {
    font-size: 8vh;
  }
}