/* 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;
}
/* Hero Section */
.ppdb-intro {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to right, #ffccdd, #bbddff);
    color: white;
}

.section-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.intro-text, .intro-highlight {
    font-size: 18px;
}

/* PPDB Info */
.ppdb-info {
    padding: 40px 20px;
    text-align: center;
}

.info-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.info-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 45%;
}

.info-box h3 {
    color: #ff4081;
}

/* Brosur PPDB */
.brosur-ppdb {
    text-align: center;
    padding: 40px 20px;
}

.brosur-container img {
    max-width: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Video PPDB */
.video-ppdb {
    text-align: center;
    padding: 40px 20px;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.video-container iframe {
    width: 80%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: #ff8ec7;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}
