/*
 Theme Name:   MikeDonahueAssignment5
 Author:       Mike Donahue
*/

/* Import parent theme styles */
@import url("../assignment3b-theme/style.css");

/* First Post Border (used with content-first.php) */
.first-post-wrapper {
    border: 3px solid #333;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 6px;
    background-color: #fafafa;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}

/* Header Styles */
#site-header {
    background-color: #1a1a2e;
    padding: 20px;
    text-align: center;
}

#site-header .site-title a {
    color: #ffffff;
    text-decoration: none;
    font-size: 2em;
    font-weight: bold;
}

#site-header .site-description {
    color: #cccccc;
    font-size: 1em;
    margin-top: 5px;
}

/* Slider Styles */
.header-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-height: 400px;
}

.header-slider .slide {
    display: none;
    width: 100%;
}

.header-slider .slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.header-slider .slide.active {
    display: block;
}

.slider-controls {
    text-align: center;
    padding: 10px;
    background: #1a1a2e;
}

.slider-controls button {
    background: #e94560;
    color: white;
    border: none;
    padding: 8px 16px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 4px;
}

/* Navigation Menu */
#site-navigation {
    background-color: #16213e;
}

#site-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

#site-navigation ul li a {
    display: block;
    color: #ffffff;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#site-navigation ul li a:hover {
    background-color: #e94560;
}

/* Footer Styles */
#site-footer {
    background-color: #1a1a2e;
    color: #cccccc;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}

#site-footer a {
    color: #e94560;
    text-decoration: none;
}

#site-footer a:hover {
    text-decoration: underline;
}

/* General Content Area */
.site-content {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
}