﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: "Times New Roman", Times, serif;
    background-image: url(../img/bg-body.gif);
    background-repeat: repeat;
    color: #000;
    line-height: 1.6;
}


.page-wrapper {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.top-bar {
    display: flex;
    justify-content: flex-end;
    font-size: 0.9rem;
}

    .top-bar a {
        margin-left: 15px;
        color: #e08327;
        font-weight: bold;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12px;
        text-decoration: none;
    }

        .top-bar a:hover {
            color: #e08327;
        }


.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    position: relative;
}

.logo img {
    max-height: 110px;
}

.main-nav {
    display: flex;
    align-items: center;
    margin-bottom: -80px;
}
.main-nav-second {
    display:none;
}

.main-nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

        .main-nav a:hover {
            color: #e08327;
        }


.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    width: 30px;
    height: 25px;
}

    .hamburger span {
        height: 3px;
        background: #333;
        margin: 4px 0;
        border-radius: 2px;
        transition: 0.3s;
    }


.hero {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
}

.hero-left {
    flex: 2;
    min-width: 350px;
    padding: 10px;
}

.hero-right {
    flex: 1;
    min-width: 250px;
    padding: 10px;
}

.small-note {
    font-size: 0.8rem;
    color: #0073e6;
    margin-top: 5px;
}

h1.boja {
    color: #e08327;
    font-weight: normal;
}


.contact-info {
    margin-top: 10px;
}

.contact-phone, .contact-email {
    padding: 10px 0;
    font-size: 18px;
    color: #000000;
    font-weight: bold;
}

    .contact-phone a, .contact-email a {
        color: #e08327;
        font-weight: bold;
    }

.hero-right h3 {
    padding-top: 20%;
}

p.side-text {
    border-top: 1px solid #ccc;
    margin-top: 10px;
    padding-top: 15px;
    color: #000;
    text-align: justify;
}


.content {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

.content-left {
    flex: 2;
    min-width: 350px;
    padding: 10px;
}
    .content-left p {
        font-size: 16px;
        padding-bottom: 15px;
    }
    .content-left h2 {
        color: #e08327;
    }


.content-right {
    flex: 1;
    min-width: 250px;
    padding: 10px;
}

    .content-right ul {
        list-style: none;
        padding-left: 0;
    }

    .content-right li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 8px;
        font-size: 0.95rem;
        line-height: 1.4;
    }

        .content-right li img {
            margin-right: 8px;
            margin-top: 3px;
            width: 16px;
            height: 16px;
        }


.main-footer {
    border-top: 1px solid #ccc;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    font-size: 0.9rem;
}

.footer-nav a {
    color: #333;
    text-decoration: none;
    margin: 0 5px;
}

    .footer-nav a:hover {
        text-decoration: underline;
    }
.content-left a {
    color: #e08327;
}


@media (max-width: 768px) {
    h1 {
        line-height: 1;
        padding-bottom: 15px;
    }
    h2 {
        line-height: 1;
        padding-bottom: 15px;
    }
    .hero, .content {
        flex-direction: column;
    }

    .hero-left, .hero-right,
    .content-left, .content-right {
        flex: 1;
        min-width: 100%;
    }


    .hamburger {
        display: flex;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #f9f9f9;
        padding: 10px 0;
        position: absolute;
        top: 100%;
        left: 0;
        border: 1px solid #ddd;
    }

        .main-nav a {
            margin: 10px 0;
            text-align: center;
            border-bottom: none;
        }

        .main-nav.active {
            display: flex;
        }

    .hero-right h3 {
        padding-top: 10px;
    }

    .main-nav-second {
        padding-top: 10px;
        display:block;
    }

        .main-nav-second a {
            color: #000000;
            text-decoration: none;
            font-weight: bold;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 14px;
            text-decoration: none;
            margin-left: 10px;
        }
}
