/* Subpage specific styles */

.breadcrumb {
    margin-bottom: 30px;
    animation: fadeIn 0.8s ease-out;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.breadcrumb a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-5px);
}

.content-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.page-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.content {
    color: #555;
}

.content .intro {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
}

.content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
}

/* Portfolio specific */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.project-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.project-placeholder {
    background: linear-gradient(135deg, #4a7c59 0%, #8bc34a 100%);
    color: white;
    height: 120px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin-bottom: 15px;
}

.project-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.project-card p {
    font-size: 0.9rem;
    color: #777;
}

/* Contact specific */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-info p {
    margin: 0;
    color: #666;
}

.social-links {
    margin-top: 40px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    padding: 12px 25px;
    background: linear-gradient(135deg, #4a7c59 0%, #8bc34a 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 124, 89, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .content-card {
        padding: 30px 20px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

    .social-icons {
        flex-direction: column;
        align-items: center;
    }
}
