* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

/* Header */
header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #2a2a2a;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 2rem;
    color: #c9a03d;
    margin: 0;
    line-height: 1;
}

.logo span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #aaa;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    color: #ddd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #c9a03d;
}

/* Hero */
.hero {
    height: 85vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero h2 {
    font-size: 5rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 8px black;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #ddd;
}

.btn {
    display: inline-block;
    background: #c9a03d;
    color: #0a0a0a;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 2px solid #c9a03d;
    color: #c9a03d;
}

.btn-outline:hover {
    background: #c9a03d;
    color: #0a0a0a;
}

.btn.small {
    padding: 6px 18px;
    font-size: 0.9rem;
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-dark {
    background-color: #111;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: #c9a03d;
    border-bottom: 2px solid #c9a03d;
    display: inline-block;
    width: auto;
    padding-bottom: 8px;
}

/* About page */
.about-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.about-text {
    flex: 2;
}

.about-text ul {
    margin: 15px 0 15px 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Albums */
.albums {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-bottom: 40px;
}

.album-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 16px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s;
}

.album-card:hover {
    transform: translateY(-5px);
}

.album-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.album-card h3 {
    margin: 10px 0 5px;
}

.album-card ul {
    text-align: left;
    margin: 10px 0 15px 20px;
    font-size: 0.9rem;
    color: #bbb;
}

audio {
    width: 100%;
    margin-top: 10px;
}

.listen-links {
    text-align: center;
    margin-top: 20px;
}

.platform {
    display: inline-block;
    margin: 0 10px;
    color: #c9a03d;
    text-decoration: none;
}

/* Tours */
.tour-list {
    max-width: 700px;
    margin: 0 auto;
}

.tour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
    padding: 15px 20px;
    margin-bottom: 12px;
    border-radius: 50px;
    flex-wrap: wrap;
    gap: 15px;
}

.tour-item .date {
    font-weight: bold;
    color: #c9a03d;
}

.tour-item .city {
    flex-grow: 1;
    padding-left: 20px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

/* Contact */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
}

.contact-info p {
    margin-bottom: 15px;
}

.social a {
    color: #c9a03d;
    text-decoration: none;
    margin-right: 15px;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 12px;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
}

.contact-form button {
    align-self: flex-start;
}

footer {
    background: #050505;
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #2a2a2a;
    font-size: 0.9rem;
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    .hero h2 {
        font-size: 3rem;
    }
    .tour-item {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 16px;
    }
    .tour-item .city {
        padding-left: 0;
    }
    .section {
        padding: 50px 0;
    }
    h2 {
        font-size: 2rem;
    }
}