/* Main styles for all pages */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.prose {
    line-height: 1.8;
}

.prose h2, .prose h3 {
    color: #1e1e1e;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

.prose ul {
    margin-bottom: 1.5em;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.8s ease-in;
}

/* Gallery hover effects */
.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Model page specific */
.model-photo {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.model-photo:hover {
    transform: scale(1.03);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .prose {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
}