@charset "utf-8";
/* CSS Document */

body {
    background: linear-gradient(180deg, #f5f7fa 0%, #e9edf2 100%);
    font-family: 'Inter', Arial, sans-serif;
    margin-bottom: 40px;
}

.site-navbar {
    max-width: 900px;
    margin-top: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.navbar-nav .nav-link {
    transition: 0.2s;
}

.navbar-nav .nav-link:hover {
    color: #ffc107 !important;
}

.site-card {
    background: white;
    max-width: 700px;
    width: 100%;
    margin-top: 30px;
    padding: 25px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.site-card h1 {
    font-weight: 600;
    margin-bottom: 20px;
}

.site-card p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 10px;
}

.site-image {
    max-width: 420px;
    margin-top: 10px;
    border-radius: 6px;
    transition: transform 0.25s ease;
}

.site-image:hover {
    transform: scale(1.02);
}

figcaption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

.site-photo {
    max-width: 400px;
    margin-top: 20px;
    border-radius: 8px;
}

.dropdown-item:focus,
.dropdown-item:active,
.dropdown-item:focus-visible {
    background-color: transparent !important; 
    color: #212529 !important;               
    outline: none !important;                
    box-shadow: none !important;
}

.section-title {
    margin-top: 50px;   
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 1.6rem;
    color: #333;
    text-align: center;
}

.tasks-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;           
    margin-top: 40px;
}

.task-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 650px;
    padding: 40px 25px;
    background-color: #343a40;  
    color: #ffffff;       
    font-family: 'Open Sans', sans-serif;
    font-weight: 100;           
    font-size: 1.3rem;          
    text-decoration: none;      
    text-align: center;
    border-radius: 30px;        
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.task-card:hover {
    color: #ffc107;  
    text-decoration: none;            
    background-color: #343a40;   
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.task-card:focus,
.task-card:active {
    outline: none;               
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    color: #ffc107;              
    background-color: #343a40;
    text-decoration: none;   
}
