﻿* {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.nav-tabs {
    width: 100%;
    border-bottom: none;
    display: flex;
    background-color: transparent;
}

    .nav-tabs .nav-item {
        flex: 1;
        justify-items: center;
    }

    /* Link görünümü */
    .nav-tabs .nav-link {
        border: none;
        position: relative;
        color: #000;
        font-size: 3rem;
        transition: all 0.3s ease;
        padding: 0;
        height: 100px; /* Yükseklik ayarlanabilir */
        /* Tam ortalama */
        display: flex;
        justify-content: center;
        align-items: center;
    }


        /* Hover ve aktif durum çizgisi */
        .nav-tabs .nav-link.active::after,
        .nav-tabs .nav-link:hover::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #E25F3A;
        }

        .nav-tabs .nav-link.active {
            color: #E25F3A;
            font-weight: bold;
        }

        .nav-tabs .nav-link:hover {
            color: #E25F3A;
            transform: scale(1.05);
        }

@media (max-width: 1300px) {
    .nav-tabs .nav-link {
        font-size: 1.9rem;
        padding: 8px;
    }
}
    @media (max-width: 991px) {

        .nav-tabs .nav-link {
            font-size: 0.7rem;
            padding: 8px;
        }

    }

.align_content {
    align-content: center;
}

.luxurious-roman-regular {
    font-family: "Luxurious Roman", serif;
    font-weight: 400;
    font-style: normal;
}