/* Front page section styles - extracted from front-page.php */
/* Base styles for all sections */
section:not(.hero-section) {
    color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
    margin: 2rem 0;
}

/* Base Styles & Variables */
:root {
    --primary-color: #EC1B61;
    --primary-dark: #d01456;
    --secondary-color: #222;
    --text-color: #333;
    --light-color: #fff;
    --accent-color: #FFC0CB;
    --dark-bg: #121212;
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    --gradient-light: linear-gradient(135deg, #f6f6f6 0%, #eaeaea 100%);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-subtle: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px; /* Match slider container width */
    margin: 0 auto;
    padding: 0 1rem; /* Reduced padding to give more space */
    position: relative;
    z-index: 10;
}

/* Typography */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #FFFFFF !important; /* Changed from inherit to white */
    position: relative;
    padding-bottom: 1rem;
}

.dark-mode-section .section-title {
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

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

/* Parallax Base */
.parallax-container {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    perspective: 1000px;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    will-change: transform;
}

.bg-layer {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.content-layer {
    z-index: 10;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
}

.dark-layer {
    background-color: var(--dark-bg);
    background-image: var(--gradient-dark);
}

.light-layer {
    background-color: var(--light-color);
    background-image: var(--gradient-light);
}

.pattern-layer {
    background-color: #f5f5f5;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ec1b61' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.gradient-layer {
    background: linear-gradient(135deg, rgba(236, 27, 97, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
}

/* Hero Section */
.hero-section {
    color: var(--light-color);
    background-image: url('https://customfetishvideos.com/wp-content/themes/cfv2025/images/personal-porn-studio.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 1rem;
    z-index: 1; /* Ensure it sits above the background */
}

.hero-section .hero-content {
    margin-top: 0; /* Removed extra spacing above logo */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1; /* Ensure it sits behind content but above the pattern */
}

.hero-content {
    max-width: 1400px; /* Increased to match container */
    padding: 3rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

/* Hero Video Preview Section */
.hero-video-preview {
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
}

/* Remove text decoration from all links and elements in the preview section */
.hero-video-preview a,
.hero-video-preview a:hover,
.hero-video-preview a:focus,
.hero-video-preview a *,
.hero-video-preview a:hover *,
.hero-video-preview a:focus * {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Hide slick dots in the hero preview section */
.hero-video-preview .slick-dots {
    display: none !important;
}


.preview-title {
    color: var(--light-color);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 0.5rem; /* Reduced from 1.5rem to remove 40px */
    position: relative;
}

/* All preview video slider styles moved to external CSS file: video-slider-overlay.css */

/* Section z-indexes to work with background pattern */
section {
    position: relative;
    z-index: 1;
    background-color: transparent;
}

/* Content sections with background color to contrast with pattern */
.introduction-section {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 2rem 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.introduction-section .container {
    max-width: 1400px; /* Match the logo section width */
    width: 100%;
    padding: 2rem;
}

.content-section {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
}

.philosophy-section {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 3rem 0;
    border-top: 3px solid rgba(236, 27, 97, 0.5);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.request-form-section {
    padding: 4rem 0;
    border-top: 3px solid rgba(236, 27, 97, 0.3);
    position: relative;
    background-image: url('https://customfetishvideos.com/wp-content/themes/cfv2025/images/fetish-porn-fantasy.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%;
}

.video-carousel-section {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 2rem 0;
}

.talent-carousel-section {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 3rem 0;
    border-top: 3px solid rgba(236, 27, 97, 0.5);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.blog-grid-section {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 3rem 0;
    border-top: 3px solid rgba(236, 27, 97, 0.5);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

/* Client Portal Section */
.client-portal-section {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 4rem 0;
    margin-top: 4rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-image: url('/images/portal.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.client-portal-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 0;
}

.client-portal-section .container {
    max-width: 1400px;
    position: relative;
    z-index: 1;
}

.client-portal-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.login-box {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 2.5rem;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(236, 27, 97, 0.3);
}

.login-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.login-description {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2rem;
}

.client-login-form .form-group {
    margin-bottom: 1.5rem;
}

.client-login-form input[type="text"],
.client-login-form input[type="password"] {
    width: 100%;
    padding: 1.2rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.client-login-form input[type="text"]:focus,
.client-login-form input[type="password"]:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(236, 27, 97, 0.3);
}

.client-login-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me label {
    display: flex;
    align-items: center;
    color: white;
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

.login-button {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(236, 27, 97, 0.3);
}

.login-links {
    margin-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.login-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-links a:hover {
    color: var(--primary-color);
}

.login-links .separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
}

/* Removed hover overlay effect to prevent overflow issues */

.cta-button.primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.cta-button.secondary {
    background-color: rgba(236, 27, 97, 0.3);
    color: var(--light-color);
    border: 2px solid #EC1B61;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.cta-button.secondary:hover {
    background-color: rgba(236, 27, 97, 0.5);
    box-shadow: 0 0 15px rgba(236, 27, 97, 0.4);
}

/* Request Form Section */
.request-form-section {
    background-image: url('https://customfetishvideos.com/wp-content/themes/cfv2025/images/fetish-porn-fantasy.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.request-form-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.request-form-section .container {
    position: relative;
    z-index: 1;
}

.request-form-section .content-layer {
    min-height: 80vh;
}

.promo-bubble {
    max-width: 100%;
    margin: 0 auto 2rem;
    background-color: rgba(236, 27, 97, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(236, 27, 97, 0.5);
    text-align: center;
    font-size: 1.2rem;
    color: #FFFFFF;
    line-height: 1.6;
}

.promo-bubble .highlight {
    font-weight: 600;
    color: #EC1B61;
}

.promo-bubble .promo-link {
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: none;
    background-color: rgba(236, 27, 97, 0.8);
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.promo-bubble .promo-link:hover {
    background-color: rgba(236, 27, 97, 1);
    box-shadow: 0 0 10px rgba(236, 27, 97, 0.5);
    transform: translateY(-2px);
}

.client-promo {
    background-color: rgba(236, 27, 97, 0.15);
    border: 1px solid rgba(236, 27, 97, 0.5);
    margin-bottom: 3rem;
}

.talent-promo {
    background-color: rgba(236, 27, 97, 0.15);
    border: 1px solid rgba(236, 27, 97, 0.5);
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blog-promo {
    background-color: rgba(236, 27, 97, 0.15);
    border: 1px solid rgba(236, 27, 97, 0.5);
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.fantasy-form-container {
    max-width: 800px;
    margin: 0 auto !important;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(236, 27, 97, 0.3);
}

.fantasy-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-column {
    display: block;
}

.full-width {
    width: 100%;
}

.fantasy-form input,
.fantasy-form select {
    width: 100%;
    height: 3rem; /* Reduced height */
    padding: 0 1.2rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-subtle);
    font-family: var(--font-primary);
    display: block;
}

.fantasy-form textarea {
    width: 100%;
    min-height: 120px;
    padding: 0.75rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-subtle);
    font-family: var(--font-primary);
    line-height: 1.5;
    display: block;
    resize: vertical;
}

.fantasy-form input[type="file"] {
    padding: 0.5rem 0;
    height: 3rem;
}

.fantasy-form input:focus,
.fantasy-form textarea:focus,
.fantasy-form select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(236, 27, 97, 0.3);
    background-color: rgba(255, 255, 255, 0.2);
}

/* Moved textarea styles to the main input styles block */

.fantasy-form input::placeholder,
.fantasy-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.fantasy-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 3rem;
}

.fantasy-form label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #FFFFFF;
    flex-shrink: 0; /* Prevent label from shrinking */
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 0.5rem;
    width: auto;
}

.sub-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 0.5rem;
}

.sub-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: block;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.submit-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease-out;
    z-index: -1;
}

.submit-button:hover::after {
    transform: translate(-50%, -50%) scale(15);
}

.submit-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}
@media (max-width: 768px) {
  /* Fix logo overflow causing page drag */
  .logo, .site-logo, img[src*="logo"], header img {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
  }

  .fixed-bg,
  .parallax,
  .hero-section,
  body {
    background-attachment: scroll !important;
  }

  .glass,
  .blur,
  .fantasy-form-container,
  .promo-bubble,
  .backdrop-filter-element {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background-color: rgba(0,0,0,0.7); /* Optional fallback */
  }
}


/* Sliders Base Styles */
.video-slider,
.talent-slider,
.blog-slider {
    margin: 0 -15px;
    padding: 15px;
}

.slick-slide {
    padding: 15px;
    transition: var(--transition);
}

.slick-list {
    margin: 0 -15px;
    overflow: hidden; /* Changed from visible to hidden to hide off-screen slides */
}

/* Special styling for talent slider */
.talent-slider .slick-list {
    overflow: hidden; /* Hide off-screen slides for talent slider */
}

/* Styling for talent slider */
.talent-slider .slick-slide {
    transition: all 0.3s ease;
    opacity: 1;
}

/* Add a bit of margin between talent slides */
.talent-slider .talent-card {
    margin: 0 5px;
    height: 100%;
}

/* Set equal height for talent slides */
.talent-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.talent-slider .slick-slide {
    height: auto;
}

.talent-slider .slick-slide > div {
    height: 100%;
}

.slick-track {
    display: flex;
}

/* Slick dots hidden for cleaner design */
.slick-dots {
    display: none !important;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

.slick-prev {
    left: -24px;
}

.slick-next {
    right: -24px;
}

.slick-arrow:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-strong);
}

.slick-arrow:focus {
    outline: none;
}

.slick-arrow.slick-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Video Carousel Section */
.video-carousel-section {
    color: var(--light-color);
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    margin: 2rem 0;
    padding: 2rem 0;
    border-radius: 10px;
}

.video-carousel-section .content-layer {
    min-height: 100vh;
}

.video-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
    height: 100%;
    transform: translateY(0);
	border-radius: 8px;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.video-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.video-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.play-icon {
    transform: scale(0.8);
    transition: var(--transition);
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.video-card:hover .play-icon {
    transform: scale(1);
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-meta {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Category Carousel Styles */
/* Hide slides until slick is initialized to prevent FOUC (Flash of Unstyled Content) */
.video-slider:not(.slick-initialized),
.category-slider:not(.slick-initialized),
.talent-slider:not(.slick-initialized),
.blog-slider:not(.slick-initialized),
.preview-video-slider:not(.slick-initialized) {
    visibility: hidden;
    height: 350px; /* Set a fixed height to prevent layout shift */
    position: relative;
    overflow: hidden;
}

/* Hide individual slides except the first one until initialization */
.video-slider:not(.slick-initialized) .video-slide:not(:first-child),
.category-slider:not(.slick-initialized) .category-slide:not(:first-child),
.talent-slider:not(.slick-initialized) .talent-slide:not(:first-child),
.blog-slider:not(.slick-initialized) .blog-slide:not(:first-child),
.preview-video-slider:not(.slick-initialized) .preview-video-slide:not(:first-child) {
    display: none;
}

/* Style the first slide while loading to avoid large images */
.video-slider:not(.slick-initialized) .video-slide:first-child,
.category-slider:not(.slick-initialized) .category-slide:first-child,
.talent-slider:not(.slick-initialized) .talent-slide:first-child,
.blog-slider:not(.slick-initialized) .blog-slide:first-child,
.preview-video-slider:not(.slick-initialized) .preview-video-slide:first-child {
    max-width: 300px;
    margin: 0 auto;
}

.video-slider:not(.slick-initialized)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    border: 3px solid rgba(236, 27, 97, 0.3);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
    to {transform: rotate(360deg);}
}

.category-card .video-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 1;
    transition: all 0.3s ease;
}

.category-count {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.video-category-desc {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 0.3rem;
}

.view-all-link {
    text-align: center;
    margin-top: 2.5rem;
}

/* Talent Carousel Section */
.talent-carousel-section .content-layer {
    min-height: 90vh;
}

.talent-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: rgba(30, 30, 35, 0.9);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid rgba(50, 50, 55, 0.8);
}

.talent-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border-color: rgba(236, 27, 97, 0.4);
}

.talent-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.talent-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-bottom: 2px solid rgba(236, 27, 97, 0.3);
}

.talent-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.talent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.talent-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    background-color: rgba(30, 30, 35, 0.9);
    transition: var(--transition);
    color: #FFFFFF;
    border-top: 1px solid rgba(50, 50, 55, 0.8);
}

.talent-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.talent-specialties {
    font-size: 0.9rem;
    color: rgba(236, 27, 97, 0.85);
    font-weight: 500;
}

.talent-hover-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background-color: rgba(236, 27, 97, 0.85);
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
    z-index: 1;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.talent-card:hover .talent-hover-info {
    transform: translateY(0);
}

/* Introduction Section */
.introduction-section {
    color: #FFFFFF;
    position: relative;
}

.introduction-section .content-layer {
    min-height: 80vh;
    padding: 4rem 0;
}

.light-pattern-layer {
    background-color: #f8f8f8;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ec1b61' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/svg%3E");
}

.intro-content {
    max-width: 1400px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

.intro-columns {
    display: grid;
    gap: 3rem;
}

.intro-column p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.intro-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-subtitle .custom-porn {
    display: inline;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.text-link {
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: var(--transition);
}

.text-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.text-link:hover::after {
    width: 100%;
}

/* Content Sections */
.content-section {
    color: var(--text-color);
    position: relative;
}

.content-section .content-layer {
    min-height: 50vh;
    padding: 4rem 0;
}

.alternate-section {
    background-color: #fafafa;
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.two-columns {
    display: grid;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.column .section-title {
    font-size: 1.8rem;
    text-align: left;
    padding-left: 0;
}

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

/* Blog Section */
.blog-grid-section .content-layer {
    min-height: 90vh;
}

.blog-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: rgba(30, 30, 35, 0.9);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(50, 50, 55, 0.8);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border-color: rgba(236, 27, 97, 0.4);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.blog-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-bottom: 2px solid rgba(236, 27, 97, 0.3);
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-content {
    padding: 1.5rem;
    background-color: rgba(30, 30, 35, 0.9);
    color: #FFFFFF;
    border-top: 1px solid rgba(50, 50, 55, 0.8);
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: #FFFFFF;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: rgba(236, 27, 97, 0.85);
    font-weight: 500;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Use secondary button style for blog-cta */

/* Philosophy Section */
.philosophy-section {
    color: #FFFFFF;
}

.philosophy-section .content-layer {
    min-height: 90vh;
}

.philosophy-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.value-item:hover::before {
    height: 10px;
}

.value-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.value-item:hover .value-icon {
    transform: scale(1.1);
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Animation Classes */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-title {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.reveal-title.active,
.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 3rem;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-content {
        padding: 2.5rem;
    }

    .slick-prev {
        left: 10px;
    }

    .slick-next {
        right: 10px;
    }

    /* Preview video slide widths are now in the external CSS */
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .values-grid {
    }

    .intro-columns,
    .two-columns {
        gap: 2rem;
    }

    .column .section-title {
        text-align: center;
    }

    .column .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Hero content mobile adjustments */

    }
    .hero-content {
        padding: 1.5rem;
        max-width: 100%;
        margin-top: 0; /* Reduced top margin on mobile */
    }

    .hero-image-wrap {
        padding: 0.5rem;
    }

    /* Hero video preview mobile adjustments */
    .hero-video-preview {
        padding: 1.5rem 0;
    }

.preview-title {
      /* Properties for preview-title here */
  }



  /* Fix hero layout jank */
  .hero-section {
    padding: 2rem 0 !important;
    min-height: auto !important;
  }

  /* Fix form layouts */
  .fantasy-form-container {
    padding: 1rem !important;
    margin: 0 auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Fix slider containers */
  .slick-slider {
    margin: 0 !important;
    width: 100% !important;
  }

  .slick-list {
    overflow: hidden !important;
  }

  /* Fix section spacing */
  section {
    padding: 2rem 0 !important;
  }

  /* Fix any fixed positioned elements */
  .fixed-element {
    position: relative !important;
  }
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .preview-video-slider .slick-prev,
    .preview-video-slider .slick-next {
        width: 30px;
        height: 30px;
    }

    .preview-video-slider .slick-prev:before,
    .preview-video-slider .slick-next:before {
        font-size: 16px;

/* Mobile-Only Optimizations */
  @media (max-width: 768px) {
      /* Fix content shift - reset all margins/padding */
      html, body {
          margin: 0 !important;
          padding: 0 !important;
          width: 100% !important;
          overflow-x: hidden !important;
      }

      body {
          background-image: none !important;
          background-color: #000 !important; /* True black */
      }

      /* Grid layouts */
      .video-carousel-section .cfv-cat-grid {
      }

      /* Typography adjustments */
      .hero-title {
          font-size: 2rem;
      }

      .hero-subtitle {
          font-size: 1rem;
      }

      .intro-text {
          font-size: 1.1rem;
      }

      .intro-subtitle {
          font-size: 1.3rem;
      }

      /* Smaller screens preview adjustments */
      .preview-title {
          font-size: 1.5rem;
      }

      .preview-video-slider .slick-prev,
      .preview-video-slider .slick-next {
          width: 26px;
          height: 26px;
      }

      .preview-video-slider .slick-prev:before,
      .preview-video-slider .slick-next:before {
          font-size: 14px;
      }

      .preview-video-slider {
          padding: 0 20px;
      }

      /* Disable backdrop filters on mobile */
      section:not(.hero-section),
      .hero-content,
      .fantasy-form-container,
      .promo-bubble,
      .introduction-section,
      .client-portal-section {
          backdrop-filter: none !important;
          -webkit-backdrop-filter: none !important;
      }

      /* Disable fixed backgrounds on mobile */
      body,
      .hero-section,
      .request-form-section,
      .client-portal-section {
          background-attachment: scroll !important;
      }
  }
