/* Basic Reset & Body */
body { margin: 0; font-family: 'Roboto Slab', serif; background-color: #1a1a1a; color: #e0e0e0; line-height: 1.6; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* Header */
.main-header { background-color: #0d0d0d; padding: 20px 0; border-bottom: 2px solid #333; }
.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { color: #8a2a2a; text-decoration: none; font-size: 1.8em; font-weight: bold; }
.main-header nav ul { list-style: none; margin: 0; padding: 0; display: flex; }
.main-header nav li { margin-left: 20px; }
.main-header nav a { color: #e0e0e0; text-decoration: none; font-weight: bold; transition: color 0.3s ease; }
.main-header nav a:hover { color: #8a2a2a; }

/* Main Content */
.content { padding: 40px 0; }
h1, h2, h3 { color: #8a2a2a; font-family: 'Cinzel', serif; margin-bottom: 20px; }
h1 { font-size: 2.8em; border-bottom: 2px solid #444; padding-bottom: 15px; }
h2 { font-size: 2.2em; }
p { margin-bottom: 15px; }

.cta-button { display: inline-block; background-color: #8a2a2a; color: #ffffff; padding: 12px 25px; text-decoration: none; border-radius: 5px; margin-top: 30px; font-weight: bold; transition: background-color 0.3s ease; }
.cta-button:hover { background-color: #a03a3a; }

/* Latest Posts Section */
.latest-posts { margin-top: 60px; }
.post-card { background-color: #2a2a2a; padding: 25px; border-radius: 8px; margin-bottom: 30px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); }
.post-card h3 { font-size: 1.5em; margin-top: 0; }
.post-card p { font-size: 0.95em; color: #b0b0b0; }
.read-more { color: #8a2a2a; text-decoration: none; font-weight: bold; }
.read-more:hover { text-decoration: underline; }

/* Social Connect Section */
.social-connect { margin-top: 60px; text-align: center; }
.social-links { display: flex; justify-content: center; gap: 20px; margin-top: 20px; flex-wrap: wrap; }
.social-icon { display: inline-block; background-color: #3a3a3a; color: #e0e0e0; padding: 12px 20px; border-radius: 5px; text-decoration: none; font-weight: bold; transition: background-color 0.3s ease; }
.social-icon:hover { background-color: #5a5a5a; }

/* Footer */
.main-footer { background-color: #0d0d0d; color: #b0b0b0; text-align: center; padding: 20px 0; margin-top: 60px; border-top: 2px solid #333; font-size: 0.9em; }

/* Responsive Design */
@media (max-width: 768px) {
    .main-header .container { flex-direction: column; }
    .main-header nav ul { margin-top: 20px; }
    .main-header nav li { margin: 0 10px; }
    h1 { font-size: 2em; }
    h2 { font-size: 1.8em; }
}

.social-button.apple-music { background-color: #FA263F; }
