/*
 * Main CSS for pornaivideo.love
 * Dark theme with red-blue gradients
 */

/* CSS Reset & Variables */
:root {
    --color-dark: #151515;
    --color-darker: #0a0a0a;
    --color-gray: #333333;
    --color-light-gray: #8a8a8a;
    --color-white: #ffffff;
    --color-red: #FF6B6B;
    --color-purple: #9370DB;
    --color-blue: #4361EE;
    --main-gradient: linear-gradient(135deg, var(--color-red), var(--color-blue));
    --full-gradient: linear-gradient(135deg, var(--color-red), var(--color-purple), var(--color-blue));
    --shadow: 0 5px 20px rgba(67, 97, 238, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-dark);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--color-white);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: #aaa;
}

.highlight {
    background: var(--main-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header p {
    font-size: 1.1rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(21, 21, 21, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-list a:hover {
    color: var(--color-red);
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--main-gradient);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-cta a {
    background: var(--main-gradient);
    color: var(--color-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta a:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    color: var(--color-dark);
}

.nav-cta a::after {
    display: none;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--color-white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--color-darker), var(--color-dark));
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-content h1 {
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--main-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-light-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--main-gradient);
    color: var(--color-dark);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.btn-outline {
    border: 2px solid var(--color-blue);
    background: transparent;
    color: var(--color-white);
}

.btn-outline:hover {
    border-color: var(--color-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--full-gradient);
    color: var(--color-dark);
}

.btn-xl:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

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

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background-color: var(--color-darker);
    position: relative;
}

.benefits::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--color-darker);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

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

.benefit-card {
    background-color: rgba(40, 40, 40, 0.5);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    transition: var(--transition);
    text-align: center;
    border: 1px solid #222;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: #333;
}

.card-icon {
    margin: 0 auto 1.5rem;
    width: 60px;
    height: 60px;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background-color: var(--color-dark);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0 auto;
}

.step-card {
    background-color: rgba(40, 40, 40, 0.5);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    border: 1px solid #222;
    position: relative;
}

.step-number {
    background: var(--main-gradient);
    color: var(--color-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
}

.step-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: var(--color-darker);
}

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

.faq-item {
    background-color: rgba(40, 40, 40, 0.5);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid #222;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: #333;
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--color-red);
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background-color: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(67, 97, 238, 0.1));
    border-radius: var(--border-radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-wrapper h2 {
    margin-bottom: 1.5rem;
}

.cta-wrapper p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Footer */
footer {
    background-color: var(--color-darker);
    padding: 4rem 0 1rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand-info p {
    margin-bottom: 0.5rem;
}

.footer-brand-name {
    font-weight: 600;
    color: var(--color-white);
}

.footer-tagline {
    font-size: 0.9rem;
}

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

.footer-column h4 {
    margin-bottom: 1.2rem;
    color: var(--color-red);
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--color-light-gray);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-light-gray);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--color-darker);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        z-index: 1000;
    }
    
    .main-nav.open {
        right: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-divider {
        transform: rotate(90deg);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-stats {
        justify-content: space-between;
    }
    
    .step-card {
        min-width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}
