/*
Theme Name: JenniferWilliamsAssignment5
Template: Assignment3b
*/

#main-container { 
    display: flex !important; 
    justify-content: center; 
    align-items: flex-start;
    gap: 30px; 
    padding: 40px; 
    background: #fff0f5 !important; 
}

.sidebar { 
    background: white !important; 
    border-radius: 25px; 
    padding: 30px; 
    border: 1px solid #ffdae9; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.05); 
    flex: 0 0 320px; 
}

#content { 
    flex: 0 0 550px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.blog #main-container #content .first-post-box {
    border: 8px solid #8e24aa !important; 
    padding: 30px !important;
    margin-bottom: 50px !important;
    background-color: #ffffff !important;
    display: block !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    visibility: visible !important;
}

.first-post-box h2 {
    color: #8e24aa;
    margin-top: 0;
}

.regular-post {
    background: white !important;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 20px;
    border: 1px solid #ffdae9;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

header h1.site-title a {
    text-decoration: none;
    color: #8e24aa;
    font-weight: bold;
}

header p.site-description {
    color: #4b0082;
    font-style: italic;
    margin-bottom: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #4b0082;
    font-weight: bold;
}

nav a:hover {
    color: #ff1493;
}

.theme-slider img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

footer {
    clear: both;
}

footer a {
    color: white;
    text-decoration: none;
}