:root {
    --bg-color: #F5EFE0;
    --accent: #1a1a1a;
    --white: #ffffff;
}

body {
    background-color: var(--bg-color);
    font-family: 'DM Sans', sans-serif;
    color: var(--accent);
    margin-top: 100px;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

/* Styling për butonat e Kategorive */
.boton-elegante {
    display: block;
    padding: 40px 20px !important;
    /* Më shumë hapësirë brenda butonit */
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    background-color: var(--white) !important;
    color: var(--accent) !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    border-radius: 0 !important;
    /* Katrore për stil më modern */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    text-align: center;
}

.boton-elegante:hover {
    background-color: var(--accent) !important;
    color: var(--white) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent) !important;
}

hr {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 60px;
    margin-bottom: 50px;
}

.col-md-4 {
    padding: 15px;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.2rem;
    }

    body {
        margin-top: 80px;
    }
}