/* Custom styles for Cabinet d'Ostéopathie Aucamville */
:root {
    --primary-color: #17a2b8;
    --warning-color: #ffc107;
    --dark-color: #343a40;
    --light-bg: #f8f9fa;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #2c3e50;
    background-color: #f7f9fa;
    line-height: 1.6;
}

.jumbotron {
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.jumbotron h1 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.2rem;
}

.jumbotron h3 {
    font-weight: 400;
    color: #6c757d;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card {
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.card-header {
    background-color: #ffffff;
    border-bottom: 2px solid #f1f3f5;
    font-weight: 700;
    font-size: 1.4rem;
    color: #2c3e50;
    padding: 1rem 1.25rem;
}

.btn-lg {
    padding: 0.6rem 1.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
}

.btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #212529;
}

.btn-warning:hover {
    background-color: #e0a800;
    border-color: #d39e00;
    transform: translateY(-1px);
}

.btn-info {
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: #ffffff;
}

.btn-info:hover {
    background-color: #138496;
    border-color: #117a8b;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
    transform: translateY(-1px);
}

.list-group-item {
    border-left: none;
    border-right: none;
    border-color: #f1f3f5;
    padding: 1rem 1.25rem;
}

.list-group-item i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.nav-tabs .nav-link {
    font-weight: 600;
    color: #495057;
    border-radius: 6px 6px 0 0;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: transparent;
    font-weight: 700;
}

.carousel-inner img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 100%;
    height: auto;
}

footer {
    background-color: #ffffff;
    border-top: 1px solid #e9ecef;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .jumbotron {
        padding: 1.5rem 1rem;
        background-image: none !important;
    }
    
    .btn-lg {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}
