/* Grundlayout */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

/* Header */
header {
    background-color: #0a3d62;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.8em;
    font-weight: bold;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

/* Hero */
.hero {
    background-color: #1e90ff;
    color: white;
    padding: 80px 40px;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto;
}

/* Sektionen */
.section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: auto;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #0a3d62;
}

/* Feature Boxen */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.feature {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    color: #1e90ff;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #0a3d62;
    color: white;
    padding: 30px 40px;
    text-align: center;
}

footer a {
    color: #ddd;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* automation-section styles */

.automation-section {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 2rem;
}

.automation-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    flex: 1 1 400px;
    box-sizing: border-box;
}

.automation-logo {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.automation-logo img {
    max-height: 100%;
    max-width: 300px;
    height: auto;
    width: auto;
    object-fit: contain;
}



/* org

.automation-card img {
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.automation-logo {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.automation-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}


.automation-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    width: 400px;
    text-align: center;
}

.automation-card img {
    margin-bottom: 15px;
}
*/

.benefits {
    max-width: 800px;
    margin: 40px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.benefits ul {
    list-style: none;
    padding: 0;
}

.benefits li {
    padding: 10px 0;
    font-size: 1.1em;
}

.benefits li::before {
    content: "✔️ ";
    color: green;
}

.intro-centered {
    text-align: center;
    padding: 50px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.intro-centered h1 {
    font-size: 2.2em;
    color: #007acc;
    margin-bottom: 20px;
}

.intro-centered p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
}

/* povećati e */
.logo .e {
    font-size: 1.3em;
}

/* logo e */
.hero .e {
    font-size: 1.3em;
}


/* infrarot*/
.product-card {
    display: flex;
    align-items: center;
    background-color: #ffffff; /* Bijela pozadina */
    padding: 20px;
    margin: 40px auto; /* Veća margina za prozračnost */
    max-width: 1000px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    gap: 20px;
}

.product-card img {
    border-radius: 8px;
    width: 300px;
    height: 300px;
    object-fit: cover;
}

.product-card div {
    flex: 1;
}

.product-card h3 {
    margin-top: 0;
    color: #007acc;
}

.product-card p {
    line-height: 1.6;
    color: #333;
}

.product-card a {
    display: inline-block;
    margin-top: 10px;
    color: #007acc;
    text-decoration: none;
    font-weight: bold;
}

.product-card a:hover {
    text-decoration: underline;
}