/* ================================
   HOME – LUXURY EDITORIAL (FIXED)
================================ */

/* ================================
   SCROLLBAR LAYOUT SHIFT FIX
================================ */

html {
  /* Allow normal vertical scrolling */
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  /* Fix Swiper layout shift - only block horizontal */
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ================================
     SWIPER LAYOUT SHIFT FIXES
  ================================ */

.swiper {
  /* Allow page scroll but contain slides */
  overflow: hidden;
  width: 100%;
  position: relative;
}

.swiper-wrapper {
  /* Prevent layout shift */
  width: 100%;
  position: relative;
}

.heroSwiper {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.modelsSwiper,
.testimonialSwiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* ================================
     HERO – FULL CENTER
  ================================ */

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* TRUE CENTERING - Fixed z-index */
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  /* Light overlay for 'open colors' feel */
  background: linear-gradient(to bottom, rgba(240, 240, 240, 0.2), rgba(240, 240, 240, 0.6));
}

.video-overlay {
  /* Removed dark overlay */
  display: none;
}

/* Text block */
.hero-content {
  text-transform: uppercase;
  max-width: 900px;
  /* Widened for German text consistency */
  text-align: center;
  padding: 0 6vw;
  margin: 0 auto;
  animation: fadeUp 2s ease-out forwards;
  animation-delay: 0.1s;
}

.hero-content h1 span {
  font-family: var(--font-ui);
  color: var(--gold);
}

.hero-logo {
  width: clamp(220px, 40vw, 320px);
  /* Responsive size */
  max-width: 90%;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
  animation: fadeUp 1s ease forwards;
  /* Bold effect + Brighter as per user request */
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.4)) brightness(1.35) contrast(1.1);
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.5vw, 80px);
  line-height: 1.15;
  font-weight: 600;
  max-width: 900px;
  margin: 0 auto;
  color: #1a1a1a;
  /* Explicit dark text */
}

.hero-content .tagline {
  margin-top: clamp(20px, 4vw, 28px);
  font-family: var(--font-serif);
  font-size: clamp(14px, 2.5vw, 18px);
  letter-spacing: 0.14em;
  color: #333333;
  /* Darker than gray for legibility */
  font-weight: 400;
  text-transform: uppercase;
}

.hero-content .motto {
  margin: 22px auto 0;
  font-size: 16px;
  color: #333333;
  max-width: 520px;
}

.hero-content .cta {
  margin-top: 56px;
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  transition: all 0.4s ease;
  font-weight: 300;
}

.hero-content .cta:hover {
  color: var(--white);
  border-bottom-color: var(--white);
  letter-spacing: 0.6em;
}


/* ================================
       ABOUT – EDITORIAL
    ================================ */

/* ================================
       ABOUT – EDITORIAL
    ================================ */

.about {
  background: var(--bg-body);
  text-align: center;
}

.about-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  font-size: 44px;
  margin-bottom: 40px;
  text-align: center;
  color: var(--text-body);
}

.about-content>p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--gray);
  text-align: center;
  margin: 0 auto;
  max-width: 680px;
}

/* Stats – text only */
.about-stats {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
}

.stat {
  background: none;
  padding: 0;
  text-align: center;
}

.stat h3 {
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 12px;
}

.stat p {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-body);
  font-weight: 300;
  margin-top: 8px;
}

/* About Text Columns/Layout */
.about-text-cols p {
  margin: 0 auto 1.5rem auto;
  /* Center the block itself */
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 800px;
  /* Constrain width for readability line length */
  text-align: center;
  /* Center the text content */
}

.about-taglines {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 2rem;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-taglines p {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  margin: 0;
}

.about-taglines i {
  font-size: 0.8rem;
  margin-right: 10px;
  opacity: 0.7;
}

/* Responsive adjustments */
/* Responsive adjustments */
@media (min-width: 768px) {
  .about-text-cols {
    /* Optional specific desktop adjustments if needed */
    max-width: 100%;
  }
}


/* ================================
       MODELS – PREMIUM CARDS
    ================================ */

.models-preview {
  padding: 6rem 0;
  background: #e6e6e6;
  text-align: center;
}

.models-preview h2 {
  font-size: 48px;
  margin-bottom: 80px;
  text-align: center;
  color: var(--text-body);
}

/* Premium Model Card Design */
.model-card {
  background: #e6e6e6;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.model-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
}

.model-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  /* Square cards */
  overflow: hidden;
  background: #f5f5f5;
}

.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.model-card:hover .model-image img {
  transform: scale(1.05);
}

/* Overlay hidden */
.model-overlay {
  display: none;
}



.view-btn {
  display: none;
}

/* Card Info Section */
.model-info {
  padding: 1.5rem;
  text-align: center;
  background: #e6e6e6;
}

.model-info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-body);
  font-weight: 400;
}

.model-info p {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.model-info .location {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
  font-style: italic;
}

/* ================================
       TESTIMONIALS – CLASSY CARDS
    ================================ */

.testimonials {
  padding: 8rem 2rem;
  background: #e6e6e6;
  text-align: center;
}

.testimonials h2 {
  font-size: 3rem;
  margin-bottom: 4rem;
  text-align: center;
  color: var(--text-body);
}

.testimonial-card {
  max-width: 750px;
  margin: 0 auto 2rem;
  text-align: center;
  padding: 3rem 2.5rem;
  background: #e6e6e6;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  position: relative;
}

.testimonial-image {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
}

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

.testimonial-content .stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
}

.review {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.7;
  color: #333;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.client-name {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ================================
       REGIONS – TEXT GRID
    ================================ */

.regions {
  background: var(--bg-body);
  text-align: center;
}

.regions h2 {
  font-size: 44px;
  margin-bottom: 80px;
  text-align: center;
  color: var(--text-body);
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
}

.region-card {
  background: none;
  padding: 0;
  text-align: center;
}

.region-card h3 {
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--text-body);
}

.region-card p {
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.region-icon {
  display: none;
}

/* ================================
       CTA – FASHION FOOTER STRIP
    ================================ */

/* ================================
       CTA – FASHION FOOTER STRIP
    ================================ */

.cta-section {
  background: #e6e6e6;
  text-align: center;
  border-top: 1px solid rgba(245, 176, 65, 0.3);
  border-bottom: 1px solid rgba(245, 176, 65, 0.3);
}

.cta-section h2 {
  font-size: 46px;
  margin-bottom: 18px;
  text-align: center;
  color: var(--text-body);
}

.cta-section p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 50px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}

.cta-section .cta {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  transition: all 0.4s ease;
  font-weight: 300;
}

.cta-section .cta:hover {
  color: var(--white);
  border-bottom-color: var(--white);
  letter-spacing: 0.6em;
}

/* ================================
       RESPONSIVE – CONTROLLED
    ================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: clamp(44px, 6vw, 72px);
  }

  .about-stats,
  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .about h2,
  .models-preview h2,
  .testimonials h2,
  .regions h2 {
    font-size: 38px;
  }
}

/* Mobile Title - Hidden by default */
.hero-title-mobile {
  display: none;
}

/* Mobile – editorial reading */
@media (max-width: 768px) {
  .hero-content .hero-title-mobile {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 0px;
    line-height: 1;
  }

  .hero {
    height: 50vh;
    min-height: 350px;
  }

  .hero-overlay {
    justify-content: center;
    align-items: center;
  }

  .hero-content {
    padding: 0 6vw;
    text-align: center;
  }

  .hero-logo {
    display: none;
  }

  .hero-content .tagline {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-top: 0;
    letter-spacing: 0.1em;
  }



  .hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
    max-width: 100%;
  }

  .hero-content .motto {
    margin-left: 0;
    text-align: left;
  }

  .about-stats,
  .regions-grid {
    grid-template-columns: 1fr;
  }

  .stat,
  .region-card {
    text-align: center;
  }

  .about {
    text-align: center;
  }

  .about-content {
    text-align: center;
  }

  .about h2,
  .models-preview h2,
  .testimonials h2,
  .regions h2,
  .cta-section h2 {
    font-size: 32px;
    text-align: center;
    /* Keep headings centered on mobile */
  }

  .about-content>p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-section {
    text-align: center;
  }

  .cta-section p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-card {
    text-align: center;
  }

  /* Hide swiper arrows on mobile - users can swipe */
  .swiper-button-next,
  .swiper-button-prev,
  .models-preview .swiper-button-next,
  .models-preview .swiper-button-prev,
  .testimonials .swiper-button-next,
  .testimonials .swiper-button-prev {
    display: none !important;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 32px;
    line-height: 1.25;
  }

  .hero-content .tagline {
    font-size: 10px;
    letter-spacing: 0.35em;
  }

  .about-content>p,
  .review,
  .cta-section p {
    font-size: 15px;
  }

  .about-content>p {
    text-align: left;
  }

  .models-preview,
  .testimonials,
  .regions {
    text-align: left;
  }
}

/* WhatsApp Floating Button */
.whatsapp {
  position: fixed;
  /* Stays in place when scrolling */
  width: 60px;
  height: 60px;
  bottom: 20px;
  /* Distance from bottom */
  right: 20px;
  /* Distance from right */
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp:hover {
  transform: scale(1.1);
}

.whatsapp i {
  line-height: 60px;
  /* Centers the WhatsApp icon */
}

/* ================================
   SWIPER PAGINATION FIX
================================ */
.swiper-pagination {
  position: absolute;
  bottom: 20px !important;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.swiper-pagination-bullet {
  background: rgba(212, 175, 55, 0.4);
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--gold);
  transform: scale(1.2);
}

/* Add padding to swiper containers to prevent overlap */
.models-preview .swiper,
.testimonials .swiper {
  padding-bottom: 60px;
}

/* ================================
   GOLD SECTION HEADINGS
================================ */
.about h2,
.models-preview h2,
.testimonials h2,
.regions h2,
.cta-section h2 {
  color: var(--gold);
}

/* ================================
   MODEL MODAL (PREMIUM POPUP)
================================ */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modal.active {
  display: flex !important;
  opacity: 1;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #e6e6e6;
  margin: auto;
  padding: 0;
  border: 1px solid var(--gold);
  width: 90%;
  max-width: 900px;
  position: relative;
  border-radius: 4px;
  animation: modalFadeIn 0.5s cubic-bezier(0.2, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #1a1a1a;
  font-size: 35px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s;
}

.close-modal:hover {
  color: var(--gold);
}

.modal-body {
  display: flex;
  flex-direction: row;
}

.modal-image-container {
  flex: 1;
  max-width: 45%;
  background: #e6e6e6;
  position: relative;
  overflow: hidden;
}

/* Swiper in Modal */
.modelModalSwiper {
  width: 100%;
  height: 100%;
}

.modelModalSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.modelModalSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Swiper Navigation for Modal */
.modelModalSwiper .swiper-button-next,
.modelModalSwiper .swiper-button-prev {
  color: var(--gold);
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.modelModalSwiper .swiper-button-next:after,
.modelModalSwiper .swiper-button-prev:after {
  font-size: 18px;
}

.modelModalSwiper .swiper-pagination {
  bottom: 10px;
}

.modelModalSwiper .swiper-pagination-bullet {
  background: rgba(212, 175, 55, 0.5);
}

.modelModalSwiper .swiper-pagination-bullet-active {
  background: var(--gold);
}

.modal-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-text {
  flex: 1.2;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-text h2 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.modal-specs {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 1rem;
}

.modal-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.detail {
  display: flex;
  flex-direction: column;
}

.detail .label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.2rem;
}

.detail span:not(.label) {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: #1a1a1a;
  font-weight: 500;
}

.modal-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 3rem;
  font-style: italic;
}

.modal-text .cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--gold);
}

.modal-text .cta-btn:hover {
  background: transparent;
  color: var(--gold);
}

/* Modal Responsive */
@media (max-width: 768px) {
  .modal-body {
    flex-direction: column;
  }

  .modal-image-container {
    max-width: 100%;
    height: 400px;
  }

  .modal-text {
    padding: 2rem;
  }

  .modal-text h2 {
    font-size: 2.2rem;
  }

  .modal-details {
    margin-bottom: 1.5rem;
  }

  .modal-description {
    margin-bottom: 2rem;
  }
}