/*
   aipornimage.site Styles
   Blue and Purple Theme - Unique design different from previous sites
*/

/* Root Variables */
:root {
    --primary: #4A90E2; /* Blue */
    --secondary: #9B59B6; /* Purple */
    --accent: #5E5CE6; /* Indigo */
    --dark: #2C3E50;
    --light: #F8FAFC;
    --background: #F0F4F8;
    --text: #333333;
    --gradient: linear-gradient(135deg, #4A90E2, #9B59B6);
    --box-shadow: 0 10px 30px rgba(74, 144, 226, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

a:hover {
    color: var(--secondary);
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark);
}

h1 {
    font-size: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
}

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

h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 4px;
}

h3 {
    font-size: 1.75rem;
    color: var(--primary);
}

h4 {
    font-size: 1.25rem;
    color: var(--accent);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--gradient);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
    font-size: 1rem;
    margin: 0.5rem;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.5);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.btn-light {
    background: white;
    color: var(--primary);
}

.btn-light:hover {
    background: var(--light);
    color: var(--secondary);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Header */
header {
    background: white;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-text {
    fill: url(#logo-gradient);
    font-family: 'Segoe UI', Roboto, sans-serif;
    font-weight: bold;
    font-size: 24px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    color: var(--dark);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    font-size: 1.1rem;
}

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

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--gradient);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
    border-radius: 3px;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    background-color: var(--light);
    background-image: radial-gradient(circle at top right, rgba(155, 89, 182, 0.1), transparent 70%),
                      radial-gradient(circle at bottom left, rgba(74, 144, 226, 0.1), transparent 70%);
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    flex: 0 0 50%;
    max-width: 550px;
    padding-right: 30px;
}

.hero-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
}

.hero-image {
    flex: 0 0 45%;
    position: relative;
}

.hero-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(155, 89, 182, 0.2));
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: white;
    position: relative;
}

.gallery-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at center, rgba(74, 144, 226, 0.03), transparent 70%);
    z-index: 1;
}

.gallery-container {
    position: relative;
    z-index: 2;
}

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

.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.2);
}

.gallery-image {
    width: 100%;
    height: auto;
    border-bottom: 4px solid var(--primary);
}

.gallery-content {
    padding: 1.5rem;
}

.gallery-content h3 {
    margin-bottom: 0.5rem;
}

.gallery-view-more {
    text-align: center;
    margin-top: 3rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.features-shape {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(155, 89, 182, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.features-container {
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.2);
}

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

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background-color: white;
}

.steps {
    max-width: 800px;
    margin: 3rem auto;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--light);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.15);
}

.step:last-child {
    margin-bottom: 0;
}

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

.step-content {
    flex: 1;
}

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

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

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

.cta h2:after {
    background: rgba(255, 255, 255, 0.3);
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta .btn {
    background: white;
    color: var(--primary);
}

.cta .btn:hover {
    color: var(--secondary);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 20px;
}

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

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

.footer-logo-text {
    fill: white;
}

.footer-nav-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.footer-nav {
    flex: 1 0 200px;
    margin-bottom: 2rem;
}

.footer-nav h4 {
    color: white;
    margin-bottom: 1.5rem;
}

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

.footer-nav ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav ul li a:hover {
    color: var(--secondary);
}

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

.footer-favicon {
    display: inline-block;
    margin-left: 1rem;
}

/* Media Queries */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-image {
        flex: 0 0 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1.5rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .footer-nav {
        flex: 0 0 100%;
    }
}
