/* websites page */

body {
    background: #0e0f12;
    color: #f7f7f7;
}

.websites-page {
    padding: 140px 6vw 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.websites-hero {
    text-align: center;
    margin-bottom: 48px;
}

.websites-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.websites-hero p {
    margin: 0 auto;
    max-width: 640px;
    color: rgba(247, 247, 247, 0.7);
    font-size: 1.1rem;
}

.websites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.website-card {
    background: #1a1c22;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.card-top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
}

.card-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.card-text h2 {
    margin: 0 0 6px;
    font-size: 1.4rem;
}

.card-text p {
    margin: 0;
    color: rgba(247, 247, 247, 0.7);
    line-height: 1.5;
}

.card-actions {
    display: flex;
    justify-content: flex-end;
}

.card-link {
    background: #f1f1f1;
    color: #111;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.card-link.disabled {
    background: rgba(241, 241, 241, 0.25);
    color: rgba(255, 255, 255, 0.7);
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 720px) {
    .websites-page {
        padding: 120px 6vw 60px;
    }

    .card-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .card-actions {
        justify-content: center;
    }
}
