/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Background */
body {
    background: linear-gradient(to right, #fceabb, #f8b500);
    color: #5a3e2b;
    text-align: center;
}

/* Navbar */
header {
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

nav {
    display: flex;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #5a3e2b;
}

ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-left: auto;
    margin-right: 50px;
}

ul li a {
    text-decoration: none;
    color: #5a3e2b;
    font-weight: 500;
    transition: 0.3s;
}

ul li a:hover {
    color: black;
}

/* Contact Button */
.contact-btn {
    background: #5a3e2b;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: black;
}

/* About Section */
.about {
    max-width: 800px;
    margin: 120px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

p {
    font-size: 18px;
    margin-bottom: 15px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .about {
        width: 90%;
        padding: 15px;
    }
}
