/* Place your CSS styles in this file */

/* Navigation Card Slides Styles */
.nav-slides-container {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-slides-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    padding: 0 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-width: 90px;
    border: 2px solid transparent;
}

.nav-card-icon {
    font-size: 20px;
    margin-bottom: 4px;
    display: block;
    transition: transform 0.3s ease;
}

.nav-card-text {
    display: block;
    font-size: 12px;
    letter-spacing: 0.3px;
}

/* Hover Effect */
.nav-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
    background: #fafbff;
}

.nav-card:hover .nav-card-icon {
    transform: scale(1.1);
}

/* Active State */
.nav-card.active {
    background: white;
    border-color: #667eea;
    color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

.nav-card.active .nav-card-icon {
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-slides-wrapper {
        gap: 10px;
        padding: 0 15px;
    }
    
    .nav-card {
        padding: 10px 16px;
        min-width: 75px;
        font-size: 12px;
    }
    
    .nav-card-icon {
        font-size: 18px;
        margin-bottom: 3px;
    }
    
    .nav-card-text {
        font-size: 11px;
    }
}

/* Main Content Container */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

h1 {
    text-align: center;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: bold;
    color: white;
}

body {
    background-color: pink;
    margin: 0;
    padding: 0;
    font-family: "Source Sans Pro", sans-serif;
}

p {
    font-size: 100%;
}

.p2 {
    text-align: center;
    font-size: small;
    color: pink;
}

ul {
    list-style-type: none;
    background-color: deeppink;
    border: 5px solid pink;
    padding: 0;
    margin: 0;
}

li {
    display: inline;
    padding-right: 7px;
}