/* Futuristic CSS Variables */
:root {
    --primary-color: #00d4ff;
    --secondary-color: #ff6b35;
    --accent-color: #00ff88;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #cc5500 100%);
    --gradient-accent: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
}

* {
    border: 0pt none;
    margin: 0pt;
    padding: 0pt;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', 'Roboto', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.stranica {
    display: grid;
    position: relative;
    font-family: 'Exo 2', 'Roboto', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    min-height: 100vh;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

h1 {
    font-family: 'Crete Round', serif;
    font-weight: 900;
    font-size: 40px;
}

h2 {
    font-weight: 800;
    color: #ffffff;
    font-size: 50px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

h3 {
    font-size: 35px;
    color: #404040;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

h4 {
    font-size: 25px;
    font-weight: 900;
    font-family: 'Crete Round', serif;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

h5 {
    font-size: 15px;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: #404040;
}

a:hover {
    color: orange;
}

strong {
    font-weight: 900;
}

small {
    font-size: 12px;
    color: #868686;
}

.clear {
    clear: both;
}

.content-wrapper {
    width: 100%;
}

.content-wrapper img {
    height: 10%;
    width: 7%;
    margin-left: 1%;
    padding-top: 0.5%;
}

header {
    height: 100%;
    background-color: #74d9e2;
    box-shadow: 6px 8px 10px #74d9e2;
}

header h1 {
    float: left;
}

header h1 .color {
    color: #da0909;
}

header nav {
    float: right;
    width: 50%;
}

header nav ul li {
    display: inline-block;
    margin-top: 7%;
}

header nav ul li a {
    color: #404040;
    text-transform: uppercase;
    font-weight: 900;
    display: block;
    margin-right: 10px;
}

.main {
    height: 100%;
    width: 100%;
    display: grid;
    align-items: center;
    text-align: center;
    background: whitesmoke;

}
.main h1{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}
.main h3{
    padding-top: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}
.slike1{
    /* display: inline-block;
    align-items: center;
    justify-content:  space-between;
    gap: 30px;
     */

    margin: 5px;
    padding-right: 3%;
    padding-left: 3%;
     display: flex;
     flex-direction: row;
     justify-items: center;
     align-content: center;
     align-items: center;
     gap: 20px;
}
/* FOOTER */
footer {
    margin-top: 2%;
    height: 40px;
    float: left;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    margin-left: 1%;
    display: flex;
}

footer .h6 {
    font-size: 10px;
    font-weight: 500;
    float: left;
    text-align: left;
    text-decoration: none;
    display: flex;
}

footer .mreze{
    width: 100px;
    gap: 8px;
    display: flex;
    align-items: center;
    /* justify-content: space-around; */
}

footer h6 .mail {
 float: right;
 margin-right: 5%;
}