/* Gaya Dasar */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fef4ff;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(90deg, #FFDEE9, #B5FFFC);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px 15px;
    background: white;
    border-radius: 25px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background: #FF69B4;
    color: white;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu li {
    width: 200px;
}

.dropdown-menu li a {
    display: block;
    padding: 10px;
    border-radius: 0;
}

.dropdown-menu li a:hover {
    background: #FF69B4;
    color: white;
}

/* Visi & Misi */
.about {
    padding: 60px 20px;
    background: #fef4ff;
    text-align: center;
}

.about-header {
    margin-bottom: 30px;
}

.visimisi-title {
    font-size: 36px;
    color: #ff4081;
    font-weight: bold;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    flex: 1;
    max-width: 450px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.visi h3, .misi h3 {
    color: #ff4081;
    font-size: 24px;
    margin-bottom: 15px;
}

.visi p, .misi ul {
    font-size: 16px;
    color: #555;
    text-align: left;
}

.misi ul {
    list-style: none;
    padding: 0;
}

.misi ul li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}

.misi ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff4081;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #ff8ec7;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}
