﻿.header-container {
    padding: 1rem 0;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar {
    padding: 0 2rem;
    background-color: white;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-left: 0.5rem;
}

.button-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-schedule {
    background-color: #4a2048;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

    .btn-schedule:hover {
        background-color: #5a2957;
        color: white;
    }

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 260px;
    justify-content: flex-start;
    text-align: left;
    background-color: #4a2048;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
}

    .action-btn:hover {
        background-color: #5a2957;
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

/* Responsive Design */
@media (max-width: 992px) {
    .navbar {
        padding: 0 1rem;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .action-btn {
        min-width: 220px;
        padding: 0.8rem;
    }
}

@media (max-width: 768px) {
    .logo {
        height: 35px;
    }

    .social-link {
        width: 30px;
        height: 30px;
    }

        .social-link i {
            font-size: 1rem;
        }

    .action-btn {
        min-width: 200px;
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .button-row {
        gap: 0.7rem;
    }
}

@media (max-width: 576px) {
    .header-container .container-fluid {
        flex-direction: column;
        gap: 1rem;
    }

    .logo-container {
        margin-bottom: 0.5rem;
    }

    .button-row {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .action-btn {
        width: 100%;
        min-width: auto;
        justify-content: center;
        text-align: center;
    }
}
