/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav a {
    text-decoration: none;
    color: #333;
    margin-left: 1.5rem;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #c14468;
}

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

.logo svg {
    width: 50px;
    height: 50px;
}

/* Section Styles */
section {
    padding: 3rem 2rem;
}

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

section:nth-child(even) {
    background-color: white;
}

h1,
h2,
h3 {
    margin-bottom: 1rem;
    color: #222;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #c14468;
    margin: 0.5rem auto;
}

.intro {
    text-align: center;
    margin-bottom: 3rem;
}

.intro p {
    font-size: 1.2rem;
    color: #666;
}

/* About Section */
.about {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.card {
    flex: 1 1 300px;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

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

.card h2 {
    color: #c14468;
    margin-top: 0;
}

/* Concerts Section */
.concert-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.concert-item {
    background: #f0f0f0;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.date {
    font-weight: bold;
    color: #c14468;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #c14468, #d9534f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Contact Section */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.contact-card {
    flex: 1 1 300px;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
    color: #c14468;
    margin-top: 0;
}

.contact-card a {
    color: #c14468;
    text-decoration: none;
    transition: text-decoration 0.3s;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo svg {
    width: 60px;
    height: 60px;
}

.copyright {
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    nav a {
        margin: 0;
    }

    section {
        padding: 2rem 1rem;
    }

    .about {
        flex-direction: column;
    }

    .contact-info {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .concert-item {
        padding: 1rem;
    }

    .card,
    .contact-card {
        padding: 1rem;
    }
}
