/*
* Main Stylesheet for aiexotic.site
* Unique design with sidebar navigation layout and cyan/pink color scheme
*/

:root {
    /* Color Palette - Completely different from previous sites */
    --primary: #00BCD4;    /* Cyan */
    --secondary: #E91E63;  /* Pink */
    --accent1: #FFC107;    /* Amber */
    --accent2: #4CAF50;    /* Green */
    --dark: #212121;       /* Dark Gray */
    --gray: #757575;       /* Mid Gray */
    --light-gray: #f8f8f8; /* Light Gray */
    --white: #ffffff;      /* White */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark);
}

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

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

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

/* Highlight text */
.highlight {
    color: var(--secondary);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 188, 212, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(233, 30, 99, 0.4);
    color: var(--white);
}

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

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Site Layout - Unique sidebar layout */
.site-wrapper {
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* Sidebar Navigation */
.sidebar {
    width: 260px;
    background-color: var(--white);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    transition: transform 0.3s ease;
}

.sidebar-header {
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-svg {
    width: 120px;
    height: 40px;
}

.main-nav {
    flex: 1;
    padding: 30px 0;
    overflow-y: auto;
}

.main-nav ul {
    list-style: none;
}

.main-nav li {
    margin-bottom: 5px;
}

.main-nav a {
    display: block;
    padding: 12px 20px;
    color: var(--gray);
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
}

.main-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
    background-color: rgba(0, 188, 212, 0.05);
}

.main-nav a:hover::before,
.main-nav a.active::before {
    transform: scaleY(1);
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    color: var(--dark);
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 260px;
    width: calc(100% - 260px);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(233, 30, 99, 0.1) 100%);
}

.hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    text-align: center;
    margin-bottom: 50px;
}

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

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.hero-visual {
    width: 100%;
    max-width: 500px;
}

.hero-visual svg {
    width: 100%;
    height: auto;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

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

.section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.text-content {
    max-width: 600px;
}

.text-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--gray);
}

.visual-content svg {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* Features Section */
.features-section {
    background-color: var(--light-gray);
}

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

.feature-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--gray);
    font-size: 1rem;
}

/* Generator Section */
.generator-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
}

.generator-section .section-title {
    color: var(--white);
}

.generator-section .section-title::after {
    background: var(--white);
}

.generator-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.generator-content p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: var(--white);
}

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

.generator-section .btn-primary:hover {
    background-color: var(--accent1);
    color: var(--dark);
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--light-gray);
    transition: background-color 0.3s ease;
}

.faq-item:hover .faq-question {
    background-color: rgba(0, 188, 212, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.open .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-item.open .toggle-icon {
    transform: rotate(45deg);
}

/* Footer */
.site-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo .logo-svg {
    width: 120px;
    height: 40px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 1rem;
    opacity: 0.8;
}

.footer-links ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.footer-links a {
    color: var(--white);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Responsive Design */
@media (min-width: 768px) {
    .section-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .text-content {
        flex: 0 0 50%;
    }
    
    .visual-content {
        flex: 0 0 40%;
    }
    
    .hero-section .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .hero-content {
        flex: 0 0 50%;
        text-align: left;
        margin-bottom: 0;
    }
    
    .hero-visual {
        flex: 0 0 45%;
    }
    
    .cta-group {
        justify-content: flex-start;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-logo {
        align-items: flex-start;
        margin-bottom: 0;
    }
}

@media (max-width: 991px) {
    .sidebar {
        transform: translateX(-100%);
        width: 240px;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .menu-toggle {
        display: block;
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 101;
        background-color: var(--white);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-links ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .generator-box {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        width: 100%;
    }
}
