/* About section styles */
.about-section {
    width: 100%;
    background: #0f0606;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 0 32px 0;
    margin: 0;
    scroll-margin-top: -80px;
}
.about-container {
    display: flex;
    flex-direction: row;
    max-width: 100vw;
    width: 100%;
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.3);
    margin: 32px auto 0 auto;
    gap: 24px;
}
.about-image {
    flex: 1 1 50%;
    min-width: 320px;
    max-width: 50%;
    display: flex;
    align-items: stretch;
    background: #181212;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-content {
    flex: 1 1 50%;
    padding: 32px 24px 24px 24px;
    background: #0f0606;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}
.about-label {
    font-family: 'Special Elite', cursive;
    color: #b0b0b0;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 50px;
    font-weight: 600;
}
.about-title {
    font-family: 'Special Elite', cursive;
    font-size: 1.6rem;
    margin: 0 0 40px 0;
    line-height: 1.1;
}
.about-lead {
    font-family: 'Rubik', Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    margin-bottom: 14px;
    color: #fff;
    line-height: 1.4;
}
.about-content p {
    color: #e0e0e0;
    font-size: 0.95rem;
    margin-bottom: 14px;
    line-height: 1.5;
}
.about-buttons {
    display: flex;
    gap: 20px;
    margin-top: 18px;
}
.about-btn {
    font-family: 'Rubik', Arial, Helvetica, sans-serif;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 1px;
}
.about-btn:hover {
    background: #fff;
    color: #0f0606;
}
.site-footer {
    width: 100%;
    background: #0f0606;
    color: #fff;
    text-align: center;
    padding: 24px 0 18px 0;
    font-family: 'Special Elite', cursive;
    font-size: 1.15rem;
    letter-spacing: 1.5px;
    margin-top: 0;
    border-top: 1px solid #222;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        max-width: 98vw;
        gap: 0;
    }
    .about-image, .about-content {
        max-width: 100%;
    }
    .about-content {
        padding: 18px 8px 14px 8px;
        gap: 8px;
    }
    .about-title {
        font-size: 1.1rem;
    }
    .about-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    .about-buttons {
        gap: 10px;
    }
}
@media (max-width: 600px) {
    .about-section {
        padding: 0 0 16px 0;
    }
    .about-title {
        font-size: 0.95rem;
    }
    .about-content {
        padding: 8px 2vw 8px 2vw;
        gap: 6px;
    }
    .about-buttons {
        flex-direction: column;
        gap: 6px;
        margin-top: 10px;
    }
    .about-btn {
        width: 100%;
        text-align: center;
        padding: 7px 0;
        font-size: 0.8rem;
    }
}
/* Base styles for Anne Band Website */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Special Elite', cursive;
    background-color: #1a1a1a;
    color: white;
}
