﻿.body-content {
    min-height: calc(100vh - 150px);
}
/* Loader Stili */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.rotating-loader {
    width: 80px;
    height: 80px;
    animation: rotate-animation 1.5s linear infinite;
}

@keyframes rotate-animation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Hamburger Menü Stili */
.navbar-toggler {
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1050;
    display: none;
}

.navbar-toggler-icon {
    width: 30px;
    height: 3px;
    background-color: black;
    display: block;
    position: relative;
    transition: all 0.3s ease-in-out;
    top: 15px;
}

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        width: 30px;
        height: 3px;
        background-color: black;
        position: absolute;
        left: 0;
        transition: all 0.3s ease-in-out;
    }

    .navbar-toggler-icon::before {
        top: -8px;
    }

    .navbar-toggler-icon::after {
        top: 8px;
    }

.button-group {
    display: inline-flex;
    justify-content: space-between;
    gap: 10px;
    width: max-content;
}

    .btn.black {
        min-width: fit-content;
        padding: 13px 25px;
        background: #2C2D3F;
        color: #fff !important;
    }

        .btn.black:before {
            min-width: fit-content;
            padding: 13px 25px;
            background: #1A76D1;
            color: #fff !important;
        }

    .signature-status {
        max-height: 70px;
        max-width: 70px;
    }

    .status-mobile {
        display: none;
    }

/* Logout & Invite Buttons */
.btn-logout {
    background-color: brown !important;
    color: white !important;
    padding: 13px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background-color: #8B0000 !important;
    color: white !important;
}

.btn-invite {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 20px;
    background: #1A76D1;
    color: white !important;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(26, 118, 209, 0.2);
    white-space: nowrap;
    height: fit-content;
}

    .btn-invite:hover {
        background: #155ba1;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(26, 118, 209, 0.35);
        color: white !important;
    }

    .btn-invite:active {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(26, 118, 209, 0.3);
    }

    .btn-invite i {
        font-size: 18px;
    }

    .btn-invite-badge {
        display: inline-block;
        padding: 2px 8px;
        background: rgba(255, 255, 255, 0.25);
        border-radius: 12px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.3px;
    }

/* Responsive Design */
@media (max-width: 1200px) {
    .btn-invite {
        padding: 10px 16px;
        font-size: 13px;
    }

        .btn-invite i {
            font-size: 16px;
        }

        .btn-invite-badge {
            font-size: 10px;
            padding: 2px 6px;
        }
}

@media (max-width: 992px) {
    .btn-invite-text {
        display: none;
    }

    .btn-invite {
        padding: 10px 14px;
        gap: 4px;
    }

        .btn-invite i {
            font-size: 18px;
        }

        .btn-invite-badge {
            font-size: 9px;
        }
}

@media (max-width: 768px) {
    .btn-invite {
        padding: 9px 12px;
    }

        .btn-invite i {
            font-size: 16px;
        }

        .btn-invite-badge {
            display: none;
        }
}

/* Mobil Menü */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -250px; /* Başlangıçta ekran dışında */
    width: 250px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 1040;
    padding-top: 60px;
}

    .mobile-menu.show {
        right: 0; /* Açıldığında ekran içine girsin */
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
    }

        .mobile-menu ul li {
            padding: 0;
            border-bottom: 1px solid #ddd;
        }

            .mobile-menu ul li a {
                text-decoration: none;
                color: black;
                font-weight: bold;
                display: block;
            }

@media (max-width: 768px) {
    .status-mobile {
        display: inline-flex;
    }

    .body-content {
        min-height: 100vh;
    }

    .header .nav li:last-child {
        margin-top: 30px !important;
        display: flex;
        justify-content: center;
        border-bottom: none;
    }

    .navbar-toggler {
        display: flex;
    }

    .header-button-area{
        display:none;
    }
}

/* Social Media Section */
.social-media-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-tagline-text {
    color: #bbb;
    font-size: 0.88rem;
    font-style: italic;
    margin: 0 auto 18px;
    max-width: 680px;
    line-height: 1.65;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    line-height: 0;
}

    .social-icon i {
        line-height: 2.2;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        vertical-align: middle;
    }

    .social-icon:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .social-icon.instagram:hover {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }

    .social-icon.linkedin:hover {
        background: #0077B5;
    }

    .social-icon.youtube:hover {
        background: #FF0000;
    }

.footer a {
    transition: all 0.3s ease;
    display: inline-block;
}

.footer .single-footer h2 {
    position: relative;
}

    .footer .single-footer h2::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background: #1A76D1;
        border-radius: 2px;
    }

/* Copyright Section Styles */
.copyright {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text,
.copyright-text span {
    color: #fff !important;
    font-size: 0.9rem;
}

.copyright-symbol {
    color: #fff !important;
    margin-right: 5px;
}

.year {
    color: #fff !important;
    font-weight: 500;
}

.brand-name {
    color: #fff !important;
    font-weight: 700;
    margin: 0 8px;
}

.separator,
.separator-dot {
    color: #fff !important;
    margin: 0 8px;
}

.rights {
    color: #fff !important;
}

.powered-by {
    font-size: 0.9rem;
}

    .powered-by span {
        color: #fff !important;
    }

.domain {
    color: #fff !important;
    font-weight: 500;
}

.product-label {
    color: #fff !important;
}

/* Infyne Link - Gri ve İtalik */
.company-link {
    color: #aaa !important;
    text-decoration: none;
    font-style: italic;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .company-link:hover {
        color: #1A76D1 !important;
    }

.company-name {
    color: inherit;
}

/* Responsive */
@media (max-width: 768px) {
    .social-media-section {
        margin-top: 30px;
        padding-top: 20px;
    }

    .social-links {
        gap: 15px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .copyright {
        margin-top: 30px;
        padding-top: 20px;
    }

    .copyright-text,
    .powered-by {
        text-align: center !important;
        margin-bottom: 10px;
    }
}

/* Payment Logos */
.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-logos-img {
    height: 28px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.payment-logos-img:hover {
    opacity: 1;
}

@media (max-width: 576px) {
    .payment-logos-img {
        height: 24px;
    }
}
