* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    height: 100dvh;
}

.navbar {
    z-index: 9999;
    background-color: rgb(27, 27, 37);; /* poluprovidan efekat */
    backdrop-filter: blur(6px);
}

/* Stilizacija ako koristiš fixed-top bez bg klase */
/* Shadow efekat za vidljivost */
.navbar.shadow {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.navbar-nav .nav-link {
    font-size: 18px;
}


/* COOKIE */
#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

#cookie-banner .buttons {
    display: flex;
    gap: 30px;
}

#cookie-banner .buttons button {
    width: 100px;
}

@media (max-width: 991.98px) {
    .navbar {
        z-index: 1030;
    }
    
    #cookie-banner {
        z-index: 9000;
    }  
    
    #cookie-banner .buttons {
        flex-direction: column;
        gap: 15px;
    }
}



/* HEADER */
#header {
    padding-top: 80px;
    background-color: rgb(27, 27, 37);
}

.logo-name {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 10%, rgba(26, 84, 150, 1) 100%);
    background-clip: text; 
    -webkit-background-clip: text; 
    color: transparent;
}

.navbar-nav a {
    color: #fff;
}


/* Animacija za hamburger meni */
/* Centriranje nav linkova na manjim ekranima */
@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: center;
        width: 100%;
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 10px; /* malo prostora između linkova */
    }
    
    .logo {
        height: 60px;
    }
}


/* HEADER - INTRO */
.intro-img-holder {
    position: relative;
    height: 80dvh;
    overflow: hidden;
}

.intro-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay preko slike */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 27, 37, 0.8); 
    z-index: 1;
}

/* Tekst + dugme preko */
.intro-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 2;
    
    opacity: 0;
    transform: translate(-50%, -40%);
    animation: fadeSlideUp 1.5s ease forwards;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}


.intro-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 30%, rgba(26, 84, 150, 1) 100%);
    background-clip: text; 
    -webkit-background-clip: text; 
    color: transparent; 
}

.intro-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgb(190, 216, 245);
}

@media (max-width: 992px) {
    .intro-content h1 {
        font-size: 2rem;
    }
    .intro-content p {
        font-size: 1rem;
    }
}


/* MAIN */

/* MAIN - PRICING */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


.pricing-header h2, .card-header h4, 
.card-body h1 {
    color: rgb(22, 56, 95);
}

.card-body a {
    background-color: rgb(33, 95, 189)
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.blurred {
    filter: blur(2px);
    pointer-events: none; /* onemogućava interakciju */
    opacity: 0.8;
}

.old-price {
    text-decoration: line-through;
    color: #888 !important; /* opcionalno - da izgleda slabije */
}

.soon-btn {
    display: inline-block;
    width: 100%;
    padding: 0.75rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: #999;
    background-color: #e0e0e0;
    border-radius: 0.375rem;
    cursor: default;
    user-select: none;
}


/* MAIN - Write us */
.write-us {
    text-align: center;
}

.write-us h2,
.write-us p {
    color: rgb(22, 56, 95);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

/* Floating labels */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: none;
    border-bottom: 2px solid #eee;
    background: none;
    font-size: 16px;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #aaa;
    font-size: 16px;
    pointer-events: none;
    transition: 0.3s ease all;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    top: -8px;
    left: 10px;
    font-size: 12px;
    color: #3f5e9c;
}

/* Dugme */
.btn-custom {
    background-color: #3f5e9c;
    color: #fff;
    padding: 12px;
    width: 100%;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: #354f82;
}



/* FOOTER */
#footer {
    background-color: rgb(27, 27, 37);
}

footer {
    color: #fff;
}

li .ft-link {
    color: #fff;
}

.cards img {
    object-fit: contain;
    background: white;
    padding: 4px;
    border-radius: 4px;
}
