/* Dark Theme */
body {
    background-color: #111;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #222;
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(63, 81, 9, 0.692) 0px 8px 16px -8px;
}

.logo img {
    width: 100px;
}

h1 {
    font-size: 54px;
    margin: 0;
    flex: 1;
    text-align: center;
}

/* Grid */
.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px;
}

.card {
    background-color: #222;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.card img {
    max-width: 100%;
    height: 250px;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
}

.card p {
    font-size: 24px;
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
}

/* See More Button */
.see-more {
    display: block;
    background-color: #ffcc00;
    color: #111;
    padding: 8px 15px;
    margin-top: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.see-more:hover {
    background-color: #70d610;
}

/* Footer */
footer {
    background-color: #222;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.team,
.guide {
    text-align: left;
    line-height: 1.6;
}

.team {
    display: flex;
    gap: 20px;
}

.team p {
    flex: 1;
    padding: 10px;
    line-height: 1.6;
}

h3 {
    color: #ffcc00;
}

/* 📱 Mobile & Tablet */
@media (max-width: 1024px) {
    header {
        flex-direction: row;
        text-align: center;
    }

    .logo img {
        margin-bottom: 0;
    }

    h1 {
        font-size: 40px;
    }

    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 15px;
    }

    .card img {
        width: 100%;
    }

    .card p {
        margin-top: 10px;
    }

    .see-more {
        display: block;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .team {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 10px;
    }

    .see-more {
        padding: 6px 12px;
        font-size: 14px;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}