/* Custom styles for Imagera site */
/* This is a placeholder - original file was not archived */

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.navbar {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.brand img {
    max-height: 50px;
}

.pages {
    padding: 80px 0;
}

.page-welcome {
    color: white;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.page-work {
    background-color: #f8f9fa;
}

.page-features {
    background-color: #fff;
}

.page-contact {
    background-color: #333;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.centralized {
    position: relative;
    z-index: 1;
}

.polaroid {
    background: white;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.05);
}

.btn-projet {
    background: #007bff;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-projet:hover {
    background: #0056b3;
}

.btn-photographe {
    background: #28a745;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-photographe:hover {
    background: #1e7e34;
}

.line-divider {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.line-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.line-divider span {
    background: white;
    padding: 0 20px;
    font-size: 18px;
    font-weight: bold;
}

.titrePage {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    text-align: center;
}

.center {
    text-align: center;
}

.margin10 {
    margin: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-welcome {
        min-height: 70vh;
    }
    
    .polaroid {
        transform: none;
        margin: 20px 0;
    }
}