/* ÜLDINE STIIL */
body {
    font-family: 'Agbalumo', sans-serif;
    margin: 0;
    padding: 0;
    background-image: 
        url('img/background.png'),
        linear-gradient(135deg, #0a1128, #001f54, #034078, #1481ba);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-blend-mode: overlay;
    color: #3c4059;
    padding-bottom: 80px;
}

/* HEADER */
header {
    background: url('img/background.png') center/cover no-repeat;
    color: #fff;
    padding: 80px 0;
    height: 150px;
    text-align: center;
}

nav ul {
    list-style-type: none;
    text-align: center;
    padding: 10px 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* SISU BOKSID */
.content {
    margin: 20px auto;
    max-width: 800px;
    background-color: rgba(173, 216, 230, 0.5);
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #261313;
}

/* ABOUT-SEKTSIOON */
.about-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* PILT MINUST */
.about-pic {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

/* VORMID */
input, textarea {
    padding: 10px;
    border: 1px solid #add8e6;
    border-radius: 25px;
    margin-bottom: 20px;
    width: 300px;
    font-size: 16px;
    background-color: rgba(173, 216, 230, 0.5);
    color: #261313;
}

/* SEARCH BAR */
.search-bar {
    text-align: center;
    margin: 20px 0;
}

.search-input {
    padding: 10px;
    border: 1px solid #000;
    border-radius: 25px;
    width: 200px;
    font-size: 16px;
    color: #808080;
    background-color: #fff;
}

.search-input::placeholder {
    color: #b0b0b0;
}

.search-button {
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #333;
}

/* VORM */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    margin-bottom: 10px;
    color: #fff;
}

/* FOOTER */
footer {
    background-color: #001f3f;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%; /* Ümmargune kuju */
    object-fit: cover;
    position: absolute;
    top: 20px;
    right: 20px;
    border: 3px solid #fff; /* Valge raam ümber */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Kerge vari */
    z-index: 10;
}

/* PROJEKTI PILDID - KUMERAD NURKAD */
.project img {
    border-radius: 15px; /* Kumerad nurgad */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Kerget vari */
}
