/* ===== COLOR PALETTE ===== */
:root {
    --black: #0d0a0b;
    --gray: #454955;
    --light: #f3eff5;
    --lime: #72b01d;
    --green: #3f7d20;
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light);
    color: var(--black);
    line-height: 1.6;
}

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

.header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.header h1 {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 1rem;
}

.header p {
    font-size: 1.2rem;
    color: var(--gray);
}

/* ===== CAROUSEL STYLES ===== */
.gallery-container {
    position: relative;
    margin: 3rem 0;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.slides-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    padding: 20px 0;
}

.slide {
    min-width: 250px;
    height: 350px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.slide-image {
    width: 100%;
    height: 70%;
    object-fit: cover;
}

.slide-content {
    padding: 1rem;
    text-align: center;
}

.slide-title {
    font-size: 1.2rem;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.slide-link {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--lime);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.slide-link:hover {
    background: var(--green);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--green);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background: var(--lime);
    color: white;
}

.carousel-button.prev {
    left: -25px;
}

.carousel-button.next {
    right: -25px;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
    color: var(--gray);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .slide {
        min-width: 200px;
        height: 300px;
    }
    
    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-button.prev {
        left: -20px;
    }
    
    .carousel-button.next {
        right: -20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .header {
        padding: 1rem 0;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .slide {
        min-width: 180px;
        height: 280px;
    }
}
