/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
    animation-name: roll;
    animation-duration: 2s;
    animation-iteration-count: 1;         /* Nur einmal drehen */
    animation-timing-function: ease-in-out;
}
/* @keyframes roll {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
} */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 32px;
}
/* Navigation */
.navbar {
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1e293b;
    height: 80px;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f8fafc;
}

.logo i {
    color: #3b82f6;
}
/* Decreased font size of the span by 30% */
.logo span {
    font-size: 1.6rem;         /* Reduced from 1.8rem by 30% */
    width: 400px;
    padding: 12px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #3b82f6;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: rgba(59, 130, 246, 0.1);
}

.btn-primary {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
/* Hero Section */
.hero {
    padding: 150px 0 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hero-content {
    flex: 1;
    margin: 16px 16px 16px 16px;
    padding-left: 45px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #f8fafc, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}
/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}
/* Features Section */
.features {
    padding: 100px 0;
    background-color: #1e293b;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #94a3b8;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

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

.feature-card {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #334155;
    height: 400px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: #3b82f6;
}

.feature-card i {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 20px;
}

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

.feature-card p {
    color: #94a3b8;
}
/* Screenshots Section */
.screenshots {
    padding: 100px 0;
    background-color: #0f172a;
}

.screenshots h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.screenshots p {
    text-align: center;
    color: #94a3b8;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

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

.screenshot-card {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #334155;
}

.screenshot-card:hover {
    transform: translateY(-10px);
}

.screenshot-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
}

.screenshot-card p {
    padding: 0 20px 20px;
    color: #94a3b8;
}
/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    color: #94a3b8;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
/* Footer */
.footer {
    background-color: #0a101f;
    padding: 70px 0 30px;
    border-top: 1px solid #1e293b;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
}

.footer-logo i {
    color: #3b82f6;
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-links div h4 {
    margin-bottom: 20px;
    color: #f8fafc;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #3b82f6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #1e293b;
    color: #64748b;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #94a3b8;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #3b82f6;
}

.download-text {
    color: #94a3b8;
    font-size: 0.9rem;
    padding-bottom: 24px;
}
/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        margin-bottom: 50px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    .footer-links {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .features-grid, .screenshots-grid {
        grid-template-columns: 1fr;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Screnshot Images */
.screenschot-card-h3 {
    text-align: center;
}

.mockup-placeholder-top {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    border-width: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #334155;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 500px;
    height: 300px;
}

.mockup-placeholder {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    border-width: 0px;         /* border: 1px solid #334155; */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;         /* width: 336px */
    height: 250px;
    width: 100%;
}

.image-placeholder {
    color: #64748b;
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
    width: 100%;
    height: 100%;
    object-fit: contain;         /* cover; */
    border: 0px;
}
/* style="width: 100%; height: auto; object-fit: contain;" */
.image-screenshot-top {
    width: 100%;
    height: auto;         /* 100%; */
    object-fit: contain;         /* cover; */
    border: 0px;
}
/* width: 100%; height: 100%; object-fit: cover; */
.image-screenshot {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 16px;
    border-width: 0px;         /* border: 1px solid #334155; */
}

.icon-mcpstudio {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border-radius: 16px;
    border-width: 0px;         /* border: 1px solid #334155; */
}
/* Tools */
.spacer_100p {
    width: 100%;
}

.spacer_30p {
    width: 30%;
}