/* 
   aipornvideos.site Styles
   Dark theme with blue gradients
*/

/* Root Variables */
:root {
    --primary-color: #243B55;
    --secondary-color: #141E30;
    --accent-color: #0575E6;
    --dark-color: #0F1724;
    --light-color: #e0e0e0;
    --text-color: #ffffff;
    --text-secondary: #adb5bd;
    --gradient: linear-gradient(to right, #141E30, #243B55);
    --card-bg: rgba(20, 30, 48, 0.8);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    margin-bottom: 2.5rem;
    text-align: center;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 0.8rem auto;
}

h3 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Layout */
.section-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

/* Header */
header {
    background: var(--gradient);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    fill: white;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav ul li a {
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}

nav ul li a:hover {
    color: var(--accent-color);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 500px;
    background: var(--gradient);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px; /* Space for fixed header */
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--light-color);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.primary-btn {
    background: var(--accent-color);
    color: white;
    box-shadow: var(--shadow);
}

.primary-btn:hover {
    background: #0468d7;
    transform: translateY(-3px);
}

.secondary-btn {
    background: transparent;
    border: 2px solid var(--light-color);
    color: var(--light-color);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.view-more-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    margin: 2rem auto 0;
    display: block;
    width: fit-content;
}

.view-more-btn:hover {
    background: var(--primary-color);
}

/* Video Section */
.video-section {
    background-color: var(--dark-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.video-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.video-thumbnail {
    position: relative;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.video-card h3 {
    padding: 1rem 1rem 0.5rem;
}

.video-meta {
    padding: 0 1rem 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Technology Section */
.tech-section {
    background: var(--secondary-color);
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
}

.feature {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature h3 {
    margin-bottom: 1rem;
}

/* How It Works Section */
.how-section {
    background-color: var(--dark-color);
    text-align: center;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
}

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

.cta {
    margin-top: 3rem;
}

/* Reviews Section */
.reviews-section {
    background: var(--gradient);
}

.reviews {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.review {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.reviewer {
    margin-top: 1rem;
    text-align: right;
    font-style: italic;
    color: var(--light-color);
}

/* About Section */
.about-section {
    background-color: var(--dark-color);
}

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

.about-content .btn {
    margin-top: 2rem;
}

/* Footer */
footer {
    background: var(--secondary-color);
    padding-top: 4rem;
}

.footer-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex: 1 0 100%;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    width: 100%;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-col ul li a {
    color: var(--text-secondary);
}

.footer-col ul li a:hover {
    color: var(--light-color);
}

.copyright {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .features {
        gap: 1.5rem;
    }
    
    .steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .header-inner {
        justify-content: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        height: 70vh;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        width: 100%;
    }
    
    .review {
        min-width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}
