﻿/* =========================
   BASE / LAYOUT (Sticky footer)
   ========================= */
html, body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    /* Sticky footer layout */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Glavni sadržaj (ContentPlaceHolder) treba da bude u <main class="main-content"> */
.main-content {
    flex: 1 0 auto; /* zauzmi sav preostali prostor */
    /* Ako ti fixed-top navbar preklapa vrh sadržaja, uključi ovo: */
    /* padding-top: 90px; */
}

/* =========================
   NAVBAR
   ========================= */
.navbar {
    transition: all 0.4s ease;
    background: transparent;
    padding-top: 10px;
    padding-bottom: 10px;
}

    .navbar.scrolled {
        background: rgba(0,0,0,0.9);
        backdrop-filter: blur(10px);
    }

/* Logo Icon */
.logo-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

    .logo-icon i {
        font-size: 36px;
        color: #0d6efd;
    }

/* =========================
   HERO
   ========================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

    /* Background Image */
    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('../image/bkg02.jpg') no-repeat;
        background-size: cover;
        background-position: center;
        filter: blur(1px);
        transform: scale(1.1);
    }

    /* Dark Overlay */
    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.45);
    }

    .hero .container {
        position: relative;
        z-index: 2;
    }

    .hero h1 {
        font-weight: 700;
    }

/* =========================
   BUTTONS
   ========================= */
.btn-premium {
    background: white;
    color: #0d6efd;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-premium:hover {
        transform: scale(1.05);
    }

/* =========================
   SECTIONS
   ========================= */
.section-padding {
    padding: 100px 0;
    position: relative;
}

.service-card {
    border: none;
    border-radius: 20px;
    transition: 0.3s;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

.service-icon {
    font-size: 40px;
    color: #0d6efd;
}

/* =========================
   GALLERY
   ========================= */
.gallery img {
    border-radius: 20px;
    transition: 0.3s;
}

    .gallery img:hover {
        transform: scale(1.05);
    }

/* =========================
   FOOTER
   ========================= */
.footer-custom {
    /* sticky footer: ne sme da se "smanjuje" */
    flex-shrink: 0;
    background: linear-gradient(135deg, #0a1f44, #0d6efd);
    color: white;
    padding: 1rem 0;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.5px;
}
