/* Base Styles */
:root {
    --primary-color: #e60000;
    --secondary-color: #1a1a1a;
    --text-color: #ffffff;
    --bg-color: #0a0a0a;
    --card-bg: #1a1a1a;
    --card-hover: #2a2a2a;
    --header-height: 80px;
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Metal+Mania&display=swap');

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-family: 'Metal Mania', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.section-desc {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #cccccc;
}

.btn {
    display: block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 0 auto;
    text-align: center;
    width: 60%;
    font-size: 0.8rem;
}

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

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.9);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: var(--header-height);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 70px; /* Aumentado de 50px para 70px */
    height: 70px; /* Aumentado de 50px para 70px */
    margin-right: 15px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.logo-container h1 {
    font-family: 'Metal Mania', cursive;
    font-size: 1.8rem; /* Aumentado de 1.5rem para 1.8rem */
    font-weight: 900;
    letter-spacing: -1px; /* Reduced from 0px to -1px to bring the words closer together */
}

nav ul {
    display: flex;
    justify-content: space-between; /* Ensure equal spacing between items */
}

nav ul li {
    margin: 0 12px; /* Equal margin for all items */
}

nav ul li a {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
}

.header-actions a {
    margin-left: 20px;
    font-size: 1.2rem;
}

.language-selector {
    margin-right: 15px;
}

#language-select {
    padding: 5px 8px;
    border-radius: 4px;
    background-color: #333;
    color: white;
    border: 1px solid #444;
    cursor: pointer;
    font-size: 0.9rem;
}

#language-select:hover {
    background-color: #444;
}

#language-select option {
    background-color: #333;
}

.search-container {
    display: flex;
    align-items: center;
    position: relative;
}

#search-input {
    padding: 8px 12px;
    border-radius: 20px;
    border: none;
    background-color: #333;
    color: white;
    width: 200px;
}

#search-button {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://aqdybzrg.manus.space/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
}

.hero-title {
    font-family: 'Metal Mania', cursive;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 5px;
    color: var(--primary-color);
}

.label-description {
    font-size: 0.9rem;
    max-width: 800px;
    margin-bottom: 20px;
    color: #cccccc;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin-bottom: 40px;
}

.hero-btn {
    font-size: 1.1rem;
    padding: 15px 30px;
    background-color: transparent;
    border: 2px solid #e60000;
    color: white;
    transition: all 0.3s ease;
}

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

/* Releases Section */
.releases-section, .most-viewed-section {
    padding: 100px 5%;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.release-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.release-card:hover {
    transform: translateY(-10px);
}

.release-img-container {
    position: relative;
    height: auto;
    padding: 0;
    margin: 0;
}

.release-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-tag {
    display: none;
}

.release-info {
    padding: 0;
    margin-top: 0;
}

.release-title {
    font-size: 1.3rem;
    margin: 0;
    padding: 0 15px;
}

.release-artist {
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    padding: 0 15px;
}

.release-date {
    font-size: 0.9rem;
    color: #aaaaaa;
    margin: 0;
    padding: 0 15px;
}

.release-info iframe {
    margin: 5px 0;
    border-radius: 4px;
}

/* Artists Section */
.artists-section {
    padding: 100px 5%;
    background-color: #0d0d0d;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.artist-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-10px);
}

.artist-img-container {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.artist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artist-card:hover .artist-img {
    transform: scale(1.1);
}

.artist-name {
    font-family: 'Metal Mania', cursive;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.artist-genre {
    color: var(--primary-color);
    font-weight: 700;
}

/* Genres Section */
.genres-section {
    padding: 100px 5%;
}

.genres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.genre-card {
    position: relative;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.genre-card:hover {
    transform: translateY(-10px);
}

.genre-img-container {
    height: 100%;
}

.genre-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.genre-card:hover .genre-img {
    transform: scale(1.1);
}

.genre-name, .genre-desc {
    position: absolute;
    left: 20px;
    color: var(--text-color);
    z-index: 1;
}

.genre-name {
    bottom: 50px;
    font-size: 1.5rem;
    font-weight: 900;
}

.genre-desc {
    bottom: 20px;
    font-size: 1rem;
}

.genre-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    background-color: #0d0d0d;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.social-links {
    display: flex;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--card-bg);
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: none;
    background-color: var(--card-bg);
    color: var(--text-color);
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #ff1a1a;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 50px 5% 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    gap: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 150px; /* Aumentado de 100px para 150px */
    height: 150px; /* Aumentado de 100px para 150px */
    margin-bottom: 15px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    object-fit: cover;
}

.footer-logo h3 {
    font-family: 'Metal Mania', cursive;
    font-size: 1.6rem; /* Aumentado de 1.3rem para 1.6rem */
    font-weight: 900;
}

.footer-description {
    font-size: 0.8rem;
    color: #cccccc;
    margin-top: 5px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-container {
        padding: 0 3%;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 20px 3%;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .header-actions {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .releases-grid, .artists-grid, .genres-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-links {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .releases-grid, .artists-grid, .genres-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}
