/* Custom Fonts */
@font-face {
    font-family: 'DeathtoMetal';
    src: url('elements/fonts/DeathtoMetal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('elements/insoniakavatar.jpg') center top/cover no-repeat fixed;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation Bar */
.navbar {
    background-color: rgba(26, 26, 26, 0.4);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.navbar li {
    display: inline;
}

.navbar a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.navbar a:hover,
.navbar a.active {
    color: #ffffff;
}

/* Hero Section (Home Page) */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px);
    padding: 2rem;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.artist-name {
    font-family: 'DeathtoMetal', 'Cinzel', 'Palatino', 'Times New Roman', serif;
    font-size: 6rem;
    font-weight: 350;
    color: rgb(1, 255, 1);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    text-shadow: 3px 3px 6px black;
    line-height: 0.9;
}

.artist-subtitle {
    font-size: 3rem;
}

.subtitle {
    font-size: 1.5rem;
    color: #c0c0c0;
    margin-bottom: 3rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px black;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-icons a {
    color: #b0b0b0;
    font-size: 2.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #ffffff;
    transform: translateY(-5px);
}

/* Content Pages */
.content-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-page h1 {
    font-family: 'DeathtoMetal', 'Cinzel', 'Palatino', 'Times New Roman', serif;
    font-size: 5rem;
    font-weight: 350;
    text-align: center;
    margin-bottom: 3rem;
    color: rgb(1, 255, 1);
    letter-spacing: 0.02em;
    text-shadow: 3px 3px 6px black;
}

.content-page h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

/* Music Page */
.music-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.album-player {
    background-color: rgba(26, 26, 26, 0.4);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 2rem;
}

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

.album-art img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #444;
}

.album-info {
    flex: 1;
    min-width: 300px;
}

.album-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.album-artist {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

.release-date {
    color: #808080;
    margin-bottom: 1.5rem;
}

.track-list {
    margin-bottom: 2rem;
}

.track-item {
    padding: 0.75rem;
    border-bottom: 1px solid #2a2a2a;
    display: flex;
    gap: 1rem;
}

.track-number {
    color: #808080;
    min-width: 30px;
}

.track-name {
    color: #c0c0c0;
}

.rss-player-embed {
    background-color: #0a0a0a;
    padding: 2rem;
    border-radius: 4px;
    border: 1px dashed #444;
    text-align: center;
}

.placeholder-text {
    color: #808080;
    font-style: italic;
}

/* Contact Page */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: rgba(26, 26, 26, 0.4);
    border: 1px solid #333;
    border-radius: 8px;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.contact-button {
    background-color: #2a2a2a;
    color: #e0e0e0;
    border: 1px solid #444;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.contact-button:hover {
    background-color: #333;
    border-color: #555;
}

.contact-button i {
    margin-right: 0.5rem;
}

.email-display {
    margin-top: 1rem;
}

.contact-info {
    font-size: 1.2rem;
    color: #c0c0c0;
    font-family: monospace;
    background-color: #0a0a0a;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #2a2a2a;
    margin-bottom: 1rem;
}

.hidden {
    display: none;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(10, 10, 10, 0.4);
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    color: #b0b0b0;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.social-link:hover {
    background-color: rgba(26, 26, 26, 0.6);
    border-color: #444;
    color: #ffffff;
}

.social-link i {
    font-size: 1.5rem;
}

/* Donate Page */
.donate-container {
    max-width: 700px;
    margin: 0 auto;
}

.donate-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.donate-intro p {
    margin-bottom: 1rem;
    color: #c0c0c0;
}

.donation-methods {
    background-color: rgba(26, 26, 26, 0.4);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 2rem;
}

.donation-methods h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
}

.wallet-section,
.qr-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(10, 10, 10, 0.4);
    border-radius: 4px;
}

.wallet-section h3,
.qr-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.wallet-display {
    margin-top: 1rem;
}

.wallet-address {
    font-family: monospace;
    font-size: 1.1rem;
    background-color: #1a1a1a;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #2a2a2a;
    color: #b0b0b0;
    word-break: break-all;
    margin-bottom: 1rem;
}

.copy-button {
    background-color: #2a2a2a;
    color: #e0e0e0;
    border: 1px solid #444;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.copy-button:hover {
    background-color: #333;
    border-color: #555;
}

.copy-button i {
    margin-right: 0.5rem;
}

.lightning-icon {
    color: #ffd700;
    text-decoration: none;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
}

.lightning-icon:hover {
    color: #ffed4e;
}

.qr-section {
    text-align: center;
}

.qr-placeholder img {
    width: auto;
    height: auto;
    border-radius: 4px;
    border: 1px solid #2a2a2a;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar ul {
        gap: 1.5rem;
    }

    .navbar a {
        font-size: 0.9rem;
        padding: 0.3rem 0.5rem;
    }

    .artist-name {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
        text-shadow: 2px 2px 4px black;
    }

    .social-icons a {
        font-size: 2rem;
    }

    .content-page {
        padding: 2rem 1rem;
    }

    .content-page h1 {
        font-size: 2rem;
    }

    .album-player {
        padding: 1.5rem;
    }

    .album-art img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .navbar ul {
        gap: 1rem;
    }

    .artist-name {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
        text-shadow: 2px 2px 4px black;
    }

    .social-icons {
        gap: 1.5rem;
    }
}
