/* playmora - custom theme for Bootstrap 5.3 / AOS / FontAwesome */

:root,
[data-bs-theme="dark"] {
  --pv-bg: #0B0F19;
  --pv-surface: #101524;
  --pv-surface-2: #162033;
  --pv-surface-3: #1E2A3D;
  --pv-cream: #F5F0E8;
  --pv-cream-muted: #B8B0A2;
  --pv-gold: #C9A227;
  --pv-gold-light: #D4AF37;
  --pv-gold-dark: #A6821D;
  --pv-green: #1B4D3E;
  --pv-green-light: #2A6B57;

  --bs-body-bg: var(--pv-bg);
  --bs-body-color: var(--pv-cream);
  --bs-primary: var(--pv-gold);
  --bs-secondary: var(--pv-green);
  --bs-success: var(--pv-green-light);
  --bs-info: #3D7E8C;
  --bs-warning: var(--pv-gold);
  --bs-danger: #A73E3E;
  --bs-light: #E8E3D9;
  --bs-dark: var(--pv-surface);

  --bs-primary-rgb: 201, 162, 39;
  --bs-secondary-rgb: 27, 77, 62;
  --bs-success-rgb: 42, 107, 87;
  --bs-info-rgb: 61, 126, 140;
  --bs-warning-rgb: 201, 162, 39;
  --bs-danger-rgb: 167, 62, 62;
  --bs-light-rgb: 232, 227, 217;
  --bs-dark-rgb: 16, 21, 36;

  --bs-border-color: rgba(245, 240, 232, 0.10);
  --bs-border-color-translucent: rgba(245, 240, 232, 0.15);

  --bs-font-sans-serif: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-line-height: 1.6;

  --pv-section-padding-y: 6rem;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  background-color: var(--pv-bg);
  color: var(--pv-cream);
  font-family: var(--bs-body-font-family);
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.lead {
  color: var(--pv-cream-muted);
  font-weight: 400;
}

a {
  color: var(--pv-gold);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: var(--pv-gold-light);
  text-decoration: underline;
}

/* Theme utility colors */
.text-gold { color: var(--pv-gold) !important; }
.text-cream { color: var(--pv-cream) !important; }
.text-cream-muted { color: var(--pv-cream-muted) !important; }
.text-green { color: var(--pv-green-light) !important; }

.bg-dark-navy { background-color: var(--pv-bg) !important; }
.bg-navy-surface { background-color: var(--pv-surface) !important; }
.bg-navy-surface-2 { background-color: var(--pv-surface-2) !important; }
.bg-gold { background-color: var(--pv-gold) !important; }
.bg-gold-gradient { background: linear-gradient(135deg, var(--pv-gold) 0%, var(--pv-gold-dark) 100%) !important; }

/* Buttons */
.btn-gold {
  --bs-btn-color: var(--pv-surface);
  --bs-btn-bg: var(--pv-gold);
  --bs-btn-border-color: var(--pv-gold);
  --bs-btn-hover-color: var(--pv-surface);
  --bs-btn-hover-bg: var(--pv-gold-light);
  --bs-btn-hover-border-color: var(--pv-gold-light);
  --bs-btn-focus-shadow-rgb: 201, 162, 39;
  --bs-btn-active-color: var(--pv-surface);
  --bs-btn-active-bg: var(--pv-gold-dark);
  --bs-btn-active-border-color: var(--pv-gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.85rem;
  border-radius: 0.5rem;
}

.btn-outline-gold {
  --bs-btn-color: var(--pv-gold);
  --bs-btn-border-color: var(--pv-gold);
  --bs-btn-hover-color: var(--pv-surface);
  --bs-btn-hover-bg: var(--pv-gold);
  --bs-btn-hover-border-color: var(--pv-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.85rem;
  border-radius: 0.5rem;
}

.btn-link-cream {
  color: var(--pv-cream);
  text-decoration: none;
  font-weight: 500;
}

.btn-link-cream:hover {
  color: var(--pv-gold);
}

/* Sections */
.section {
  padding-top: var(--pv-section-padding-y);
  padding-bottom: var(--pv-section-padding-y);
  position: relative;
  overflow: hidden;
}

.section-sm { padding-top: 3rem; padding-bottom: 3rem; }
.section-lg { padding-top: 8rem; padding-bottom: 8rem; }

.section-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}

.section-title span {
  color: var(--pv-gold);
}

.section-subtitle {
  color: var(--pv-cream-muted);
  font-size: 1.15rem;
  max-width: 640px;
  margin-bottom: 3rem;
}

/* Decorative elements */
.deco-line {
  width: 60px;
  height: 4px;
  background: var(--pv-gold);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.deco-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--pv-gold-light), var(--pv-gold-dark));
  opacity: 0.15;
  position: absolute;
  z-index: 0;
}

.deco-ring {
  width: 200px;
  height: 200px;
  border: 2px solid var(--pv-gold);
  border-radius: 50%;
  opacity: 0.2;
  position: absolute;
  z-index: 0;
}

.deco-square {
  width: 80px;
  height: 80px;
  border: 2px solid var(--pv-gold);
  transform: rotate(45deg);
  opacity: 0.15;
  position: absolute;
  z-index: 0;
}

/* Glass cards */
.glass-card {
  background: rgba(16, 21, 36, 0.72);
  border: 1px solid var(--bs-border-color);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.card-gold {
  border-top: 3px solid var(--pv-gold);
}

.card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pv-surface-2);
  border-radius: 1rem;
  color: var(--pv-gold);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

/* Background images with overlay */
.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(11, 15, 25, 0.82), rgba(11, 15, 25, 0.88));
  z-index: 0;
}

.bg-image > .container,
.bg-image > .container-fluid {
  position: relative;
  z-index: 1;
}

/* Overlays */
.overlay-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
  z-index: 0;
}

.overlay-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

/* Header / navbar */
.navbar {
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar.scrolled {
  background-color: rgba(11, 15, 25, 0.96);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.navbar-brand img {
  max-height: 48px;
}

.navbar-brand-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--pv-cream) !important;
  letter-spacing: -0.03em;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--pv-cream-muted);
  font-weight: 500;
  padding-left: 1rem;
  padding-right: 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--pv-gold);
}

.navbar-toggler {
  border-color: rgba(245, 240, 232, 0.2);
  color: var(--pv-cream);
}

.navbar-toggler-icon {
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar {
  background-color: var(--pv-surface);
  border-bottom: 1px solid var(--bs-border-color);
  font-size: 0.85rem;
  color: var(--pv-cream-muted);
}

.topbar i {
  color: var(--pv-gold);
  margin-right: 0.4rem;
}

/* Footer */
.footer {
  background-color: var(--pv-surface);
  border-top: 1px solid var(--bs-border-color);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.footer h5,
.footer .footer-heading {
  color: var(--pv-cream);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.footer a {
  color: var(--pv-cream-muted);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer a:hover {
  color: var(--pv-gold);
  text-decoration: none;
}

.footer .social-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pv-surface-2);
  border: 1px solid var(--bs-border-color);
  border-radius: 50%;
  color: var(--pv-cream);
  margin-right: 0.5rem;
  transition: all 0.2s ease;
}

.footer .social-icon:hover {
  background: var(--pv-gold);
  color: var(--pv-surface);
  border-color: var(--pv-gold);
}

.footer .footer-contact span {
  display: block;
  color: var(--pv-cream-muted);
  margin-bottom: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid var(--bs-border-color);
  padding-top: 1.5rem;
  margin-top: 3rem;
  color: var(--pv-cream-muted);
  font-size: 0.9rem;
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(105deg, rgba(11, 15, 25, 0.92) 0%, rgba(11, 15, 25, 0.6) 60%, rgba(11, 15, 25, 0.2) 100%), url('/images/playmora_0032049c0fe22.38862788.jpg') no-repeat center center/cover;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11, 15, 25, 0.92) 0%, rgba(11, 15, 25, 0.6) 60%, rgba(11, 15, 25, 0.2) 100%);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-title .accent {
  color: var(--pv-gold);
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--pv-cream-muted);
  max-width: 560px;
  margin-bottom: 2rem;
}

/* Stats */
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--pv-gold);
  line-height: 1;
}

.stat-label {
  color: var(--pv-cream-muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Testimonials */
.testimonial-card {
  background: var(--pv-surface-2);
  border: 1px solid var(--bs-border-color);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
}

.stars {
  color: var(--pv-gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pv-gold);
}

/* Partners */
.partner-logo {
  background: var(--pv-surface-2);
  border: 1px solid var(--bs-border-color);
  border-radius: 1rem;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.partner-logo:hover {
  opacity: 1;
}

.partner-logo img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}

/* Payments */
.payment-method {
  background: var(--pv-surface-2);
  border: 1px solid var(--bs-border-color);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.2s ease;
}

.payment-method:hover {
  border-color: var(--pv-gold);
  transform: translateY(-3px);
}

.payment-method i {
  font-size: 2.2rem;
  color: var(--pv-gold);
  margin-bottom: 0.5rem;
  display: block;
}

/* FAQ */
.accordion-item {
  background: var(--pv-surface-2);
  border: 1px solid var(--bs-border-color);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background: var(--pv-surface-2);
  color: var(--pv-cream);
  font-weight: 600;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: var(--pv-surface-2);
  color: var(--pv-gold);
}

.accordion-button::after {
  filter: brightness(0) invert(0.85);
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(0.65) sepia(1) saturate(6) hue-rotate(5deg);
}

.accordion-body {
  color: var(--pv-cream-muted);
}

/* Forms */
.form-control,
.form-select {
  background-color: var(--pv-surface-2);
  border: 1px solid var(--bs-border-color);
  color: var(--pv-cream);
  border-radius: 0.5rem;
  padding: 0.85rem 1rem;
}

.form-control:focus,
.form-select:focus {
  background-color: var(--pv-surface-3);
  border-color: var(--pv-gold);
  color: var(--pv-cream);
  box-shadow: 0 0 0 0.25rem rgba(201, 162, 39, 0.2);
}

.form-control::placeholder {
  color: var(--pv-cream-muted);
  opacity: 0.6;
}

.form-label {
  color: var(--pv-cream-muted);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-notification {
  display: none !important;
}

.form-notification.show {
  display: block !important;
}

/* Pricing / comparison */
.pricing-card {
  background: var(--pv-surface-2);
  border: 1px solid var(--bs-border-color);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: all 0.25s ease;
}

.pricing-card.featured {
  border-color: var(--pv-gold);
  box-shadow: 0 0 30px rgba(201, 162, 39, 0.12);
}

.pricing-card .price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--pv-gold);
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--bs-border-color);
}

.comparison-table th {
  color: var(--pv-gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  background: var(--pv-surface-2);
}

.comparison-table td {
  color: var(--pv-cream-muted);
}

.comparison-table tr:hover td {
  background: var(--pv-surface-2);
  color: var(--pv-cream);
}

/* Cookie banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  background: var(--pv-surface);
  border-top: 1px solid var(--bs-border-color);
  padding: 1.25rem 0;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

#cookie-banner.show {
  transform: translateY(0);
}

/* Blog */
.blog-card {
  background: var(--pv-surface-2);
  border: 1px solid var(--bs-border-color);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--pv-gold);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Gallery */
.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(11, 15, 25, 0.95));
  color: var(--pv-cream);
}

/* Process step */
.process-step {
  display: flex;
  gap: 1.25rem;
}

.step-number {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--pv-gold);
  color: var(--pv-gold);
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: 50%;
}

/* Utility spacers */
.py-6 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.py-7 { padding-top: 5.5rem !important; padding-bottom: 5.5rem !important; }
.pt-7 { padding-top: 5.5rem !important; }
.pb-7 { padding-bottom: 5.5rem !important; }

/* Responsive */
@media (max-width: 991.98px) {
  .section { padding-top: 4rem; padding-bottom: 4rem; }
  .section-hero { min-height: auto; padding-top: 8rem; padding-bottom: 5rem; }
  .hero-title { font-size: 2.6rem; }
  .topbar .topbar-info { justify-content: center !important; }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link { padding-left: 0.9rem; padding-right: 0.9rem; }
}
