/* Vispārējie stili */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f4f8;
    margin: 0;
    padding: 0;
    color: #333;
}

h1, h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2a9d8f;
}

a {
    text-decoration: none;
}

nav {
    background-color: #264653;
    padding: 15px 0;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px;
    transition: background 0.3s ease;
}

nav ul li a:hover {
    background-color: #2a9d8f;
    border-radius: 5px;
}

section {
    padding: 60px 0;
    margin: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 40px auto;
}

/* Projekti */
.project-card {
    background-color: #e9c46a;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.project-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #264653;
}

footer {
    text-align: center;
    background-color: #264653;
    color: white;
    padding: 20px 0;
}

footer a {
    color: #2a9d8f;
	a, button {
    color: #fff;
    background-color: #53a23a;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

a:hover, button:hover {
    background-color: #45a049;
    transform: scale(1.1);
}
.design-section {
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin: 20px auto;
    width: 80%;
}

.design-section h2 {
    text-align: center;
    color: #53a23a;
    margin-bottom: 20px;
}

.design-section h3 {
    color: #2b2b2b;
    margin-top: 30px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
}

.color-box {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border: 1px solid #ccc;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex; /* Visas pogas vienā rindā */
    justify-content: space-around; /* Izvieto tās vienmērīgi */
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    background-color: #53a23a;
    border-radius: 5px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #45a031;
}

/**/
nav_spec ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex; /* Visas pogas vienā rindā */
    justify-content: space-around; /* Izvieto tās vienmērīgi */
}

nav_spec ul li {
    display: inline;
}

nav_spec ul li a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    background-color: #53a23a;
    border-radius: 5px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

nav_spec ul li a:hover {
    background-color: #45a031;
}

