/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

/* Navbar */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #d0bfff, #a3c4ff);
    padding: 15px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    text-align: center;
}

.hero img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

/* Deskripsi */
.description {
    text-align: center;
    padding: 40px;
}

.description h2 {
    font-size: 2em;
    color: #4a4a4a;
}

/* Carousel */
.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 80%;
    margin: auto;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin: 10px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 20px;
    border-radius: 5px;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Comments */
.comments {
    text-align: center;
    padding: 40px;
}

.comments textarea {
    width: 80%;
    height: 100px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.comments button {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    background: #a3c4ff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.comments button:hover {
    background: #6a11cb;
}

/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #a3c4ff, #d0bfff);
    padding: 15px 40px;
    color: white;
}
