/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('https://i.e-z.host/7dh1z5m7.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Docs Section */
.docs {
    padding: 100px 0;
    background-color: rgba(11, 13, 19, 0.7);
    width: 100%;
    flex: 1;
    z-index: 1; /* Ensure content is above the background */
}

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

.docs .subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.docs-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.docs-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    transition: box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.docs-card:hover {
    box-shadow: 0 0 20px rgba(35, 182, 193, 0.466);
}

.docs-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.docs-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.docs-card .btn-primary {
    width: 100%;
    text-align: center;
    background-color: #23b6c1;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    display: inline-block; /* Fix button sizing */
    width: 100px;
    margin-top: 10px; /* Add some spacing */
}

.docs-card .btn-primary:hover {
    background-color: #23b6c1cc;
}

@media (max-width: 768px) {
    .docs {
        padding: 60px 0; /* Reduce padding */
    }

    .docs h2 {
        font-size: 2rem; /* Adjust font size */
        margin-bottom: 15px; /* Reduce margin */
    }

    .docs .subtitle {
        font-size: 1rem; /* Adjust subtitle size */
        margin-bottom: 30px; /* Adjust margin */
    }

    .docs-grid {
        flex-direction: column; /* Stack cards vertically */
        align-items: center; /* Center cards */
        gap: 20px; /* Adjust gap between cards */
    }

    .docs-card {
        width: 90%; /* Make cards take full width */
        margin: 0 auto; /* Center the cards */
        padding: 20px; /* Adjust padding */
    }

    .docs-card h3 {
        font-size: 1.2rem; /* Adjust card title size */
    }

    .docs-card p {
        font-size: 0.9rem; /* Adjust paragraph font size */
    }

    .docs-card .btn-primary {
        width: 85%; /* Ensure button takes full width */
        margin-top: 15px; /* Add some spacing */
    }
}
