/* Showcase Page Specific Styles */

.showcase-header {
    text-align: center;
    margin: 40px 0 60px 0;
    padding: 20px 0;
    border-bottom: 1px solid #C0C0C0;
}

.showcase-header h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #C0C0C0;
    text-shadow: 0 0 10px #C0C0C0;
}

.showcase-intro {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #CCCCCC;
}

.nav-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.nav-link {
    color: #C0C0C0;
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid #C0C0C0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: #C0C0C0;
    color: #000000;
    text-shadow: none;
}

.admin-link {
    opacity: 0.7;
    font-size: 0.9em;
}

/* Case Studies */
.case-studies {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.case-study {
    background: rgba(192, 192, 192, 0.05);
    border: 1px solid #C0C0C0;
    border-radius: 5px;
    padding: 30px;
    transition: all 0.3s ease;
}

.case-study:hover {
    background: rgba(192, 192, 192, 0.08);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.case-study-header h3 {
    color: #C0C0C0;
    font-size: 1.4em;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.domain-tag {
    background: #C0C0C0;
    color: #000000;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9em;
    font-weight: bold;
    white-space: nowrap;
}

.case-study-content {
    display: grid;
    gap: 25px;
}

.case-study-content h4 {
    color: #C0C0C0;
    font-size: 1.1em;
    margin: 0 0 10px 0;
    border-bottom: 1px solid rgba(192, 192, 192, 0.3);
    padding-bottom: 5px;
}

.case-study-content p {
    line-height: 1.6;
    margin: 0;
    color: #CCCCCC;
}

.case-study-content ul {
    margin: 0;
    padding-left: 20px;
    color: #CCCCCC;
}

.case-study-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.case-study-content li:before {
    content: ">";
    color: #C0C0C0;
    font-weight: bold;
    margin-right: 8px;
    margin-left: -15px;
}

/* Framework and Ethics Sections */
.methodology-framework,
.ethical-considerations,
.collaboration {
    background: rgba(192, 192, 192, 0.03);
    border-left: 4px solid #C0C0C0;
    padding: 25px;
    margin: 30px 0;
}

.methodology-framework h3,
.ethical-considerations h3,
.collaboration h3 {
    color: #C0C0C0;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.methodology-framework p,
.ethical-considerations p,
.collaboration p {
    line-height: 1.6;
    color: #CCCCCC;
    margin-bottom: 15px;
}

.contact-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(192, 192, 192, 0.3);
}

.contact-info a {
    color: #C0C0C0;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
    text-shadow: 0 0 5px #C0C0C0;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid #C0C0C0;
    color: #666666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .showcase-header h2 {
        font-size: 2em;
    }
    
    .case-study {
        padding: 20px;
    }
    
    .case-study-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .case-study-header h3 {
        min-width: auto;
        margin-bottom: 10px;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .showcase-intro {
        font-size: 1em;
        padding: 0 20px;
    }
    
    .methodology-framework,
    .ethical-considerations,
    .collaboration {
        padding: 20px 15px;
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .case-study {
        padding: 15px;
    }
    
    .showcase-header {
        margin: 20px 0 40px 0;
    }
    
    .showcase-header h2 {
        font-size: 1.8em;
    }
}