/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
    color: #fff;
}

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

/* Шапка */
.header {
    background: linear-gradient(135deg, #8B0000 0%, #000 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav {
    padding: 1rem 0;
    position: relative;
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    border-radius: 50%;
    border: 2px solid #8B0000;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-menu a:hover {
    color: #ff4444;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.nav-logo {
    color: #fff;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(0,0,0,0.25);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hamburger {
    position: relative;
    width: 20px;
    height: 2px;
    background: #fff;
    display: block;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: #fff;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    top: 6px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.main-content {
    padding: 60px 0 80px;
}

.lead {
    font-size: 1.2rem;
    max-width: 850px;
    margin: 0 auto;
    color: #ddd;
    text-align: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero секция */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(139,0,0,0.7)), url('/foto/6585378_original.png') center/cover;
    padding: 200px 0;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

.hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Секции */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: rgba(139,0,0,0.1);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #ff4444;
    text-transform: uppercase;
    font-weight: 700;
}

/* О группе */
.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-content strong {
    color: #ff4444;
}

/* Концерты */
.concerts-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.concert-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,68,68,0.3);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.concert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,68,68,0.3);
}

.concert-city {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff4444;
    margin-bottom: 0.5rem;
}

.concert-date {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.concert-venue {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #999;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff4444, #8B0000);
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255,68,68,0.5);
}

/* Музыка */
.music-widgets {
    margin-top: 2rem;
    text-align: center;
}

.music-widgets iframe {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-width: 100%;
}

/* Фото галерея */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.photo-gallery img {
    display: block;
    max-width: 100%;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.photo-item:hover {
    transform: scale(1.05);
}

.photo-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Навигационные ссылки */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.link-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,68,68,0.3);
    border-radius: 10px;
    padding: 2rem;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
    text-align: center;
}

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

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

.link-card p {
    opacity: 0.8;
}

/* Футер */
.footer {
    background: linear-gradient(135deg, #000 0%, #8B0000 100%);
    padding: 3rem 0 1rem;
    border-top: 2px solid #8B0000;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ff4444;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.social-links a {
    background: rgba(255,68,68,0.2);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: rgba(255,68,68,0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,68,68,0.3);
    color: #999;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-caption {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    padding: 0.7rem 1rem;
    background: rgba(0,0,0,0.55);
    color: #fff;
    border-radius: 999px;
    font-size: 0.95rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-nav:hover {
    background: rgba(255,68,68,0.55);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-nav:disabled {
    opacity: 0.35;
    cursor: default;
}

/* Адаптивность */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #8B0000 0%, #000 100%);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        z-index: 1100;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .links-grid {
        grid-template-columns: 1fr;
    }

    .photo-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    section {
        padding: 60px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .concert-card {
        padding: 1.5rem;
    }

    .link-card {
        padding: 1.5rem;
    }
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Дополнительные стили для страниц */
.page-header {
    background: linear-gradient(135deg, #8B0000 0%, #000 100%);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
}

.breadcrumb {
    background: rgba(139,0,0,0.1);
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #ff4444;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    color: #666;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.content-section h3 {
    color: #ff4444;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.song-list {
    list-style: none;
}

.song-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,68,68,0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.song-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255,68,68,0.3);
}

.song-title {
    font-size: 1.3rem;
    color: #ff4444;
    margin-bottom: 0.5rem;
}

.song-description {
    color: #ccc;
    margin-bottom: 1rem;
}

.lyrics-section {
    background: rgba(139,0,0,0.1);
    border-left: 4px solid #ff4444;
    padding: 2rem;
    margin: 2rem 0;
    font-style: italic;
    line-height: 1.8;
}

.contact-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,68,68,0.3);
    border-radius: 10px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ff4444;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,68,68,0.3);
    border-radius: 5px;
    color: #fff;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff4444;
    background: rgba(255,255,255,0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.success-message {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #4CAF50;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 1rem;
}

.error-message {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #f44336;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 1rem;
}
