/* Custom styles for Boisdargile.fr with La Chariotte integration */

/* Import Bulma CSS */
@import url('https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css');

/* Custom container styling for better layout */
.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Custom La Chariotte styles */
.main-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0;
}

.main-footer {
    background-color: #363636;
    color: #dbdbdb;
    padding: 2rem 0;
    margin-top: 3rem;
}

.content-section {
    padding: 2rem 0;
    background-color: #f8f9fa;
    min-height: 60vh;
}

.content-section .container-custom {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Dashboard specific styling */
.dashboard-container {
    min-height: 70vh;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-subtitle {
    margin-top: 1rem;
}

.menu-item {
    color: #3273dc;
}

.menu-item:hover {
    background-color: #f5f5f5;
}

.table-responsive {
    overflow-x: auto;
}

.card-header-title {
    font-weight: 600;
}

.has-text-weight-semibold {
    font-weight: 600;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .title {
        font-size: 1.5rem;
    }
}

/* Navigation styles */
.navbar-item img {
    max-height: 2rem;
}

.navbar-brand .navbar-item {
    font-weight: 700;
}

/* Form styles */
.field {
    margin-bottom: 1rem;
}

.field-label {
    font-weight: 600;
}

.button.is-primary {
    background-color: #3273dc;
}

.button.is-primary:hover {
    background-color: #2366d1;
}

/* Alert styles */
.notification {
    margin-bottom: 1rem;
}

.notification.is-success {
    background-color: #48c774;
    color: white;
}

.notification.is-warning {
    background-color: #ffdd57;
    color: rgba(0, 0, 0, 0.7);
}

.notification.is-danger {
    background-color: #f14668;
    color: white;
}

.notification.is-info {
    background-color: #3273dc;
    color: white;
}

/* Card improvements */
.box {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.box:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.full-height {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Button improvements */
.button {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button.is-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.button.is-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-1px);
}

/* Input improvements */
.input, .textarea {
    border-radius: 8px;
    border: 2px solid #e6e6e6;
    transition: all 0.3s ease;
}

.input:focus, .textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Title improvements */
.title {
    color: #363636;
}

.subtitle {
    color: #4a4a4a;
    font-weight: 600;
}

/* Navbar brand styling */
.navbar-brand-text strong {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    letter-spacing: -0.02em;
}

.navbar-brand-text small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.navbar-item:hover .navbar-brand-text strong {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

