/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Profile Section */
.profile {
    text-align: center;
    margin-bottom: 3rem;
}

.profile-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2d3436;
}

.subtitle {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 1.5rem;
}

/* Bio Section */
.bio {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #2d3436;
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 1rem;
}

/* Social Media Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    color: #2d3436;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(186, 151, 237, 0.3);
    color: #86FBB5;
    background-color: #BA97ED;
}

/* Projects Section */
.projects h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2d3436;
}

.project-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.project-card {
    background-color: #fff;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e1e1e1;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 1.5rem;
    position: relative;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-color: #BA97ED;
}

.project-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
}

.project-image {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.link-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d3436;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.project-card:hover .link-icon {
    background-color: #BA97ED;
    color: #86FBB5;
    box-shadow: 0 4px 8px rgba(186, 151, 237, 0.3);
}

.project-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    min-height: 100px;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2d3436;
    line-height: 1.3;
}

.project-content p {
    color: #636e72;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    max-width: 100%;
}

/* Media Queries for larger screens */
@media (min-width: 768px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-image {
        width: 120px;
        height: 120px;
    }
    
    .project-content h3 {
        font-size: 1.75rem;
    }
    
    .profile h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 4rem 2rem;
    }
    
    .profile-image {
        width: 200px;
        height: 200px;
    }

    .project-image {
        width: 140px;
        height: 140px;
    }
}

/* Contact Button */
.contact-container {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: #2d3436;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    border: 2px solid rgba(186, 151, 237, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05),
                0 0 0 2px rgba(186, 151, 237, 0.1);
}

.contact-button i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #BA97ED;
    color: #86FBB5;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(186, 151, 237, 0.3),
                0 0 0 4px rgba(186, 151, 237, 0.2);
}

.contact-button:hover i {
    transform: rotate(-5deg) scale(1.1);
}

.contact-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(186, 151, 237, 0.2);
}

/* Footer Section */
.footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(186, 151, 237, 0.2);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.footer-link {
    color: #636e72;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #BA97ED;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-link:hover {
    color: #BA97ED;
    background-color: rgba(186, 151, 237, 0.08);
}

.footer-link:hover::after {
    width: calc(100% - 2.4rem);
}

.footer-divider {
    color: rgba(186, 151, 237, 0.4);
    font-size: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-container {
        top: 1.5rem;
        right: 1rem;
    }
    
    .contact-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .contact-button i {
        font-size: 1rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-link {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* Download Button */
/*.download-container {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
}*/
.download-container {
    margin-top: 1.5rem;
    text-align: center;
}

.download-button {
    display: inline-block;
    transition: all 0.3s ease;
}

.download-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.download-button:active {
    transform: translateY(0);
}

.download-button img {
    max-width: 180px;
    height: auto;
}

/* App Header Section */
.app-header {
    text-align: center;
    margin: 4rem auto 3rem;
    max-width: 800px;
}

.app-icon {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    border-radius: 45px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.app-subtitle {
    font-size: 1.25rem;
    color: #636e72;
    margin-bottom: 1.5rem;
}

/* App Description */
.app-description {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 0 1rem;
}

.app-description p {
    color: #2d3436;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Features Section */
.features {
    margin-bottom: 5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(186, 151, 237, 0.2);
}

.feature-card i {
    font-size: 2rem;
    color: #BA97ED;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #2d3436;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card i {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
}

/* Screenshots Section */
.screenshots {
    margin-bottom: 5rem;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.screenshot {
    display: flex;
    justify-content: center;
}

.screenshot img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.screenshot:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments for app page */
@media (max-width: 1024px) {
    .screenshots-grid {
        gap: 1.5rem;
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 2rem;
    }

    .screenshot img {
        max-width: 280px;
    }
}

/* Back to Home Button */
.back-home {
    text-align: center;
    margin: 4rem 0;
}

.back-home-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: #2d3436;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    border: 2px solid rgba(186, 151, 237, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05),
                0 0 0 2px rgba(186, 151, 237, 0.1);
}

.back-home-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.back-home-button:hover {
    background-color: #BA97ED;
    color: #86FBB5;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(186, 151, 237, 0.3),
                0 0 0 4px rgba(186, 151, 237, 0.2);
}

.back-home-button:hover i {
    transform: translateX(-5px);
}

.back-home-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(186, 151, 237, 0.2);
}

@media (max-width: 768px) {
    .back-home {
        margin: 3rem 0;
    }
    
    .back-home-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
}

/* Impressum Styles */
.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.impressum-content h1 {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 2rem;
    text-align: center;
}

.impressum-section {
    margin-bottom: 2rem;
}

.impressum-section h2 {
    font-size: 1.5rem;
    color: #BA97ED;
    margin-bottom: 1rem;
}

.impressum-section p {
    color: #636e72;
    font-size: 1.1rem;
    line-height: 1.6;
}

.impressum-section a {
    color: #BA97ED;
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-section a:hover {
    color: #86FBB5;
}

@media (max-width: 768px) {
    .impressum-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .impressum-content h1 {
        font-size: 2rem;
    }

    .impressum-section h2 {
        font-size: 1.3rem;
    }

    .impressum-section p {
        font-size: 1rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.faq-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 1rem;
    }
    
    .faq-section h1 {
        font-size: 2rem;
    }
    
    .faq-category h2 {
        font-size: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
}

/* Back Button Styles */
.back-button-container {
    text-align: center;
    margin: 2rem 0;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.back-button:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.back-button i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .back-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
} 