/* ==========================================================================
   MARKO & IMPACT ORCHESTRA - STILSKI SISTEM (styles.css)
   ========================================================================== */

/* Uvoz Google Fontova */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;700;900&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap");

/* Reset i bazični stilovi */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Kolorna paleta */
    --bg-dark: #070709;
    --bg-card: rgba(18, 18, 22, 0.65);
    --bg-card-hover: rgba(26, 26, 32, 0.85);
    --border-gold: rgba(194, 125, 56, 0.3);
    --border-gold-hover: rgba(194, 125, 56, 0.7);
    --border-silver: rgba(229, 228, 226, 0.2);

    /* Zlatni gradijenti */
    --gold-primary: #c27d38;
    --gold-light: #f1d4b3;
    --gold-dark: #804a18;
    --gold-gradient: linear-gradient(
        135deg,
        #e4a86a 0%,
        #f7e6d2 30%,
        #c27d38 50%,
        #f1d4b3 70%,
        #804a18 100%
    );
    --gold-text-grad: linear-gradient(
        135deg,
        #f7e6d2 0%,
        #c27d38 50%,
        #804a18 100%
    );

    /* Srebrni gradijenti */
    --silver-primary: #e5e4e2;
    --silver-dark: #8c8c8c;
    --silver-gradient: linear-gradient(
        135deg,
        #b8bac6 0%,
        #ffffff 25%,
        #d1d4df 50%,
        #9ea1b0 75%,
        #e2e4ec 100%
    );
    --silver-text-grad: linear-gradient(
        135deg,
        #ffffff 0%,
        #d1d4df 50%,
        #8c8c8c 100%
    );

    /* Tipografija */
    --font-heading: "Cinzel", "Playfair Display", Georgia, serif;
    --font-body: "Outfit", sans-serif;

    /* Tranzicije i efekti */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-gold: 0 8px 32px rgba(194, 125, 56, 0.15);
    --shadow-dark: 0 16px 48px rgba(0, 0, 0, 0.8);
    --glass-blur: blur(12px);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: #ffffff;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(
            circle at 10% 20%,
            rgba(212, 175, 55, 0.03) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(229, 228, 226, 0.03) 0%,
            transparent 40%
        );
    background-attachment: fixed;
}

/* Kovertne veze za linkove */
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #09090b;
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* ==========================================================================
   TIPOGRAFIJA & ZAJEDNIČKE KLASE
   ========================================================================== */
.text-gold {
    background: var(--gold-text-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-silver {
    background: var(--silver-text-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 20px auto 0 auto;
    border-radius: 2px;
    position: relative;
}

.section-divider::before {
    content: "★";
    color: var(--gold-primary);
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-dark);
    padding: 0 8px;
    font-size: 0.8rem;
}

/* Glassmorphic Paneli */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-silver);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

/* Dugmići */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 10px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #fdf0cd 0%, #d4af37 100%);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid var(--border-silver);
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-3px);
}

/* ==========================================================================
   NAVIGACIJA (Navbar)
   ========================================================================== */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.header-nav.scrolled {
    background: rgba(7, 7, 9, 0.85);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-silver);
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 55px;
}

.nav-logo img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

.nav-brand span {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--gold-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--gold-primary);
    font-weight: 600;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    z-index: 1001;
}

/* ==========================================================================
   HERO SEKCIJA
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.03);
}

.hero-slide.active {
    opacity: 1;
    animation: zoomBackground 8s forwards ease-in-out;
}

@keyframes zoomBackground {
    from {
        transform: scale(1.03);
    }
    to {
        transform: scale(1.09);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(7, 7, 9, 0.4) 0%,
        rgba(7, 7, 9, 0.92) 80%
    );
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-container {
    width: 180px;
    height: 180px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.25));
    animation: floatLogo 6s ease-in-out infinite;
}

.hero-logo-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes floatLogo {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-subtitle-brand {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--gold-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ==========================================================================
   O NAMA (About Us)
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-text p {
    color: #cbd5e1;
    margin-bottom: 20px;
    font-weight: 300;
}

.features-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-top: 3px;
}

.feature-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
}

.about-experience {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.experience-card {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 50px 30px;
    width: 100%;
    max-width: 380px;
    border: 1px solid var(--border-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.experience-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experience-label {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.experience-desc {
    font-size: 0.95rem;
    color: #cbd5e1;
}

.deco-ring {
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px dashed var(--border-gold);
    border-radius: 50%;
    animation: rotateRing 40s linear infinite;
    z-index: 1;
    opacity: 0.5;
    pointer-events: none;
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   ČLANOVI BENDA (Meet the Band)
   ========================================================================== */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.member-card {
    overflow: hidden;
    padding: 0;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.member-img-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.member-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.member-card:hover .member-img-container img {
    transform: scale(1.08);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(7, 7, 9, 0.95) 5%,
        transparent 60%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.member-card:hover .member-overlay {
    background: linear-gradient(
        to top,
        rgba(7, 7, 9, 0.98) 15%,
        transparent 70%
    );
}

.member-info {
    padding: 20px;
    text-align: center;
    background: rgba(18, 18, 22, 0.3);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.member-role {
    font-size: 0.9rem;
    color: var(--gold-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.member-bio {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 10px;
    font-weight: 300;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.member-card:hover .member-bio {
    opacity: 1;
    max-height: 60px;
}

/* ==========================================================================
   REPERTOAR (Repertoire)
   ========================================================================== */
.repertoire-wrapper {
    margin-top: 40px;
}

.repertoire-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-silver);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.tab-btn.active {
    background: var(--gold-gradient);
    color: #000000;
    border-color: transparent;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.repertoire-content {
    min-height: 300px;
    position: relative;
}

.repertoire-panel {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    animation: fadeInTab 0.5s forwards ease-in-out;
}

.repertoire-panel.active {
    display: grid;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.repertoire-category-info {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 10px;
    color: #94a3b8;
    font-weight: 300;
}

.song-item {
    display: flex;
    align-items: center;
    padding: 18px;
    border-left: 3px solid var(--gold-primary);
    background: rgba(18, 18, 22, 0.4);
    border-radius: 0 12px 12px 0;
    transition: var(--transition-smooth);
}

.song-item:hover {
    background: rgba(26, 26, 32, 0.6);
    transform: translateX(5px);
}

.song-icon {
    font-size: 1.2rem;
    color: var(--gold-primary);
    margin-right: 15px;
}

.song-details {
    flex-grow: 1;
}

.song-title {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.song-artist {
    font-size: 0.85rem;
    color: #94a3b8;
}

.song-badge {
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    border: 1px solid var(--border-gold);
    font-weight: 500;
}

/* ==========================================================================
   USLUGE & PRODUCENTSKI DEO (Services)
   ========================================================================== */
.services-section {
    background: rgba(10, 10, 12, 0.5);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    transition: var(--transition-smooth);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1) 0%,
        rgba(212, 175, 55, 0.02) 100%
    );
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 2rem;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    transform: scale(1.1) rotate(5deg);
    background: var(--gold-gradient);
    color: #000000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 0.95rem;
    color: #cbd5e1;
    font-weight: 300;
}

/* ==========================================================================
   VIDEO SEKCIJA (YouTube Shorts)
   ========================================================================== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 16px;
    border: 1px solid var(--border-silver);
    transition: var(--transition-smooth);
    cursor: pointer;
    background: var(--bg-card);
}

.video-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px);
}

.video-thumbnail-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-silver);
    background: #000000;
    position: relative;
    box-shadow: var(--shadow-dark);
}

.video-thumbnail-container img,
.video-thumbnail-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    border: none;
}

.video-card:hover .video-thumbnail-container img {
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 7, 9, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.video-card:hover .video-play-overlay {
    background: rgba(7, 7, 9, 0.5);
}

.video-play-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: var(--transition-smooth);
}

.video-card:hover .video-play-btn {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
}

.video-info {
    text-align: center;
}

.video-info h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gold-primary);
    letter-spacing: 0.5px;
}

.video-info p {
    font-size: 0.95rem;
    color: #94a3b8;
    margin: 0;
    font-weight: 300;
}

/* ==========================================================================
   UTISCI MLADENACA (Testimonials)
   ========================================================================== */
.testimonials-section {
    position: relative;
}

.slider-wrapper {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    padding: 10px;
}

.testimonial-card {
    text-align: center;
    position: relative;
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid var(--border-gold);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    opacity: 0.3;
    margin-bottom: 20px;
}

.rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #e2e8f0;
    font-weight: 300;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-container {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 70px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-silver);
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}

.slider-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    width: 25px;
    border-radius: 5px;
    background: var(--gold-primary);
}

/* ==========================================================================
   KONTAKT & REZERVACIJE (Contact & Booking)
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon-box {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
}

.contact-detail-item:hover .contact-icon-box {
    background: var(--gold-gradient);
    color: #000000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.contact-detail-text h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 5px;
}

.contact-detail-text p,
.contact-detail-text a {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-detail-text a:hover {
    color: var(--gold-primary);
}

.contact-socials {
    display: flex;
    gap: 15px;
}

.social-circle-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-silver);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.social-circle-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-3px);
    background: rgba(212, 175, 55, 0.05);
}

/* Formulari */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #cbd5e1;
}

.form-input {
    background: rgba(7, 7, 9, 0.6);
    border: 1px solid var(--border-silver);
    border-radius: 8px;
    padding: 14px 18px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-input::placeholder {
    color: #94a3b8 !important;
    opacity: 0.7 !important;
}

.form-input[readonly],
.form-input:read-only {
    color: #ffffff !important;
    background-color: rgba(7, 7, 9, 0.6) !important;
    opacity: 1 !important;
    cursor: pointer;
    -webkit-text-fill-color: #ffffff !important;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(7, 7, 9, 0.85);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

textarea.form-input {
    resize: none;
    min-height: 120px;
}

.form-status-msg {
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    display: none;
    text-align: center;
    animation: fadeInTab 0.3s forwards ease;
}

.form-status-msg.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-status-msg.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ==========================================================================
   FOOTER (Podnožje)
   ========================================================================== */
.footer {
    background: #040405;
    border-top: 1px solid var(--border-silver);
    padding: 60px 20px 30px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 25px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 300;
}

.footer-links-list a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.footer-contact-list i {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.footer-contact-list a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: #cbd5e1;
}

/* ==========================================================================
   PLUTAJUĆA BRZA DUGMAD (Floating Actions)
   ========================================================================== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.float-whatsapp {
    background: #25d366;
}

.float-viber {
    background: #7360f2;
}

.float-phone {
    background: var(--gold-gradient);
    color: #000000;
}

/* Back to Top Button */
.back-to-top {
    background: rgba(18, 18, 22, 0.8);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-silver);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.back-to-top:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* ==========================================================================
   VIDEO/IMAGE MODAL
   ========================================================================== */
.media-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 7, 9, 0.95);
    backdrop-filter: var(--glass-blur);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.media-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content-wrapper {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: 12px;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-dark);
    overflow: hidden;
}

.modal-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    color: var(--gold-primary);
    transform: rotate(90deg);
}

.modal-iframe-container {
    width: 100%;
    height: 100%;
}

.modal-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   RESPONSIVE (Prilagodljivost za različite ekrane)
   ========================================================================== */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-experience {
        order: -1;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(7, 7, 9, 0.98);
        backdrop-filter: var(--glass-blur);
        border-left: 1px solid var(--border-silver);
        flex-direction: column;
        justify-content: center;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 50px 30px;
        gap: 35px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-tagline {
        font-size: 1.05rem;
    }

    .hero-logo-container {
        width: 140px;
        height: 140px;
    }

    .section-title {
        font-size: 2.1rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-contact-list li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section {
        padding: 70px 16px;
    }

    #kontakt {
        padding-bottom: 90px;
    }

    .contact-info-panel,
    #kontakt .glass-panel {
        padding: 28px 22px;
    }

    .contact-detail-item {
        gap: 14px;
    }

    .contact-icon-box {
        width: 46px;
        height: 46px;
        font-size: 1.15rem;
        flex-shrink: 0;
    }

    .contact-detail-text h4 {
        font-size: 0.82rem;
    }

    .contact-detail-text p,
    .contact-detail-text a {
        font-size: 1rem;
        word-break: break-word;
    }

    /* Floating actions stay as a vertical stack on the right, but smaller
       so they don't crowd content. */
    .floating-actions {
        bottom: 14px;
        right: 10px;
        gap: 8px;
    }

    .float-btn {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
    }

    /* Reserve horizontal space inside the contact panels so the form's right
       edge never sits under the floating column. */
    #kontakt .glass-panel {
        padding-right: 64px;
    }

    /* Chatbot toggle bottom-left */
    #chatbot-widget {
        left: 12px !important;
        bottom: 14px !important;
    }

    #cbw-toggle {
        width: 46px !important;
        height: 46px !important;
    }

    #cbw-toggle svg {
        width: 22px;
        height: 22px;
    }

    .testimonials-container {
        padding: 0 10px 60px 10px;
    }

    .slider-btn {
        top: auto;
        bottom: 0;
        transform: none;
    }

    .slider-btn.prev {
        left: calc(50% - 55px);
    }

    .slider-btn.next {
        right: calc(50% - 55px);
    }

    .slider-btn:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    .btn {
        width: 100%;
    }
    .testimonial-card {
        padding: 40px 20px;
    }
    .testimonial-text {
        font-size: 1.05rem;
    }
    .section {
        padding: 60px 14px;
    }
    #kontakt {
        padding-bottom: 120px;
    }
    .contact-info-panel,
    #kontakt .glass-panel {
        padding: 24px 18px;
    }
    .contact-icon-box {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    .floating-actions {
        bottom: 12px;
        right: 8px;
        gap: 7px;
    }
    .float-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    #kontakt .glass-panel {
        padding-right: 58px;
    }
    #chatbot-widget {
        left: 10px !important;
        bottom: 12px !important;
    }
    #cbw-toggle {
        width: 44px !important;
        height: 44px !important;
    }
    .menu-board-zoom {
        font-size: 0.72rem;
        padding: 6px 10px;
        bottom: 10px;
        right: 10px;
    }
}

/* Custom Flatpickr Calendar Override Styles */
.flatpickr-calendar {
    background: #121215 !important;
    border: 1px solid var(--border-gold) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8) !important;
    font-family: var(--font-body) !important;
}

.flatpickr-calendar .flatpickr-months {
    background: #18181c !important;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    color: #ffffff !important;
    fill: #ffffff !important;
    padding: 10px !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: #ffffff !important;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
    fill: var(--gold-primary) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    color: #ffffff !important;
    background: #18181c !important;
}

.flatpickr-current-month input.cur-year {
    color: #ffffff !important;
}

.flatpickr-weekdays {
    background: #18181c !important;
}

.flatpickr-calendar .flatpickr-weekday {
    color: var(--gold-primary) !important;
}

.flatpickr-day {
    color: #ffffff !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: rgba(255, 255, 255, 0.3) !important;
}

.flatpickr-day.today {
    border-color: var(--gold-primary) !important;
}

.flatpickr-day.today:hover {
    background: var(--gold-primary) !important;
    color: #000000 !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--gold-gradient) !important;
    color: #000000 !important;
    border-color: transparent !important;
    font-weight: 600 !important;
}

.flatpickr-day:hover {
    background: rgba(212, 175, 55, 0.2) !important;
    color: #ffffff !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: rgba(255, 255, 255, 0.15) !important;
    background: transparent !important;
}

/* ===== Foto galerija ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--border-silver, rgba(255, 255, 255, 0.12));
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img {
    transform: scale(1.08);
}

/* ===== Virtuelna tura ===== */
.virtual-tour-frame {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-silver, rgba(255, 255, 255, 0.12));
    aspect-ratio: 16 / 9;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}
.virtual-tour-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ===== Testimonial avatar (profil) ===== */
.testimonial-avatar-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}
.testimonial-avatar {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-gold, rgba(212, 175, 55, 0.45));
    box-shadow: var(--shadow-gold, 0 8px 24px rgba(0, 0, 0, 0.4));
}
.testimonial-avatar.placeholder {
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1.7rem;
    color: var(--gold-primary, #d4af37);
    background: var(--surface-2, rgba(255, 255, 255, 0.06));
    -webkit-text-fill-color: var(--gold-primary, #d4af37);
}

/* ===== Modernija galerija + Fancybox zoom overlay ===== */
.gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: zoom-in;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    color: #fff;
    font-size: 1.7rem;
    opacity: 0;
    transition: all 0.35s ease;
    pointer-events: none;
}
.gallery-item:hover .gallery-zoom {
    background: rgba(0, 0, 0, 0.38);
    opacity: 1;
}
.gallery-zoom i {
    transform: scale(0.75);
    transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-zoom i {
    transform: scale(1);
}

/* Fix: čuvaj lice na vrhu, ne seci glavu */
.member-img-container img {
    object-position: center top;
}

/* Fix: logo u footeru se ne razvlači */
.footer-brand img {
    object-fit: contain;
}

section#clanovi {
    display: none !important;
}

section#foto-galerija {
    display: none !important;
}

section#utisci {
    display: none !important;
}
