/* Reset some default styles */
html {
    font-family: Verdana;
    font-size: 1.2rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
        background-color: var(--color-blue);
        font-weight: 500;
        color: rgb(0, 0, 0);
        font-size: 1rem;
}

/* Header styles */
header {
    color: #fff;
    padding: 1rem 0;
    position: absolute;
    width: 100vw;
    height: 50px;
}

nav ul {
    position: absolute;
    list-style: none;
    display: flex;
    justify-content: center;
    border: 0;
    right: 0;
}

nav ul li {
    margin: 0 50px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #b9ad00;
}

/* Hero Section styles */
.hero {
    background: url('Sekolah.jpg') no-repeat center center/cover;
    color: rgb(255, 255, 255);
    padding: 250px 0;
    line-height: 1.5rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 30px;
}

.btn {
    background: #b9ad00;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #0056b3;
}
/* About Section styles */
.about {
    background: #fff;
    padding: 50px 20px;
    /* text-align: center; */
    /* display: flex; */
    width: 100%;
    align-items: center;
}

.about h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: xx-large;
}

.about img {
    width: 30%;
    border-radius: 50%;
}

.about .container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about input {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}
/* Projects Section styles */
.projects {
    padding: 50px 20px;
}

.projects h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: xx-large;
}

.projects ul {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    list-style: none;
}

.projects li {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    width: 30%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.projects img {
    max-width: 100%;
    border-radius: 10px;
}

/* Contact Section styles */
.contact {
    background: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact input, .contact textarea {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Footer styles */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
