/* Adult Content Creators Page - Custom Styles */
/* This file contains custom styles to differentiate the adult creators page from other pages */

/* Custom color scheme for adult creators page */
:root {
    --adult-primary: #ff6b9d;
    --adult-secondary: #c44569;
    --adult-accent: #f8b5d3;
    --adult-dark: #2c1810;
    --adult-light: #fff5f7;
}

/* Hero section customization */
#hero {
    background: linear-gradient(135deg, var(--adult-primary) 0%, var(--adult-secondary) 100%);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10 15c-2-3-4-5-6-7-2-2-4-4-6-6 2-2 4-4 6-6 2 2 4 4 6 6 2 2 4 4 6 6-2 2-4 4-6 6z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

/* Custom hero title styling */
#hero h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

#hero .lead {
    color: var(--adult-light);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

/* Custom button styling */
#hero .btn-primary {
    background: var(--adult-accent);
    border-color: var(--adult-accent);
    color: var(--adult-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

#hero .btn-primary:hover {
    background: white;
    border-color: white;
    color: var(--adult-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}

/* Hero section Get Started button - make it white */
#hero .my-5 .btn-primary {
    background: white !important;
    border-color: white !important;
    color: var(--adult-primary) !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

#hero .my-5 .btn-primary:hover {
    background: var(--adult-accent) !important;
    border-color: var(--adult-accent) !important;
    color: var(--adult-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Custom card styling for the preview */
#hero .card.gradient-primary {
    background: linear-gradient(135deg, var(--adult-primary) 0%, var(--adult-secondary) 100%);
    border: none;
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.3);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

#hero .card.gradient-primary:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.4);
}

/* Custom avatar styling */
#hero .rounded-circle {
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Custom social icons */
#hero #social a {
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#hero #social a:hover {
    background: white;
    color: var(--adult-primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Custom content buttons */
#hero #content .btn {
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

#hero #content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Features section customization */
section.py-10 {
    background: linear-gradient(135deg, var(--adult-light) 0%, #fff 50%, var(--adult-light) 100%);
    position: relative;
    overflow: hidden;
}

section.py-10::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--adult-light));
}

section.py-10::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, transparent, var(--adult-light));
}

/* Enhanced feature list styling */
section.py-10 .list-unstyled {
    position: relative;
}

section.py-10 .list-unstyled li {
    position: relative;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    overflow: hidden;
}

section.py-10 .list-unstyled li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--adult-primary), var(--adult-secondary));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

section.py-10 .list-unstyled li:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.2);
    border-color: var(--adult-accent);
}

section.py-10 .list-unstyled li:hover::before {
    transform: scaleY(1);
}

/* Custom feature icons with enhanced styling */
section.py-10 .icon-md {
    background: linear-gradient(135deg, var(--adult-primary) 0%, var(--adult-secondary) 100%) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

section.py-10 .icon-md::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

section.py-10 .icon-md:hover {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.6);
}

section.py-10 .icon-md:hover::before {
    transform: rotate(45deg) translateX(100%);
}

section.py-10 .icon-md i {
    color: white !important;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    -webkit-text-fill-color: white !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

/* Enhanced feature text styling */
section.py-10 h5 {
    color: var(--adult-dark);
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

section.py-10 h5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--adult-primary), var(--adult-secondary));
    border-radius: 2px;
}

section.py-10 .lead {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

section.py-10 .fw-bold {
    color: var(--adult-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

section.py-10 p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Enhanced button styling */
section.py-10 .btn-primary {
    background: linear-gradient(135deg, var(--adult-primary) 0%, var(--adult-secondary) 100%);
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

section.py-10 .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

section.py-10 .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.6);
}

section.py-10 .btn-primary:hover::before {
    left: 100%;
}

/* Enhanced preview cards section with automatic flipper effect */
section.py-10 .card-flipper-container {
    position: relative;
    perspective: 1200px;
    height: 600px;
    width: 100%;
}

section.py-10 .card-flipper {
    border-radius: 25px;
    border: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    transform-style: preserve-3d;
    position: absolute;
    width: 50%;
    height: 80%;
}

section.py-10 .card-flipper[data-card="1"] {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%) !important;
    left: 0;
    top: 5%;
    z-index: 1;
    animation: card-flip-1 10s ease-in-out infinite;
}

section.py-10 .card-flipper[data-card="2"] {
    background: linear-gradient(135deg, var(--adult-secondary) 0%, #8b4513 100%) !important;
    right: 0;
    top: 0;
    z-index: 2;
    animation: card-flip-2 10s ease-in-out infinite;
}

section.py-10 .card-flipper[data-card="3"] {
    background: linear-gradient(135deg, var(--adult-primary) 0%, var(--adult-secondary) 100%) !important;
    left: 25%;
    top: 10%;
    z-index: 3;
    animation: card-flip-3 10s ease-in-out infinite;
}

/* Card flip animations - changing positions every 5 seconds */
@keyframes card-flip-1 {
    0%, 20% { 
        left: 0; 
        top: 5%; 
        z-index: 1;
        transform: rotateY(0deg) scale(1);
    }
    25%, 45% { 
        left: 25%; 
        top: 10%; 
        z-index: 3;
        transform: rotateY(180deg) scale(1.1);
    }
    50%, 70% { 
        right: 0; 
        top: 0; 
        z-index: 2;
        transform: rotateY(360deg) scale(1);
    }
    75%, 95% { 
        left: 0; 
        top: 5%; 
        z-index: 1;
        transform: rotateY(540deg) scale(1.1);
    }
    100% { 
        left: 0; 
        top: 5%; 
        z-index: 1;
        transform: rotateY(720deg) scale(1);
    }
}

@keyframes card-flip-2 {
    0%, 20% { 
        right: 0; 
        top: 0; 
        z-index: 2;
        transform: rotateY(0deg) scale(1);
    }
    25%, 45% { 
        left: 0; 
        top: 5%; 
        z-index: 1;
        transform: rotateY(180deg) scale(1.1);
    }
    50%, 70% { 
        left: 25%; 
        top: 10%; 
        z-index: 3;
        transform: rotateY(360deg) scale(1);
    }
    75%, 95% { 
        right: 0; 
        top: 0; 
        z-index: 2;
        transform: rotateY(540deg) scale(1.1);
    }
    100% { 
        right: 0; 
        top: 0; 
        z-index: 2;
        transform: rotateY(720deg) scale(1);
    }
}

@keyframes card-flip-3 {
    0%, 20% { 
        left: 25%; 
        top: 10%; 
        z-index: 3;
        transform: rotateY(0deg) scale(1.1);
    }
    25%, 45% { 
        right: 0; 
        top: 0; 
        z-index: 2;
        transform: rotateY(180deg) scale(1);
    }
    50%, 70% { 
        left: 0; 
        top: 5%; 
        z-index: 1;
        transform: rotateY(360deg) scale(1.1);
    }
    75%, 95% { 
        left: 25%; 
        top: 10%; 
        z-index: 3;
        transform: rotateY(540deg) scale(1);
    }
    100% { 
        left: 25%; 
        top: 10%; 
        z-index: 3;
        transform: rotateY(720deg) scale(1.1);
    }
}

/* Enhanced hover effects */
section.py-10 .card-flipper:hover {
    animation-play-state: paused;
    transform: scale(1.05) rotateY(10deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    z-index: 10 !important;
}

/* Add depth to card content */
section.py-10 .card-flipper .rounded-circle,
section.py-10 .card-flipper h3,
section.py-10 .card-flipper #social,
section.py-10 .card-flipper #content {
    transform: translateZ(20px);
    transition: all 0.3s ease;
}

/* Enhanced social icons */
section.py-10 .card-flipper:hover #social a {
    transform: translateY(-5px) scale(1.1) translateZ(25px);
}

/* Enhanced content buttons */
section.py-10 .card-flipper:hover #content .btn {
    transform: translateY(-3px) translateZ(25px);
}

/* Enhanced avatar styling */
section.py-10 .rounded-circle {
    border: 5px solid white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

section.py-10 .card:hover .rounded-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Enhanced social icons */
section.py-10 #social a {
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

section.py-10 #social a:hover {
    background: white;
    color: var(--adult-primary) !important;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-color: white;
}

/* Enhanced content buttons */
section.py-10 #content .btn {
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

section.py-10 #content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.4s ease;
}

section.py-10 #content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

section.py-10 #content .btn:hover::before {
    left: 100%;
}

/* Enhanced icon positioning in buttons */
section.py-10 #content .btn i {
    transition: all 0.3s ease;
}

section.py-10 #content .btn:hover i {
    transform: scale(1.2);
}

/* Responsive improvements */
@media (max-width: 768px) {
    section.py-10 .list-unstyled li {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    section.py-10 h5 {
        font-size: 1.5rem;
    }
    
    section.py-10 .card {
        margin-bottom: 1rem;
    }
}

/* Conversion section customization */
section.py-10 + .row {
    background: linear-gradient(135deg, var(--adult-dark) 0%, #4a2c1a 100%);
    color: white;
    padding: 4rem 0;
    margin: 0;
    border-radius: 20px;
    margin-top: 2rem;
}

section.py-10 + .row h5 {
    color: var(--adult-accent);
}

section.py-10 + .row .btn-primary {
    background: var(--adult-primary);
    border-color: var(--adult-primary);
    color: white;
}

/* CTA section customization */
section.mb-5 .bg-primary {
    background: linear-gradient(135deg, var(--adult-primary) 0%, var(--adult-secondary) 100%) !important;
    border: none;
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.3);
}

section.mb-5 h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

section.mb-5 .lead {
    color: var(--adult-light);
}

section.mb-5 .btn-primary {
    background: white;
    border-color: white;
    color: var(--adult-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

section.mb-5 .btn-primary:hover {
    background: var(--adult-accent);
    border-color: var(--adult-accent);
    color: var(--adult-dark);
    transform: translateY(-2px);
}

/* Custom animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #hero .card.gradient-primary {
        transform: none;
        margin-top: 2rem;
    }
    
    section.py-10 + .row {
        border-radius: 0;
        margin: 0;
    }
}

/* Custom scrollbar for the page */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--adult-light);
}

::-webkit-scrollbar-thumb {
    background: var(--adult-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--adult-secondary);
}

/* Custom selection color */
::selection {
    background: var(--adult-accent);
    color: var(--adult-dark);
}

/* Custom focus styles */
.btn:focus,
.form-control:focus {
    border-color: var(--adult-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
}

/* Custom link hover effects */
a:hover {
    color: var(--adult-primary) !important;
}

/* Custom form styling */
.form-control {
    border-radius: 10px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--adult-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
}

/* Custom card shadows */
.card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}
