/* ==========================================
   1. RESET I OSNOVNE POSTAVKE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #FFF7E8; /* Krem pozadina */
    color: #000000;
    overflow-x: hidden;
}

/* ==========================================
   2. HEADER & NAVIGACIJA
   ========================================== */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 6%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1000;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-links {
    margin-right: 160px;
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-size: 1.05rem;
    font-weight: 500;
    transition: font-weight 0.1s ease;
}

.nav-links a:hover,
.nav-links a.active {
    font-weight: 700;
}

/* WhatsApp / Telefon dugme sa desne strane */
.phone-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #F8D8E5;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 1.05rem;
}

.phone-btn i {
    font-size: 1.4rem;
}

.hamburger,
.close-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #000000;
    cursor: pointer;
}

/* ==========================================
   3. KONTAKT SEKCIJA
   ========================================== */
.contact-section {
    width: 100%;
    padding: 40px 6% 80px 6%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    max-width: 1250px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

/* Leva strana */
.contact-info {
    flex: 1;
    max-width: 480px;
}

.contact-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #222222;
    margin-bottom: 40px;
}

/* Sivi info boxovi */
.info-boxes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-box {
    background-color: #ECECEC;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    border-radius: 4px;
}

.info-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
}

.red-icon { color: #D93025; }
.black-icon { color: #000000; }
.orange-icon { color: #D9531E; }

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.8rem;
    color: #666666;
}

.info-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000000;
}

/* Desna strana - Bela kartica */
.contact-form-card {
    flex: 1.2;
    background-color: #FFFFFF;
    border-radius: 40px;
    padding: 45px 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.contact-form-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #222222;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: #EDEDED;
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    outline: none;
    transition: background-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    background-color: #E2E2E2;
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.submit-btn {
    background-color: #F8D8E5;
    border: none;
    border-radius: 6px;
    padding: 12px 60px;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    transition: opacity 0.2s;
}

.submit-btn:hover {
    opacity: 0.85;
}

/* ==========================================
   4. RESPONSIVE (MOBILNI I TABLET)
   ========================================== */
@media (max-width: 992px) {
    .navbar {
        padding: 20px 5%;
    }

    .hamburger {
        display: block !important;
    }

    .close-btn {
        display: block !important;
        position: absolute;
        top: 25px;
        right: 25px;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #FFF7E8;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        gap: 35px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease-in-out;
        z-index: 99999;
    }

    .nav-container.active {
        right: 0 !important;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 25px;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .phone-btn {
        margin-top: 10px;
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    .contact-container {
        flex-direction: column;
        gap: 50px;
    }

    .contact-info,
    .contact-form-card {
        max-width: 100%;
        width: 100%;
    }

    .contact-form-card {
        padding: 30px 25px;
        border-radius: 25px;
    }
}

@media (max-width: 600px) {
    .contact-title {
        font-size: 2.3rem;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .submit-btn {
        width: 100%;
    }
}
/* ==========================================
   FOOTER
   ========================================== */

.footer {
    margin-top: 60px;
    background-color: #FFF7E8; /* Krem pozadina */
    padding: 40px 5%;
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.footer-links-left,
.footer-links-right {
    display: flex;
    align-items: center;
    gap: 45px;
}

.footer a {
    text-decoration: none;
    color: #111111;
    font-size: 1.05rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

.footer a:hover {
    opacity: 0.7;
}

.footer-logo img {
    height: 75px;
    width: auto;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }

    /* Postavlja logo na sam vrh */
    .footer-logo {
        order: -1;
        margin-bottom: 5px;
    }

    /* Linkovi idu vertikalno, jedan ispod drugog */
    .footer-links-left,
    .footer-links-right {
        flex-direction: column;
        gap: 18px;
    }
}