/* ==========================================================================
   PREMIUM AI RECEPCIONER ZA FRIZERE - PURPLE THEME
   ========================================================================== */

:root {
    /* Nove boje sa vašeg glavnog sajta */
    --primary-dark: #2a0a4a; /* Tamno ljubičasta za pozadine */
    --primary-purple: #7b2cbf; /* Jaka ljubičasta sa slike */
    --accent-violet: #9d4edd; /* Svetlija ljubičasta za detalje */
    
    --bg-light: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-muted: #6b7280;
    
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    --hero-gradient: linear-gradient(135deg, #2d1445 0%, #7b2cbf 60%, #9d4edd 100%);
}

body, p, a, button, input {
    font-family: 'Inter', sans-serif !important;
}

h1, h2, h3, h4, .eyebrow-text, .salon-logo {
    font-family: 'Inter', sans-serif !important;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* NAVIGACIJA */
.salon-header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(45, 20, 69, 0.95); /* Tamna ljubičasta sa opacity */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.salon-logo {
    text-decoration: none;
    font-size: 1.5rem;
    color: #fff;
}

.salon-logo strong { color: var(--accent-violet); font-family: 'Inter', sans-serif;}

.salon-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0; 
    padding: 0;
}
.salon-nav-list a {
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.salon-nav-list a:hover { color: var(--accent-violet); }

.nav-cta {
    background: var(--primary-purple);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 30px;
}

.salon-menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.salon-menu-toggle span { width: 25px; height: 2px; background: #fff; transition: 0.3s; }

/* HERO SEKCIJA - Centrirano i sa tonom sa slike */
.salon-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-gradient);
    color: #fff;
    text-align: center;
    padding-top: 80px;
}

.eyebrow-text {
    color: #e0aaff;
    font-style: italic;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: block;
}

.salon-hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin: 0 0 25px 0;
    color: #fff;
}

.salon-hero-title em { color: #e0aaff; }

.salon-hero-desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin: 0 auto 40px auto;
    max-width: 850px;
    line-height: 1.8;
}

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

.btn-primary {
    background: #fff;
    color: var(--primary-purple);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.3s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ZAJEDNIČKO ZA SEKCIJE */
.section-heading {
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 50px;
    text-align: center;
}

/* IZAZOVI (ZIG-ZAG) */
.salon-challenges { padding: 100px 0; background: #fff; }

.challenge-item {
    padding: 30px;
    border-left: 3px solid var(--primary-purple);
    margin-bottom: 40px;
    background: var(--bg-light);
    border-radius: 0 15px 15px 0;
}

.challenge-item.reverse {
    border-left: none;
    border-right: 3px solid var(--primary-purple);
    text-align: right;
    border-radius: 15px 0 0 15px;
}

.challenge-item h3 { font-size: 1.8rem; margin: 0 0 10px 0; color: var(--primary-dark); }
.challenge-item p { color: var(--text-muted); margin: 0; }

/* TIMELINE (PROCES) */
.salon-process-section { padding: 80px 0; }

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px; top: 0; bottom: 0;
    width: 2px;
    background: #e5e7eb;
}

.timeline-item { position: relative; margin-bottom: 50px; }

.timeline-dot {
    position: absolute;
    left: -40px;
    width: 32px; height: 32px;
    background: var(--primary-purple);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold; font-family: font-family: 'Inter': sans-serif;
}

.timeline-content h4 { font-size: 1.5rem; margin: 0 0 10px 0; color: var(--primary-dark); }
.timeline-content p { color: var(--text-muted); line-height: 1.6; margin: 0; }

/* KALKULATOR - DARK GLASSMORPHISM */
.salon-calc-dark {
    background: var(--hero-gradient);
    padding: 100px 0;
    color: #fff;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.light-text { color: #fff; text-align: left; }
.light-desc { color: rgba(255,255,255,0.8); margin-bottom: 40px; }

.slider-group { margin-bottom: 30px; }
.slider-header { display: flex; justify-content: space-between; margin-bottom: 15px; font-weight: 500; }
.val-display { color: #fff; font-weight: 700; font-size: 1.2rem; }

.salon-range {
    width: 100%;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.2);
    height: 4px;
    border-radius: 4px;
    outline: none;
}

.salon-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px; height: 20px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.calc-receipt-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.calc-receipt-glass h3 { margin-top: 0; font-size: 1.8rem; border-bottom: 1px solid var(--glass-border); padding-bottom: 15px; }

.receipt-row { display: flex; justify-content: space-between; margin-bottom: 20px; font-size: 1.1rem; }
.text-accent { color: #e0aaff; font-size: 1.5rem; font-weight: bold; }
.receipt-divider { height: 1px; background: var(--glass-border); margin: 20px 0; }
.receipt-total h4 { font-size: 2.5rem; margin: 10px 0 0 0; color: #fff; }

/* FORMA I TEST */
.salon-bottom-section { padding: 100px 0; background: #fff; }

.test-agent-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 60px;
    border: 1px solid #eaeaea;
}

.phone-link {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    text-decoration: none;
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
}

.elegant-form-wrapper { max-width: 500px; margin: 0 auto; text-align: left; }
.elegant-form-wrapper h3 { text-align: center; font-size: 2rem; margin-bottom: 30px; color: var(--primary-dark); }

.input-line { margin-bottom: 30px; }
.input-line input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    font-size: 1rem;
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
}

.input-line input:focus { border-bottom-color: var(--primary-purple); }
.full-width { 
    width: 100%; 
    font-size: 1.1rem; 
    background: var(--primary-purple); 
    color: #fff;
    border-radius: 8px;
}
.full-width:hover { background: var(--primary-dark); }

/* FOOTER */
.salon-footer { background: #11061c; color: #9ca3af; text-align: center; padding: 30px 0; font-size: 0.9rem; }
.salon-footer a { color: #fff; text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .salon-hero-title { font-size: 3rem; }
    .hero-actions { flex-direction: column; }
    .calc-grid { grid-template-columns: 1fr; }
    .section-heading { font-size: 2.2rem; }
    
    .salon-menu-toggle { display: flex; }
    .salon-nav-list {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: rgba(45, 20, 69, 0.98);
        flex-direction: column;
        padding: 20px 0;
        display: none;
    }
    .salon-nav-list.active { display: flex; }
}
@media (min-width: 901px) {
    .salon-nav-list {
        justify-content: space-between; /* Raspoređuje elemente */
        flex-grow: 1;                   /* Popunjava prostor */
        margin: 0 60px; 
    }
} 
