/*
 * Escort Agentur Berlin: Custom Design
 * DESIGN_VARIANCE: 7 | MOTION_INTENSITY: 4 | VISUAL_DENSITY: 3
 */

/* ============================================================
   TOKENS
   ============================================================ */

:root {
  --primary:       #c0536a;
  --primary-dark:  #9b3f54;
  --primary-light: #e0a0ae;
  --ivory:         #faf8f6;
  --dark:          #0f1014;
  --dark-2:        #191b22;
  --dark-3:        #22242d;
  --text:          #2c2c2c;
  --text-muted:    #6b6b6b;
  --bg-light:      #f6f4f2;
  --border:        #e5e1dd;
  --white:         #ffffff;
  --radius:        4px;
  --radius-lg:     8px;
  --transition:    0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   BASE
   ============================================================ */

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: var(--dark);
  background-image:
    radial-gradient(ellipse at 15% 0%, rgba(192, 83, 106, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(192, 83, 106, 0.06) 0%, transparent 50%);
  background-attachment: fixed;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--text);
  min-height: 100vh;
}

img {
  max-width: 100%;
}

/* ============================================================
   BOXED LAYOUT
   ============================================================ */

.boxed-page {
  margin: 3.5rem auto;
  position: relative;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

@media (min-width: 1200px) {
  .boxed-page {
    width: 1080px;
  }
  .boxed-page .container {
    max-width: 1080px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .boxed-page {
    margin-right: 30px;
    margin-left: 30px;
  }
}

@media (max-width: 767px) {
  .boxed-page {
    margin: 0;
    border-radius: 0;
  }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1 { font-size: 4.8rem; }
h2 { font-size: 3.6rem; }
h3 { font-size: 2.8rem; }
h4 { font-size: 2.2rem; }
h5 { font-size: 1.8rem; }
h6 { font-size: 1.6rem; }

h1, h2, h3 {
  font-weight: 300;
  line-height: 1.25em;
  color: var(--dark);
}

h4, h5, h6 {
  font-weight: 400;
  line-height: 1.5em;
  color: var(--dark);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Work Sans', sans-serif;
  margin-top: 0;
}

p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.8em;
  color: #484848;
}

.title-wrap ul:not(.feature-list):not(.price-box-list) {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 2.4rem;
}

.title-wrap ul:not(.feature-list):not(.price-box-list) li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 1.6rem;
  line-height: 1.7em;
  color: #484848;
}

.title-wrap ul:not(.feature-list):not(.price-box-list) li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

/* ============================================================
   LINKS & BUTTONS
   ============================================================ */

a {
  color: var(--primary);
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

a:focus,
button:focus {
  outline: none;
}

.btn {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 1rem 2.6rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.btn:not(.btn-link):active {
  transform: translateY(1px);
}

.btn:not(.btn-link):hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}

.btn-outline {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.btn-link {
  color: var(--primary);
  padding: 0;
  font-size: 1.5rem;
  text-transform: none;
  letter-spacing: 0;
}

.btn-link:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.btn-lg {
  padding: 1.2rem 3.2rem;
  font-size: 1.5rem;
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 1.3rem;
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: var(--text);
  background-color: #fff;
  border: 1px solid var(--border);
}

/* ============================================================
   UTILITY
   ============================================================ */

.bg-white    { background-color: #fff; }
.bg-grey     { background-color: var(--bg-light); }
.bg-dark-alt { background-color: var(--dark-2); }

.color-primary { color: var(--primary); }
.text-muted-custom { color: var(--text-muted); }

.fs-40 { font-size: 4rem; }

.section-content {
  padding-top: 72px;
  padding-bottom: 72px;
}

@media (max-width: 767px) {
  .section-content {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

/* Section title: default centered */
.section-title,
.section-sub-title {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 18px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background: var(--primary);
}

/* Left-aligned variant: inside .title-wrap */
.title-wrap {
  text-align: left;
}

.title-wrap .section-title {
  text-align: left;
}

.title-wrap .section-title::after {
  left: 0;
  transform: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

#gtco-header-navbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding-top: 18px;
  padding-bottom: 18px;
  background: linear-gradient(to bottom, rgba(8, 8, 12, 0.70) 0%, transparent 100%);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar-brand {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.90);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.navbar-brand:hover {
  color: var(--primary-light);
}

.navbar-nav .nav-link {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.80);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-left: 1.2rem !important;
  padding-right: 1.2rem !important;
  transition: color var(--transition);
}

.navbar-nav .nav-link:hover {
  color: #fff;
}

.navbar-nav .nav-item.active .nav-link {
  color: var(--primary-light);
}

.navbar-nav:hover li a {
  opacity: 0.55;
}

.navbar-nav:hover li a:hover {
  opacity: 1;
}

.navbar-toggler {
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.85);
  border: none;
  padding: 0.3rem 0.5rem;
}

.navbar-toggler:focus {
  outline: none;
}

/* Sticky nav on scroll */
.not-on-top #gtco-header-navbar {
  position: fixed;
  max-width: 1080px;
  margin: 0 auto;
  left: 0;
  right: 0;
  background: rgba(12, 12, 18, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
  border-radius: 0;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .not-on-top #gtco-header-navbar {
    margin-right: 30px;
    margin-left: 30px;
  }
}

@media (max-width: 992px) {
  #gtco-header-navbar {
    background: rgba(8, 8, 12, 0.92);
    padding-left: 16px;
    padding-right: 16px;
  }

  #navbar-nav-header .navbar-nav {
    margin-top: 8px;
    padding-bottom: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 12px;
    padding-top: 12px;
  }

  #navbar-nav-header .navbar-nav .nav-link {
    padding-left: 4px !important;
  }

  .not-on-top #gtco-header-navbar {
    margin-right: 0;
    margin-left: 0;
  }
}

/* ============================================================
   HERO
   ============================================================ */

.jumbotron {
  background-color: var(--dark);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  border-radius: 0;
  margin-bottom: 0;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 130px 0 88px;
}

@media (min-width: 1024px) {
  .jumbotron {
    min-height: 62vh;
  }
}

/* Dark cinematic overlay, slightly warmer on the left */
.jumbotron::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(6, 5, 10, 0.82) 0%,
      rgba(20, 8, 14, 0.68) 55%,
      rgba(6, 5, 10, 0.42) 100%
    );
  z-index: 1;
}

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

/* Left-aligned hero: DESIGN_VARIANCE 7 */
.jumbotron .hero-inner {
  max-width: 640px;
}

.jumbotron .hero-accent {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--primary);
  margin-bottom: 2.4rem;
}

.jumbotron h1 {
  color: #fff;
  font-size: 4.2rem;
  font-weight: 300;
  line-height: 1.22em;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  margin-bottom: 1.6rem;
}

.jumbotron p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.65em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
  margin-bottom: 2.8rem;
  max-width: 460px;
}

.jumbotron .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Single layout variant */
.single-layout .jumbotron::before {
  background: linear-gradient(
    110deg,
    rgba(6, 5, 10, 0.90) 0%,
    rgba(20, 8, 14, 0.82) 100%
  );
}

@media (max-width: 767px) {
  .jumbotron h1 {
    font-size: 3rem;
  }
  .jumbotron p {
    font-size: 1.55rem;
    max-width: 100%;
  }
  .jumbotron {
    padding: 110px 0 64px;
    min-height: auto;
  }
}

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */

section {
  position: relative;
}

/* Lead paragraph: slightly larger */
.text-lead {
  font-size: 1.8rem;
  line-height: 1.7em;
  color: #3c3c3c;
}

/* Inline links in body text */
.title-wrap a {
  color: var(--primary);
  font-weight: 400;
  border-bottom: 1px solid rgba(192, 83, 106, 0.3);
  transition: border-color var(--transition), color var(--transition);
}

.title-wrap a:hover {
  color: var(--primary-dark);
  border-color: var(--primary-dark);
  text-decoration: none;
}

/* Feature list: simple list with emoji markers */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 2.4rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  font-size: 1.6rem;
  line-height: 1.6em;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list .feature-emoji {
  flex-shrink: 0;
  font-size: 1.9rem;
  line-height: 1.6em;
}

.feature-list strong {
  color: var(--dark);
  font-weight: 400;
  font-family: 'Work Sans', sans-serif;
}

/* Subtle separator between sections */
section.bg-grey {
  border-top: 1px solid var(--border);
}

/* ============================================================
   PORTFOLIO / GRID (Models)
   ============================================================ */

.filter-button-group {
  margin-bottom: 24px;
}

.filter-button-group a {
  display: inline-block;
  margin: 4px;
  cursor: pointer;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 7px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.filter-button-group a:hover,
.filter-button-group a.active {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(192, 83, 106, 0.05);
}

.grid-link a {
  margin: 5px;
  font-size: 1.8rem;
  color: var(--dark);
  transition: color var(--transition);
}

.grid-link a:hover {
  color: var(--primary);
}

.grid-portfolio {
  overflow: hidden;
}

.gutter-sizer { width: 2%; }

.grid-sizer,
.grid-item { width: 32%; }

.grid-item {
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow var(--transition), transform var(--transition);
}

.grid-item:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

.grid-item:hover .grid-info {
  top: 50%;
  opacity: 1;
}

.grid-item-wrapper {
  position: relative;
}

.grid-item-wrapper::before {
  content: '';
  display: block;
  background: rgba(10, 8, 14, 0.48);
  position: absolute;
  inset: 0;
  transition: opacity var(--transition);
  opacity: 0;
  z-index: 1;
}

.grid-item-wrapper:hover::before {
  opacity: 1;
}

.grid-info {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all var(--transition);
  z-index: 2;
}

.grid-title {
  text-align: center;
}

.lightcase-icon-close::before {
  content: '\e870';
  font-family: "Linearicons-Free";
}

@media (max-width: 767px) {
  .grid-sizer,
  .grid-item { width: 100%; }
}

/* ============================================================
   BLOG
   ============================================================ */

.blog-item {
  background-color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
}

.blog-item:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.11);
  transform: translateY(-3px);
}

.bg-grey .blog-item {
  background-color: #fff;
}

.blog-item-wrapper {
  margin-bottom: 30px;
}

.blog-img {
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.04);
}

.blog-text {
  padding: 20px 22px 18px;
}

.blog-title h4 {
  color: var(--dark);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.35em;
  margin-bottom: 10px;
}

.blog-tag {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}

.blog-meta {
  color: var(--text-muted);
}

.blog-meta p {
  display: inline-block;
  font-size: 1.3rem;
  margin-bottom: 0;
}

.blog-meta a {
  color: var(--text-muted);
}

.blog-author {
  display: inline-block;
  color: var(--text-muted);
}

.blog-author p {
  font-size: 1.3rem;
  margin-bottom: 0;
}

.blog-share-wrapper {
  float: right;
  display: inline-block;
  margin: 0 -5px;
}

.blog-share-wrapper .blog-share {
  padding: 0 5px;
  cursor: pointer;
}

.blog-content {
  font-size: 1.65rem;
  line-height: 1.85em;
}

.blog-content h2,
.blog-content h3 {
  margin-top: 2.4rem;
  margin-bottom: 1.2rem;
}

.blog-content img.float-left  { margin: 15px 20px 15px 0; }
.blog-content .img.float-right { margin: 15px 0 15px 20px; }

/* ============================================================
   COUNTER
   ============================================================ */

#gtco-counter {
  position: relative;
}

.counter-item {
  text-align: center;
  z-index: 1;
  color: #fff;
}

.counter-item > i {
  display: block;
  font-size: 3.4rem;
  margin-bottom: 10px;
  color: var(--primary-light);
}

.counter-item .number {
  font-size: 5.4rem;
  font-weight: 300;
  display: block;
  font-family: 'Work Sans', sans-serif;
  line-height: 1em;
}

.counter-item h4 {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: 1.3rem;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 767px) {
  .counter-item {
    margin-bottom: 40px;
  }
  .counter-item:last-child {
    margin-bottom: 0;
  }
}

/* ============================================================
   PRICING
   ============================================================ */

.box-shadow {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

.price-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition);
}

.price-box:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
}

.price-box .card-header {
  background-color: transparent;
  border-bottom: 1px solid var(--border);
  padding: 22px 24px 18px;
}

.price-box small {
  font-size: 60%;
}

.price-box .price-box-list {
  min-height: 150px;
}

.price-box .tier-label {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.3rem;
  color: var(--primary);
}

.price-box.featured {
  border-color: var(--primary);
}

/* ============================================================
   FORMS
   ============================================================ */

.form-control {
  font-size: 1.55rem;
  margin-bottom: 16px;
  height: 44px;
  font-weight: 300;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  color: var(--text);
  background-color: #fafafa;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(192, 83, 106, 0.14);
  background-color: #fff;
}

.form-control::placeholder {
  opacity: 0.42;
  color: var(--text-muted);
}

textarea.form-control {
  height: auto;
  padding-top: 10px;
}

#gtco-contact-form form label.error {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 1.3rem;
}

#form-message-warning,
#form-message-success {
  display: none;
}

/* Select2 */
.select2-container--default .select2-selection--single {
  height: 44px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  background-color: #fafafa;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 44px;
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--text);
  padding-left: 12px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 44px;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(192, 83, 106, 0.14);
}

/* ============================================================
   FOOTER
   ============================================================ */

footer.mastfoot {
  background-color: var(--dark-2) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  padding: 28px 0 !important;
}

footer.mastfoot .nav-link {
  font-family: 'Work Sans', sans-serif;
  color: rgba(255, 255, 255, 0.48);
  font-size: 1.2rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 14px;
  transition: color var(--transition);
}

footer.mastfoot .nav-link:hover {
  color: var(--primary-light);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.28);
  font-size: 1.3rem;
}

@media (max-width: 767px) {
  footer.mastfoot {
    border-radius: 0;
    padding: 24px 0 !important;
  }

  footer.mastfoot .col-md-6:first-child {
    margin-bottom: 12px;
    justify-content: center !important;
  }

  .section-title br,
  .section-sub-title br {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE MISC
   ============================================================ */

@media (max-width: 767px) {
  .card-deck {
    flex-direction: column;
  }
}
