* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
    overflow-x: hidden;
    overscroll-behavior: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

nav a {
    display: block;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 90px;
}

nav a:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateY(-2px);
}


/* Show/Hide sections */
.main-content {
    display: block;
}

.main-content.hidden {
    display: none;
}

.blog-page {
    display: none;
}

.blog-page.show {
    display: block;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('/images/bassPlaying.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 60px 40px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #cccccc;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
}

/* Section Styles */
section {
    padding: 40px 0px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #ff6b6b;
}

/* Posts Section */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.post-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .post-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.post-date {
    color: #4ecdc4;
    font-size: 0.9rem;
}

.post-album-art {
    flex-shrink: 0;
}

.post-content-wrapper {
    flex: 1;
}

.post-album-art img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.post-card:hover .post-album-art img {
    transform: scale(1.05);
}

.post-title {
    font-size: 1.5rem;
    color: #ffffff;
}

/* Blog Post Page */
.blog-post {
    padding: 120px 0 80px;
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-post-title {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.blog-post-date {
    color: #4ecdc4;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.album-art {
    width: 100%;
    max-width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
}

.blog-post-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #cccccc;
}

.blog-post-content h3 {
    color: #4ecdc4;
    margin-bottom: 15px;
    margin-top: 30px;
}

.spotify-embed {
    width: 100%;
    height: 380px;
    border-radius: 8px;
    border: none;
    margin-bottom: 30px;
}

/* Portfolio Section */
.portfolio-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-description {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.portfolio-embed {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    border: none;
    margin-bottom: 30px;
}


/* Contact Section */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    color: #4ecdc4;
    font-weight: 600;
    font-size: larger;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    color: #ffffff;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    color: #ff6b6b;
    transform: translateY(-2px);
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
}

.social-links svg {
    width: 24px;
    height: 24px;
    display: block;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    margin: 0;
    color: #cccccc;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 30px 0;
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {

    nav ul {
        gap: 10px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .blog-post-title {
        font-size: 2rem;
    }

}