@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background: #fdfaf6;
    color: #333;
}

/* --- General Section Styling --- */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 5vw, 48px);
    text-align: center;
    color: #1a2930;
    margin-bottom: 40px;
}

/* Header com Menu */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.menu-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #a37e2c;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    z-index: 1001;
}

.menu-toggle:hover {
    background: #8b6923;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(163, 126, 44, 0.3);
}

.menu-icon {
    font-size: 20px;
}

.sidebar {
    position: fixed;
    left: -300px;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #1a2930 0%, #101c26 100%);
    padding: 80px 30px 30px;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 5px 0 20px rgba(0,0,0,0.2);
}

.sidebar.active {
    left: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 998;
}

.sidebar-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.sidebar nav a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    transition: all 0.3s;
    font-weight: 500;
}

.sidebar nav a:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

/* Hero Banner */
.hero-banner {
    width: 100%;
    height: 60vh;
    min-height: 350px;
    max-height: 600px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1588444968576-f7b9987c88a8?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 900;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.5);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(16px, 3vw, 22px);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-accent {
    width: 100px;
    height: 4px;
    background: #a37e2c;
    margin: 0 auto;
    border-radius: 2px;
}

/* Slider Container */
.slider-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.slides-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.slide-image {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.slide-image:hover img {
    transform: scale(1.05);
}

.slide-content {
    flex: 1;
}

.slide-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 4vw, 42px);
    color: #1a2930;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: #444;
}

.slide-content .highlight {
    color: #a37e2c;
    font-weight: 700;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: #fdfaf6;
}

.slider-btn {
    background: #1a2930;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(26, 41, 48, 0.2);
}

.slider-btn:hover {
    background: #a37e2c;
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #1a2930;
    width: 30px;
    border-radius: 6px;
}

.slide-counter {
    font-size: 18px;
    font-weight: 700;
    color: #1a2930;
}

/* Accessibility Icons */
.accessibility-bar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 900;
}

.access-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1a2930;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(26, 41, 48, 0.2);
    transition: all 0.3s;
}

.access-btn:hover {
    background: #a37e2c;
    transform: scale(1.1);
}

/* Artists Section */
.artists-section {
    padding: 80px 20px;
    background: #fdfaf6;
    max-width: 1400px;
    margin: 0 auto;
}

.artists-slider-container {
    position: relative;
    overflow: hidden;
}

.artists-slides-wrapper {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
}

.artist-slide {
    flex: 0 0 320px;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.artist-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.artist-images {
    margin-bottom: 20px;
}

.main-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnails {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.thumbnails img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.thumbnails img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.artist-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #1a2930;
    margin-bottom: 10px;
    margin-top: auto;
}

.artist-bio {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    flex-grow: 1;
}

.artist-social-link {
    margin-top: 20px;
    color: #1a2930;
    transition: color 0.3s;
}

.artist-social-link:hover {
    color: #a37e2c;
}

.artists-slider-controls {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: #fdfaf6;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #a37e2c;
    box-shadow: 0 0 0 3px rgba(163, 126, 44, 0.2);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    display: inline-block;
    width: 100%;
    padding: 18px;
    background: #1a2930;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.submit-btn:hover {
    background: #a37e2c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(163, 126, 44, 0.3);
}

/* Responsive */
@media (min-width: 768px) {
    .slide {
        flex-direction: row;
        align-items: center;
        padding: 60px;
    }

    .slide-image {
        width: 45%;
        height: 400px;
    }

    .slide-content {
        width: 55%;
        padding-left: 40px;
    }

    .hero-banner {
        height: 70vh;
    }

    .artist-slide {
        flex: 0 0 320px;
    }
}

@media (min-width: 1024px) {
    .slide-image {
        height: 500px;
    }

    .menu-toggle {
        display: none;
    }

    .sidebar {
        left: 0;
    }

    .slider-section,
    .hero-banner,
    .artists-section {
        padding-left: 280px;
        padding-right: 20px;
    }

    .contact-section {
        padding-left: 280px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .accessibility-bar {
        left: 10px;
        gap: 10px;
    }

    .access-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .slide {
        padding: 25px;
    }

    .slider-controls {
        padding: 20px;
    }

    .contact-container {
        padding: 25px;
    }

    .artists-slides-wrapper {
        gap: 20px;
    }

    .artist-slide {
        flex: 0 0 280px;
    }
}
