/* Carousel styles */
.carousel {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(139, 107, 79, 0.2);
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    height: 400px;
    object-fit: cover;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(241, 225, 176, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #8b6b4f;
}

.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }

/* Social links */
.social-links {
    text-align: center;
    padding: 2rem 0;
}

.social-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    border-radius: 25px;
    text-decoration: none;
    color: #8b6b4f;
    background-color: #f1e1b0;
    transition: all 0.3s ease;
}

.social-button:hover {
    background-color: #8b6b4f;
    color: white;
}

/* Footer */
.footer {
    background-color: #ffffff;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .carousel {
        height: 300px;
    }
} 