/* Style Bootstrap personnalisé pour Ferme Hager */

/* Variables CSS personnalisées */
:root {
    --ferme-bg: #E0E3C7;
    --ferme-content-bg: #FFFFFF;
    --ferme-text: #444;
    --ferme-link: #9ead6c;
    --ferme-accent: #949c65;
    --ferme-actus: #D5D8B8;
    --ferme-hover: #e6e9cd;
}

/* Reset et base */
body {
    background-color: var(--ferme-bg);
    color: var(--ferme-text);
    font-family: Arial, Tahoma, Verdana, sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

/* Container principal */
.ferme-container {
    background: url("container.gif") repeat-y right 0 var(--ferme-content-bg);
    max-width: 960px;
    margin: 0 auto;
    min-height: 600px;
    position: relative;
}

/* Header avec bannière */
.ferme-header {
    height: 285px;
    background-image: url("banniere_index.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    margin-bottom: 20px;
}

.ferme-header a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Navigation latérale Bootstrap */
.ferme-sidebar {
    background: transparent;
    padding: 0;
}

.ferme-sidebar .nav-link {
    color: var(--ferme-text);
    padding: 8px 15px;
    border-radius: 0;
    font-size: 13px;
    text-decoration: none;
    position: relative;
    padding-left: 25px;
}

.ferme-sidebar .nav-link:before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: url("bullet1.gif") no-repeat;
}

.ferme-sidebar .nav-link:hover {
    background-color: var(--ferme-hover);
    color: var(--ferme-text);
}

.ferme-sidebar .nav-link.active {
    background-color: var(--ferme-accent);
    color: white;
}

.ferme-sidebar h3 {
    background: url("texture.png");
    border-radius: 8px;
    box-shadow: #666 0px 2px 3px inset, #666 0px -2px 3px inset;
    padding: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
}

/* Zone de contenu principal */
.ferme-content {
    padding: 20px;
    background: var(--ferme-content-bg);
}

/* Titres personnalisés */
h1 {
    font-size: 18px;
    text-transform: uppercase;
    margin-left: 40px;
    position: relative;
    margin-bottom: 20px;
}

h1:before {
    content: '';
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    background: url("puce_oignon.png") no-repeat;
}

h1:first-letter {
    font-size: 22px;
    color: var(--ferme-accent);
}

h2 {
    font-size: 16px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

h3 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

h3:first-letter {
    font-size: 18px;
    color: var(--ferme-accent);
}

/* Liens */
a {
    color: var(--ferme-link);
    text-decoration: none;
}

a:hover {
    color: var(--ferme-accent);
    text-decoration: underline;
}

/* Zone actualités */
.ferme-actus {
    background: var(--ferme-actus);
    border-radius: 8px;
    box-shadow: #666 0px 2px 3px inset, #666 0px -2px 3px inset;
    padding: 15px;
    margin-bottom: 20px;
}

.ferme-actus h2 {
    margin-top: 0;
    border: none;
    padding-bottom: 0;
}

/* Formulaires avec texture */
.ferme-form {
    background: url("texture.png");
    border-radius: 8px;
    box-shadow: #666 0px 2px 3px inset, #666 0px -2px 3px inset;
    padding: 15px;
    margin-top: 20px;
}

.ferme-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ccc;
    border-radius: 4px;
}

.ferme-form .form-control:focus {
    border-color: var(--ferme-accent);
    box-shadow: 0 0 0 0.2rem rgba(148, 156, 101, 0.25);
}

/* Contact form spécifique */
#contact {
    display: inline-block;
    vertical-align: top;
    width: 280px;
}

#contact #texture {
    background: url('texture.png');
    border-radius: 8px;
    box-shadow: #666 0px 2px 3px inset, #666 0px -2px 3px inset;
    padding: 15px;
    margin-top: 30px;
}

#contact #texture label {
    display: inline-block;
    text-align: center;
    width: 110px;
    font-weight: bold;
}

#contact #texture textarea {
    height: 145px;
    max-width: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
}

/* Footer */
.ferme-footer {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 11px;
    color: #666;
}

.ferme-footer a {
    color: var(--ferme-link);
    margin-left: 10px;
}

/* Boutons personnalisés */
.btn-ferme {
    background: linear-gradient(to bottom, #f5f5f5, #e8e8e8);
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Alice', serif;
    font-size: 16px;
    padding: 8px 16px;
    color: var(--ferme-text);
}

.btn-ferme:hover {
    background: linear-gradient(to bottom, #e8e8e8, #ddd);
    color: var(--ferme-accent);
}

/* Messages d'erreur et succès */
.message-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.message-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Tables admin */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.admin-table th,
.admin-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.admin-table th {
    background-color: var(--ferme-actus);
    font-weight: bold;
}

.admin-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.admin-table tr:hover {
    background-color: var(--ferme-hover);
}

/* Navigation admin */
.admin-nav {
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.admin-nav a {
    margin-right: 15px;
    padding: 5px 10px;
    background: var(--ferme-actus);
    border-radius: 4px;
    text-decoration: none;
}

.admin-nav a:hover {
    background: var(--ferme-accent);
    color: white;
}

/* Responsive adaptations */
@media (max-width: 768px) {
    .ferme-container {
        margin: 0 10px;
    }
    
    .ferme-header {
        height: auto;
        min-height: 200px;
        background-size: cover;
    }
    
    #contact {
        width: 100%;
        display: block;
    }
    
    #contact #texture label {
        width: 100%;
        text-align: left;
        display: block;
        margin-bottom: 5px;
    }
}

/* Classes utilitaires */
.hp {
    display: none !important;
}

.text-ferme {
    color: var(--ferme-accent) !important;
}

.bg-ferme {
    background-color: var(--ferme-actus) !important;
}

.border-ferme {
    border-color: var(--ferme-accent) !important;
}