/* ===================================
   Seven Deadly Sins Records - Main Stylesheet
   Professional Metal Label Website
   =================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #000000 100%);
    background-attachment: fixed;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #ff4444;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    border-bottom: 2px solid #8b0000;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: #ff6666;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

a {
    color: #ff4444;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ff6666;
    text-shadow: 0 0 8px #ff4444;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 25px;
    padding: 10px;
    border: 1px solid #444;
    backdrop-filter: blur(10px);
}

.language-switcher a {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 2px;
    border-radius: 20px;
    color: #ccc;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.streaming-links a:hover {
    background: linear-gradient(45deg, #ff4444, #ff6666);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-card {
    background: rgba(30, 30, 30, 0.9);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #444;
    transition: all 0.3s ease;
    position: relative;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff4444, #8b0000);
    border-radius: 15px 15px 0 0;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: #ff4444;
    box-shadow: 0 10px 25px rgba(255, 68, 68, 0.2);
}

.about-card h3 {
    color: #ff4444;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Services List */
.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(30, 30, 30, 0.9);
    border-left: 4px solid #ff4444;
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.services-list li:hover {
    background: rgba(40, 40, 40, 0.9);
    border-left-width: 8px;
    transform: translateX(10px);
}

.services-list li strong {
    color: #ff6666;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: rgba(30, 30, 30, 0.9);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #444;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff4444, #ff6666, #ff4444);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #ff4444;
    box-shadow: 0 15px 30px rgba(255, 68, 68, 0.2);
}

.contact-card h3 {
    margin-bottom: 1.5rem;
    color: #ff4444;
    font-size: 1.4rem;
}

.contact-card .email {
    background: rgba(139, 0, 0, 0.2);
    color: #ff6666;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    border: 1px solid #8b0000;
    display: inline-block;
    margin: 1rem 0;
}

/* Latest Releases Section */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.release-card {
    background: rgba(25, 25, 25, 0.95);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #444;
    transition: all 0.4s ease;
}

.release-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 68, 68, 0.3);
    border-color: #ff4444;
}

.release-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #333, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
    border-bottom: 2px solid #444;
}

.release-content {
    padding: 2rem;
}

.release-content h3 {
    color: #ff4444;
    margin-bottom: 1rem;
}

/* News/Updates Section */
.news-item {
    background: rgba(30, 30, 30, 0.8);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    border-left: 4px solid #ff4444;
    transition: all 0.3s ease;
}

.news-item:hover {
    background: rgba(40, 40, 40, 0.8);
    transform: translateX(5px);
}

.news-date {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.news-title {
    color: #ff6666;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.95);
    color: #666;
    text-align: center;
    padding: 3rem 2rem;
    border-top: 3px solid #8b0000;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin: 2rem 0;
}

.footer-links a {
    color: #888;
    margin: 0 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #ff4444;
}

.social-placeholder {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    border: 1px dashed #444;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .band-info {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
    
    .band-image {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        padding: 1rem 0;
        border-bottom: 2px solid #8b0000;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav li {
        margin: 0.5rem 0;
    }
    
    .language-switcher {
        top: 120px;
        right: 10px;
        padding: 5px;
    }
    
    .language-switcher a {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .band-info {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .band-image {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    main {
        padding: 1rem;
        margin-top: 70px;
    }
    
    section {
        padding: 1.5rem;
    }
    
    .streaming-links {
        justify-content: center;
    }
    
    .album {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .releases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    section {
        padding: 1rem;
    }
    
    .band-image {
        width: 150px;
        height: 150px;
    }
    
    .streaming-links a {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    nav, .language-switcher {
        display: none;
    }
    
    main {
        margin-top: 0;
    }
    
    section {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
    }
    
    h1, h2, h3 {
        color: black;
        text-shadow: none;
    }
    
    .hero {
        background: #f5f5f5;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ff4444;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff6666;
};
}

.language-switcher a.active,
.language-switcher a:hover {
    background: #ff4444;
    color: #000;
    transform: scale(1.05);
}

/* Navigation */
nav {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #8b0000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

nav li {
    margin: 0 2rem;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

nav a:hover,
nav a.active {
    color: #ff4444;
    text-shadow: 0 0 10px #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.logo {
    font-size: 1.8rem;
    color: #ff4444 !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    font-weight: 900;
}

.logo:hover {
    color: #ff6666 !important;
    transform: scale(1.05);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #ff4444;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Main Content */
main {
    margin-top: 80px;
    padding: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Styling */
section {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid #333;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff4444, transparent);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                linear-gradient(45deg, #1a0000, #330000);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23000000" width="1200" height="600" opacity="0.1"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 68, 68, 0.3); }
    to { text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 68, 68, 0.5); }
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #ccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #999;
    font-style: italic;
    margin-top: 2rem;
}

/* Accent Lines */
.accent-line {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #ff4444 50%, transparent 100%);
    margin: 3rem 0;
    border-radius: 2px;
}

/* Band/Artist Cards */
.band-card, .artist-card {
    background: rgba(30, 30, 30, 0.95);
    border: 2px solid #444;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.band-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff4444, #8b0000, #ff4444);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.band-card:hover::before {
    opacity: 1;
}

.band-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 68, 68, 0.2);
}

.band-info {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.band-image, .artist-image {
    width: 300px;
    height: 300px;
    background: #333;
    border: 3px solid #555;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background-image: linear-gradient(45deg, #2a2a2a, #1a1a1a);
}

.band-image:hover {
    border-color: #ff4444;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
}

/* Discography */
.discography {
    margin-top: 2rem;
}

.discography h3 {
    color: #ff4444;
    border-bottom: 1px solid #8b0000;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.album {
    background: rgba(40, 40, 40, 0.9);
    border: 1px solid #555;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.album:hover {
    border-color: #ff4444;
    background: rgba(50, 50, 50, 0.9);
    transform: translateX(10px);
}

.album-info h4 {
    color: #ff6666;
    margin-bottom: 0.5rem;
}

.album-details {
    color: #999;
    font-size: 0.95rem;
}

.album-year {
    background: #8b0000;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Streaming Links */
.streaming-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.streaming-links a {
    background: linear-gradient(45deg, #333, #444);
    color: #e0e0e0;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid #555;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem