/**
 * AlterEgo Band - Custom Styles
 * Additional styling for band-specific features
 */

/* =============================================================
   BAND HERO SECTION
   ============================================================= */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2A1810 0%, #3A2818 30%, #4A3728 70%);
    color: #fff;
    text-align: center;
    padding: 5rem 0;
    overflow: hidden;
    width: 100%;
}

.hero-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(201, 169, 97, 0.05) 10px,
            rgba(201, 169, 97, 0.05) 20px
        );
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.7), 0 0 20px rgba(201,169,97,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #fff;
    font-style: italic;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================================
   SECTIONS
   ============================================================= */
.about-section,
.latest-album-section,
.concerts-section,
.members-section,
.contact-section {
    padding: 5rem 0;
    width: 100%;
    overflow: hidden;
}

.about-section {
    background: #FAF8F3;
}

.latest-album-section {
    background: #fff;
}

.concerts-section {
    background: #F5F5F0;
}

.members-section {
    background: #fff;
}

.contact-section {
    background: linear-gradient(135deg, #3A2818 0%, #4A3728 50%, #C9A961 100%);
    color: #fff;
}

.contact-section h2,
.contact-section p {
    color: #fff;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4A3728;
}

/* =============================================================
   CONCERTS
   ============================================================= */
.concerts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.concert-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.concert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.concert-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.concert-details {
    padding: 1.5rem;
}

.concert-details h3 {
    margin-bottom: 0.5rem;
}

.concert-meta {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
}

.concert-meta > div {
    margin-bottom: 0.5rem;
}

.concert-meta > div:last-child {
    margin-bottom: 0;
}

/* =============================================================
   ALBUMS
   ============================================================= */
.album-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.album-cover img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.album-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* =============================================================
   BAND MEMBERS
   ============================================================= */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.member-card {
    text-align: center;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
}

.member-image {
    margin-bottom: 1rem;
}

.member-image img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto;
}

.member-info h3 {
    margin-bottom: 0.5rem;
}

.member-role {
    color: #666;
    font-style: italic;
    margin-bottom: 0.5rem;
}

/* =============================================================
   LANGUAGE SWITCHER
   ============================================================= */
.language-switcher-dropdown {
    display: flex;
    gap: 0.25rem;
}

.lang-item {
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    color: #fff;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.lang-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.lang-item.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.lang-name {
    font-weight: 600;
}

/* =============================================================
   SOCIAL LINKS
   ============================================================= */
.social-links,
.social-links-large {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links-large .social-link {
    width: 60px;
    height: 60px;
}

.social-link:hover {
    background: #000;
    transform: translateY(-3px);
}

/* Social media brand colors */
.social-facebook:hover { background: #1877f2; }
.social-instagram:hover { background: #e4405f; }
.social-youtube:hover { background: #ff0000; }
.social-spotify:hover { background: #1db954; }
.social-bandcamp:hover { background: #629aa9; }
.social-soundcloud:hover { background: #ff5500; }

/* =============================================================
   MOBILE MENU
   ============================================================= */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: #fff;
    left: 0;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

/* =============================================================
   RESPONSIVE DESIGN
   ============================================================= */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .album-showcase {
        grid-template-columns: 1fr;
    }

    .concerts-grid,
    .members-grid {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation .menu-wrapper {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000;
        padding: 1rem;
    }

    .main-navigation .menu-wrapper.active {
        display: block;
    }

    .primary-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .language-switcher {
        margin-top: 1rem;
    }
}

/* =============================================================
   ANIMATIONS
   ============================================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
