html{
    --font-celtic:'Celtic', Arial, sans-serif;
    --font-arial:'Arial Rounded', Arial, sans-serif;
    --btn-color: #996533;
    --bg-color-brown: #996533;
    --primary: #996533;
    --black: #000000;
    --white: #ffffff;
    --light-primary: #c49b76;
    --dark-primary: #7a502a;

}

@font-face {
    font-family: 'Celtic';
    src: url('../fonts/CELTG___.TTF') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Arial Rounded';
    src: url('../fonts/arlrdbd.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.portee-header {
    color: var(--primary);
    padding: 2rem;
    text-align: center;
}

.portee-header h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-celtic);
}

.portee-infos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.portee-info {
    background-color: var(--bg-color-brown);
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.portee-details {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.parents {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.parent {
    flex: 1;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 1rem;
    transition: transform 0.3s;
}

.parent:hover {
    transform: translateY(-10px);
}

.parent-image {
    height: 400px;
    overflow: hidden;
}

.parent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parent-info {
    padding: 1rem;
    text-align: center;
}

.parent-info h2 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-celtic);
}

.chiots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.chiot {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.chiot:hover {
    transform: translateY(-10px);
}

.chiot-titre{
    color: var(--primary); 
    text-align: center; 
    margin-bottom: 2rem;
}

.chiot-image {
    height: 250px;
    overflow: hidden;
}

.chiot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chiot-info {
    padding: 1rem;
    text-align: center;
}

.chiot-statut {
    display: inline-block;
    background-color: rgb(8, 61, 48);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.chiot-statut-reserve{
    display: inline-block;
    background-color: rgb(104, 7, 7);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.information{
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    border: 5px solid #996533;
    display: flex;
    align-items: center;
}

.information h2{
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: var(--font-arial);
}

        /* Styles précédents conservés... */
        
        .gallerie {
            margin-top: 3rem;
        }
        
        .gallerie h2 {
            color: var(--primary);
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .gallerie-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }
        
        .gallerie-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .gallerie-item:hover {
            transform: scale(1.05);
        }
        
        .gallerie-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
        }
        
        .gallerie-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0,0,0,0.5);
            overflow: hidden;
            width: 100%;
            height: 0;
            transition: 0.5s ease;
        }
        
        .gallerie-item:hover .gallerie-item-overlay {
            height: 100%;
        }
        
        .gallerie-item-text {
            color: var(--white);
            font-size: 1rem;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.9);
        }
        
        .modal-content {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 900px;
            max-height: 80vh;
            object-fit: contain;
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 35px;
            color: var(--white);
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
        }
        

@media (max-width: 1024px) {
    .chiots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .parents {
        flex-direction: column;
    }
    
    .parent {
        margin: 1rem 0;
    }

    .gallerie-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .chiots-grid {
        grid-template-columns: 1fr;
    }

    .gallerie-grid {
        grid-template-columns: 1fr;
    }
}