
body {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(lavenders-6382337_1280.jpg);
    background-size: cover;
    color: #333;
}


header {
    background-color: #8a2be2;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    background: #682cbf;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    display: inline-block;
}

nav ul li a:hover {
    background: #7b3fe8;
    border-radius: 5px;
}

nav ul li a:active {
   color: #cfaeff;
 
}

.pocetak {
    width: 80%;
    text-align: center;
    padding: 20px;
    background: #fff;
    margin: 20px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px; 
}

.pocetak2{
    width: 80%; 
    height: 250px; 
    padding: 20px;
    margin: 20px auto;
    background-color: white; 
    border: 1px solid #ccc; 
    border-radius: 5px; 
    overflow: auto; 
    text-align: center;
    font-size: large;
}

.highlight table {
    width: 50%; 
    margin: 20px auto; 
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

}

.highlight th, .highlight td {
    padding: 15px;
    text-align: left;
    border: 1px solid #ccc;
}


.highlight tr:first-child {
    background-color: #8a2be2;
    color: white; 
}

.highlight th {
    background: #8a2be2;
    color: #fff;
}

.highlight h3 {
    text-align: center;
    color: #ffffff;
}

.highlight td:hover {
    background-color: #dcc9ff;
    color: rgb(113, 33, 194);
}

.pocetak{
    font-size: large;
}


footer {
    text-align: center;
    padding: 10px;
    background: #8a2be2;
    color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.services {
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    max-width: 800px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services ul {
    list-style: none;
    padding: 0;
}


.services ul li {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.services ul li:hover{
    background-color: #ebe4f5;
}

.services ul li h4 {
    margin: 0 0 10px;
    color: #8a2be2;
}

.services ul li p {
    margin: 5px 0;
}


.gallery {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between; 
    padding: 20px;
}

.gallery-item {
    border: 5px solid purple; 
    padding: 10px;
    background-color: white;
    width: calc(33% - 10px); 
    box-sizing: border-box; 
    margin-bottom: 15px; 
}

.gallery-item img {
    width: 100%; 
    max-width: 300px; 
    height: auto; 
    display: block;
    border-radius: 5px;
    margin: 0 auto; 
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

.reviews {
    padding: 20px 0;
}

.review {
    background-color: #fafafa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-header h3 {
    margin: 0;
    font-size: 1.2em;
    font-weight: bold;
}

.rating {
    font-size: 1.2em;
    color: #ff9900; 
}

.review p {
    font-size: 1em;
    color: #333;
    margin: 0;
}


