/* 
   aigayporn.pw Stylesheet
   A modern, responsive design with rainbow gradient accents
*/

/* Base Variables */
:root {
    --primary: #0e5a94;
    --secondary: #6c3483;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #1a1a2e;
    --gray: #7f8c8d;
    --gradient: linear-gradient(90deg, #3498db, #9b59b6, #e74c3c);
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--light);
    background-color: var(--dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

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

section {
    padding: 80px 0;
    position: relative;
}

.highlight {
    color: var(--accent);
    font-weight: 700;
}

/* Main Wrapper */
.main-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

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

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

.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

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

.highlight-link {
    background: var(--gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
}

.highlight-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.highlight-link:after {
    display: none;
}

#menu-toggle {
    display: none;
}

.menu-button {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.menu-icon,
.menu-icon:before,
.menu-icon:after {
    background-color: var(--light);
    width: 100%;
    height: 2px;
    position: absolute;
    transition: var(--transition);
}

.menu-icon {
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon:before {
    content: '';
    top: -8px;
}

.menu-icon:after {
    content: '';
    bottom: -8px;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--dark), var(--primary));
    position: relative;
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 0h1v1H0z'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.cta-button {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #e74c3c, #9b59b6, #3498db);
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button:hover:before {
    opacity: 1;
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: var(--light);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--light);
    transition: var(--transition);
}

.secondary-button:hover {
    background: var(--light);
    color: var(--dark);
    transform: translateY(-3px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-symbol {
    position: relative;
    width: 300px;
    height: 300px;
}

.ai-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 90, 148, 0.3) 0%, rgba(26, 26, 46, 0) 70%);
    position: absolute;
    animation: pulse 3s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.ai-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Generator Section */
.generator-section {
    background-color: var(--dark);
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.badge {
    display: inline-block;
    background: var(--primary);
    color: var(--light);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    margin-bottom: 20px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.feature-card p {
    opacity: 0.7;
    font-size: 0.95rem;
}

/* Technology Section */
.technology-section {
    background-color: #151525;
    position: relative;
}

.technology-section:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, rgba(14, 90, 148, 0) 0%, rgba(14, 90, 148, 0.1) 100%);
    z-index: 0;
}

.tech-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    counter-reset: step-counter;
    position: relative;
    z-index: 1;
}

.tech-step {
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: var(--radius);
    border-left: 3px solid;
    border-image: var(--gradient);
    border-image-slice: 1;
    position: relative;
    transition: var(--transition);
}

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

.step-number {
    font-size: 3rem;
    line-height: 1;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.tech-step h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--light);
}

.tech-step p {
    opacity: 0.7;
}

.tech-step strong {
    color: var(--accent);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v20h2v2H20v-1.5zM0 20h2v20H0V20zm4 0h2v20H4V20zm4 0h2v20H8V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Footer */
.site-footer {
    background-color: #13131f;
    padding: 60px 0 30px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-branding {
    display: flex;
    align-items: center;
}

.footer-branding img {
    margin-right: 15px;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

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

.footer-links h4 {
    margin-bottom: 15px;
    color: var(--accent);
    font-size: 1.1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-legal {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    opacity: 0.5;
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .hero-section .container {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        margin-top: 30px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .ai-symbol {
        width: 200px;
        height: 200px;
    }
    
    .ai-text {
        font-size: 5rem;
    }
}

@media screen and (max-width: 768px) {
    .menu-button {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    #menu-toggle:checked ~ .main-nav {
        max-height: 300px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button, .secondary-button {
        width: 100%;
        text-align: center;
    }
}
