/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
    background-color: #08080a;
    color: #e0e0e0;
    line-height: 1.6;
}

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

/* Header */
header {
    position: relative;
    background-color: #0a0a0c;
}

.header-image {
    position: relative;
    height: 600px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(8,8,10,0.9)),
                url('images/Nico-Japas-01-1.jpg') center/cover;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 130px;
    padding-left: 50px;
}

.overlay {
    text-align: left;
    color: #ffffff;
}

.overlay h1 {
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

h1 {
    text-transform: uppercase;
    font-size: 40px;
}

.tagline {
    font-size: 1.5rem;
    color: #f1f1f1;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Navigation */
nav {
    background-color: #0a0a0c;
    padding: 15px 0;
    border-bottom: 2px solid #f1f1f1;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 10px;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 10px;
}

nav ul li a:hover,
nav ul li a.active {
    color: #f1f1f1;
}

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

.social-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #f1f1f1;
}

/* Main Content */
main {
    min-height: 100vh;
}

.section {
    padding: 60px 0;
    border-bottom: 1px solid #1a1a1c;
}

.section:first-child {
    padding-top: 0;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffffff;
    border-left: 4px solid #f1f1f1;
    padding-left: 20px;
}

.section h3 {
    color: #f1f1f1;
    margin-bottom: 15px;
}

/* Blog Posts / Home */
.blog-posts {
    display: grid;
    gap: 30px;
}

.post {
    background-color: #12121a;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #f1f1f1;
    transition: transform 0.3s, box-shadow 0.3s;
}

.post:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(173, 3, 3, 0.2);
}

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

.music-item {
    background-color: #12121a;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.music-item:hover {
    transform: translateY(-5px);
}

/* Gallery Sections */
.gallery,
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    background-color: #12121a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(173, 3, 3, 0.3);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.caption {
    padding: 15px;
    background-color: #12121a;
}

.caption p {
    margin: 0 0 5px 0;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.caption .date {
    color: #666;
    font-size: 0.85rem;
}

.photo-item {
    background-color: #12121a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.photo-item:hover {
    transform: translateY(-5px);
}

.photo-item img {
    width: 100%;
    height: auto;
    display: block;
}

.photo-caption {
    padding: 10px 15px;
    color: #999;
    font-size: 0.9rem;
    text-align: center;
}

.photo-credit {
    text-align: center;
    color: #999;
    font-style: italic;
    margin-bottom: 20px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 30px;
}

.profile-photo {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.bio {
    font-size: 1.1rem;
    line-height: 1.8;
}

.bio p {
    margin-bottom: 20px;
}

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

.contact-info .email {
    font-size: 1.5rem;
    margin: 30px 0;
}

.contact-info .email a {
    color: #f1f1f1;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info .email a:hover {
    color: #e0e0e0;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #12121a;
    border-radius: 50%;
    color: #e0e0e0;
    font-size: 1.5rem;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.social-btn:hover {
    background-color: #f1f1f1;
    transform: scale(1.1);
}

/* Additional styles */
.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #b0b0b0;
}

.date {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.music-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.streaming-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #f1f1f1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    font-size: 0.95rem;
}

.btn:hover {
    background-color: #c70303;
    transform: translateY(-2px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-top: 15px;
    border-radius: 8px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Footer */
footer {
    background-color: #0a0a0c;
    text-align: center;
    padding: 30px 0;
    color: #666;
    border-top: 2px solid #f1f1f1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .overlay h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        padding: 20px 0;
    }

    nav ul.active {
        display: flex;
    }

    .social-links {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 10px 0;
    }

    .social-links.active {
        display: flex;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .profile-photo {
        max-width: 300px;
        margin: 0 auto;
    }

    .streaming-links {
        flex-direction: column;
    }

    .music-item img {
        max-width: 100%;
    }
}
