/* Alasy-Bot Specific Styles */

/* Hero Section for Alasy-Bot */
.hero-section {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9), rgba(22, 33, 62, 0.9));
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    padding-top: 120px;
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-title .title-name {
    font-size: clamp(2.5rem, 8vw, 5rem);
}

.hero-description {
    max-width: 800px;
    margin-bottom: 2rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(233, 69, 96, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title .title-name {
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.3));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.6));
    }
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Features Section Enhancements */
#features {
    background: rgba(15, 15, 35, 0.6);
    position: relative;
}

#features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 0, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

/* Screenshots Section */
#screenshots {
    background: rgba(15, 15, 35, 0.4);
    position: relative;
}

#screenshots .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
    gap: 2rem;
}

#screenshots .project-card {
    padding: 0;
    overflow: hidden;
}

#screenshots .project-card img {
    width: 100%;
    height: auto;
    display: block;
}

#screenshots .project-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

#screenshots .project-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 255, 0, 0.3);
}

#screenshots .project-card img {
    transition: transform 0.3s ease;
}

#screenshots .project-card:hover img {
    transform: scale(1.05);
}

/* About Section */
#about {
    background: rgba(15, 15, 35, 0.6);
    position: relative;
}

#about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.about-content {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
    transition: var(--transition);
}

.about-content:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.1);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    text-align: justify;
}

/* Download Section */
#download {
    background: rgba(15, 15, 35, 0.6);
    position: relative;
}

#download > .container > div {
    text-align: center;
    margin-top: 3rem;
}

#download > .container > div > p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#download .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

#download .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), rgba(0, 255, 0, 0.8));
    color: var(--bg-darker);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#download .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

#download .btn-primary:hover::before {
    left: 100%;
}

#download .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 0, 0.5);
}

#download .btn-primary:active {
    transform: translateY(-1px);
}

/* Enhanced Project Cards for Features */
#features .project-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

#features .project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.05), rgba(233, 69, 96, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

#features .project-card:hover::after {
    opacity: 1;
}

#features .project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 255, 0, 0.2);
}

#features .project-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.15), rgba(0, 255, 0, 0.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

#features .project-card:hover .project-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.25), rgba(0, 255, 0, 0.15));
    box-shadow: 0 10px 25px rgba(0, 255, 0, 0.3);
}

#features .project-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    transition: color 0.3s ease;
}

#features .project-card:hover h3 {
    color: var(--primary-color);
}

#features .project-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    transition: color 0.3s ease;
}

#features .project-card:hover p {
    color: var(--text-primary);
}

/* Section Title Enhancements */
.section-title {
    position: relative;
    margin-bottom: 4rem;
}

.section-title .title-line {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), rgba(0, 255, 0, 0.3), transparent);
    max-width: 500px;
    margin-bottom: 1rem;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    animation: lineGlow 2s ease-in-out infinite alternate;
}

@keyframes lineGlow {
    from {
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    }
    to {
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
    }
}

.section-title .title-text {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title .title-name {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    #features .project-card {
        padding: 1.5rem;
    }

    #features .project-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .about-content {
        padding: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
        text-align: left;
    }

    #download .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .section-title .title-line {
        max-width: 300px;
    }

    /* Screenshots: 1 Spalte auf Mobile */
    #screenshots .projects-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 100px;
        min-height: 50vh;
    }

    #features .project-card {
        padding: 1.25rem;
    }

    #features .project-card h3 {
        font-size: 1.3rem;
    }

    #features .project-card p {
        font-size: 0.9rem;
    }

    .about-content {
        padding: 1.25rem;
    }

    .section-title .title-line {
        max-width: 250px;
        height: 2px;
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Additional Visual Enhancements */
.section {
    position: relative;
    overflow: hidden;
}

/* Fade-in Animation for Sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section > .container {
    animation: fadeInUp 0.6s ease-out;
}

/* Enhanced Button Styles */
.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

