
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(45deg, #f1f1f1, #e8d8b1); 
    color: #4a3f35; 
    margin: 0;
    padding: 0;
}

header {
    background-color: #4a3f35;
    color: #fff;
    text-align: center;
    padding: 30px;
}

header h1 {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
}

header p {
    font-size: 18px;
    margin-top: 10px;
}

main {
    padding: 20px;
}

h2 {
    text-align: center;
    color: #4a3f35;
    font-size: 28px;
    margin-bottom: 30px;
}


.swiper {
    width: 100%;
    height: 400px;
    border-radius: 15px; 
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 3px;
}

.author a {
    color: #fff;
    text-decoration: none;
}

.author a:hover {
    text-decoration: underline;
}


.swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: #f48917 !important; 
}

.swiper-pagination-bullet:hover {
    background-color: #f1d87f !important; 
}


.swiper-button-next, .swiper-button-prev {
    color: #f48917 !important; 
    font-size: 24px;
    font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    color: #f1d87f !important; 
}