/* VIA-C Landing – specifični stilovi */

.vc-body {
    background: #020617;
    color: #e5e7eb;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* HEADER */

.vc-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(30, 64, 175, 0.5);
}

.vc-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.vc-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vc-logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0ea5e9, #22c55e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: #f9fafb;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.8);
}

.vc-logo-text {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e5e7eb;
}

.vc-nav a {
    font-size: 14px;
    color: #e5e7eb;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.vc-nav a:hover {
    background: rgba(30, 64, 175, 0.9);
    border-color: rgba(191, 219, 254, 1);
    color: #f9fafb;
}

/* HERO */

.vc-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.4), transparent 60%),
        radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.4), transparent 60%),
        #020617;
    overflow: hidden;
}

.vc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/via-c-1.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    filter: blur(2px);
    transform: scale(1.04);
}

.vc-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.95));
}

.vc-hero-inner {
    position: relative;
    z-index: 1;
    padding: 70px 0 60px;
}

.vc-hero-text {
    max-width: 640px;
}

.vc-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.7);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #e5e7eb;
    margin-bottom: 14px;
}

.vc-hero h1 {
    font-size: 40px;
    margin: 0 0 8px;
    color: #f9fafb;
    text-shadow: 0 14px 40px rgba(15, 23, 42, 0.9);
}

.vc-tagline {
    margin: 0 0 10px;
    color: #bfdbfe;
    font-size: 17px;
}

.vc-subline {
    margin: 0 0 22px;
    color: #cbd5f5;
    font-size: 15px;
    max-width: 36rem;
}

.vc-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vc-cta-main {
    min-width: 180px;
}

.vc-cta-secondary {
    border-color: rgba(191, 219, 254, 0.9);
    color: #e5e7eb;
}

/* SECTIONS */

.vc-section {
    padding: 60px 0;
    background: #020617;
    color: #e5e7eb;
}

.vc-section-dark {
    background: radial-gradient(circle at top, #020617, #020617 40%, #020617 100%);
}

/* Two column layout */

.vc-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.vc-section-text h2 {
    font-size: 26px;
    margin: 0 0 10px;
    color: #f9fafb;
}

.vc-section-text p {
    margin-top: 0;
    margin-bottom: 16px;
    color: #cbd5f5;
}

/* Badges */

.vc-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.vc-badge {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(30, 64, 175, 0.6);
    color: #e5e7eb;
    border: 1px solid rgba(129, 140, 248, 0.7);
}

/* List */

.vc-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.vc-list li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #e5e7eb;
}

.vc-list li span {
    font-weight: 600;
    color: #bfdbfe;
}

/* Media / Photos */

.vc-section-media {
    position: relative;
    display: flex;
    justify-content: center;
}

.vc-photo-frame {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.7);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vc-photo-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.vc-photo-frame:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 80px rgba(15, 23, 42, 1);
}

.vc-photo-chip {
    position: absolute;
    bottom: -24px;
    right: -10px;
    width: 45%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.9);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 1);
    transform: rotate(2deg);
}

.vc-photo-chip img {
    display: block;
    width: 100%;
    height: auto;
}

/* BOOKINGS */

.vc-booking-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.vc-booking-intro h2 {
    font-size: 26px;
    margin: 0 0 12px;
    color: #f9fafb;
}

.vc-booking-intro p {
    margin-top: 0;
    margin-bottom: 18px;
    color: #cbd5f5;
}

.vc-highlight-card {
    border-radius: 18px;
    padding: 14px 14px 12px;
    background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.9), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(129, 140, 248, 0.9);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 1);
    font-size: 14px;
}

.vc-highlight-title {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    color: #bfdbfe;
    margin: 0 0 6px;
}

.vc-highlight-card ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.vc-highlight-card li {
    margin-bottom: 4px;
}

/* Booking card */

.vc-booking-card {
    border-radius: 20px;
    padding: 20px 18px;
    background: radial-gradient(circle at top right, rgba(34, 197, 94, 0.35), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(74, 222, 128, 0.8);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 1);
}

.vc-booking-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    color: #f9fafb;
}

.vc-contact-row {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}

.vc-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    color: #bbf7d0;
}

.vc-value a {
    color: #e5e7eb;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.vc-booking-actions {
    margin: 16px 0 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vc-wide-btn {
    width: 100%;
    justify-content: center;
}

.vc-response-note {
    font-size: 12px;
    color: #e5e7eb;
    opacity: 0.8;
}

/* FOOTER */

.vc-footer {
    border-top: 1px solid rgba(30, 64, 175, 0.6);
    background: #020617;
    padding: 16px 0;
    font-size: 13px;
    color: #9ca3af;
}

.vc-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.vc-footer-small {
    font-size: 12px;
}

/* Responsivnost */

@media (max-width: 900px) {
    .vc-hero {
        min-height: 65vh;
    }

    .vc-hero-inner {
        padding-top: 60px;
    }

    .vc-hero h1 {
        font-size: 32px;
    }

    .vc-two-col,
    .vc-booking-grid {
        grid-template-columns: 1fr;
    }

    .vc-photo-chip {
        position: static;
        width: 70%;
        margin: 16px auto 0;
        transform: none;
    }

    .vc-booking-card {
        margin-top: 4px;
    }
}

@media (max-width: 600px) {
    .vc-header-inner {
        padding: 8px 0;
    }

    .vc-hero-inner {
        padding-bottom: 40px;
    }

    .vc-hero-text {
        text-align: left;
    }

    .vc-hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* Fix for WhatsApp button text color */
.vc-booking-actions .btn.btn-outline {
    color: #f9fafb !important;      /* čista bijela */
    border-color: #93c5fd !important; /* plavkasta, vidljiva granica */
}

.vc-booking-actions .btn.btn-outline:hover {
    background: rgba(148, 163, 184, 0.25);
    color: #ffffff !important;
    border-color: #bfdbfe !important;
}
/* Booking card hover animation */
.vc-booking-card {
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.vc-booking-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 38px 80px rgba(15, 23, 42, 1);
}
/* Contact row gentle highlight */
.vc-contact-row {
    transition: background 0.3s ease, padding-left 0.3s ease;
    padding: 6px 0;
    border-radius: 10px;
}

.vc-contact-row:hover {
    background: rgba(255, 255, 255, 0.06);
    padding-left: 8px;
}
.vc-contact-row:hover .vc-label {
    color: #a5f3fc;
}

.vc-contact-row:hover .vc-value a {
    color: #ffffff;
    text-decoration-color: #ffffff;
}
/* Button wave hover effect */
.vc-booking-actions .btn {
    position: relative;
    overflow: hidden;
}

.vc-booking-actions .btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
                rgba(255,255,255,0.25),
                rgba(255,255,255,0),
                rgba(255,255,255,0.25));
    transform: translateX(-120%);
    transition: transform 0.5s ease;
}

.vc-booking-actions .btn:hover::before {
    transform: translateX(120%);
}
/* Photo hover animations */
.vc-photo-frame,
.vc-photo-chip {
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
    filter: brightness(0.92);
}

.vc-photo-frame:hover,
.vc-photo-chip:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 40px 90px rgba(0,0,0,0.7);
    filter: brightness(1);
}
/* Scroll reveal base */
.vc-section,
.vc-hero,
.vc-booking-card,
.vc-section-media,
.vc-section-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease,
                transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

