/* Основни стилови */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

.container {
    width: 85%;
    margin: 0 auto;
    max-width: 1200px;
}

h1, h2, h3, h4 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #222;
}

h2 {
    font-size: 32px;
    text-transform: uppercase;
    border-bottom: 3px solid #a67c52;
    display: inline-block;
    padding-bottom: 10px;
}

p {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}

.section-desc {
    margin-bottom: 30px;
    font-size: 17px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* Секции */
.section {
    padding: 80px 0;
}

/* Копчиња */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    background-color: #a67c52;
    color: #fff;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn:hover {
    background-color: #8c6543;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Хедер */
header {
    background-color: #fff;
    color: #333;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

header h1 {
    margin: 0;
    font-size: 22px;
    color: #333;
}

header nav ul {
    display: flex;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    color: #555;
    font-weight: bold;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 14px;
}

header nav ul li a:hover {
    color: #a67c52;
}

/* Мобилно мени копче */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* Hero секција */
.hero {
    min-height: 90vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('images/9.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h2 {
    font-size: 44px;
    text-transform: uppercase;
    color: #fff;
    border: none;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    font-size: 16px;
    padding: 15px 30px;
}

.btn-call {
    background-color: #27ae60;
}

.btn-call:hover {
    background-color: #219150;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #333;
}

/* Услуги */
.uslugi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.usluga-item {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.usluga-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.usluga-item img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.usluga-item h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #222;
}

/* Галерија */
.galerija-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.galerija-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.galerija-grid img:hover {
    transform: scale(1.02);
}

/* Рецензии */
.recenzii-section {
    background-color: #eae6e1;
}

.recenzii-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.recenzija-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.recenzija-card .stars {
    font-size: 18px;
    margin-bottom: 10px;
}

.recenzija-card p {
    font-style: italic;
    color: #444;
}

.recenzija-card h4 {
    margin: 0;
    color: #a67c52;
    text-align: right;
}

/* Контакт */
.kontakt-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
    gap: 40px;
}

.kontakt-info {
    width: 45%;
}

.kontakt-info p {
    font-size: 17px;
    margin-bottom: 25px;
}

.phone-link {
    color: #a67c52;
    font-weight: bold;
    transition: color 0.2s;
}

.phone-link:hover {
    color: #27ae60;
    text-decoration: underline;
}

.kontakt-forma {
    width: 50%;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.kontakt-forma h3 {
    margin-bottom: 20px;
}

.kontakt-forma form {
    display: flex;
    flex-direction: column;
}

.kontakt-forma input,
.kontakt-forma select,
.kontakt-forma textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s;
}

.kontakt-forma input:focus,
.kontakt-forma select:focus,
.kontakt-forma textarea:focus {
    outline: none;
    border-color: #a67c52;
}

.btn-submit {
    width: 100%;
    border-radius: 5px;
}

/* Социјални Мрежи */
.social-links-container {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-link {
    transition: transform 0.2s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.facebook-icon {
    color: #1877f2;
    font-size: 36px;
}

.instagram-icon {
    color: #e4405f;
    font-size: 36px;
}

/* Viber Лебдечко Копче */
.floating-viber {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}

.floating-viber a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #7360f2;
    color: #fff;
    border-radius: 50%;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.floating-viber a:hover {
    transform: scale(1.1);
}

/* Футер */
footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 25px 0;
    margin-top: 60px;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #111;
    color: #fff;
    box-sizing: border-box;
    z-index: 9999;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.cookie-banner p {
    margin: 0;
    font-size: 13px;
    color: #ccc;
}

.cookie-btn {
    padding: 6px 16px;
    font-size: 13px;
}

/* Прилагодливост (Responsive) */
@media (max-width: 850px) {
    .container {
        width: 90%;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        box-sizing: border-box;
    }

    nav.active {
        display: block;
    }

    header nav ul {
        flex-direction: column;
        padding: 15px 0;
    }

    header nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .kontakt-content {
        flex-direction: column;
    }

    .kontakt-info, .kontakt-forma {
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
/* Прилагодливост (Responsive) за мобилни уреди */
@media (max-width: 850px) {
    .container {
        width: 90%;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        box-sizing: border-box;
    }

    nav.active {
        display: block;
    }

    header nav ul {
        flex-direction: column;
        padding: 15px 0;
    }

    header nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .kontakt-content {
        flex-direction: column;
    }

    .kontakt-info, .kontakt-forma {
        width: 100%;
    }

    /* --- Намалување и центрирање на инпутите на мобилен --- */
    .kontakt-forma {
        padding: 20px 15px; /* Малку помал падинг во картичката */
    }

    .kontakt-forma form {
        align-items: center; /* Го центрира копчето и инпутите */
    }

    .kontakt-forma input,
    .kontakt-forma select,
    .kontakt-forma textarea {
        width: 92%; /* Ја намалуваме ширината од 100% на 92% за да има простор од страните */
        max-width: 400px; /* Опционално ограничување за поголеми телефони/таблети */
        margin-left: auto;
        margin-right: auto;
    }

    .btn-submit {
        width: 92%;
        max-width: 400px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}