body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.splash-section {
    height: 100vh;
    background: #333 url('background.jpg') no-repeat center center/cover;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash-content h1 {
    font-size: 4rem;
    margin: 0;
}

.splash-content p {
    font-size: 1.5rem;
}

.navbar {
    background: #444;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    margin: 0 20px;
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
}

.navbar ul li a:hover {
    background: #555;
    border-radius: 5px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #444;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #555;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.about-section, .projects-section, .skills-section, .contact-section {
    padding: 60px 20px;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.project-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.project-item {
    background: #f4f4f4;
    padding: 20px;
    flex: 1 1 calc(33% - 40px);
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

.contact-section form {
    display: flex;
    flex-direction: column;
}

.contact-section label {
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-section input, 
.contact-section textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-section button {
    padding: 10px;
    background: #444;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-section button:hover {
    background: #555;
}
