
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* 1. Target the main container */
.logo {
    color: #ffffff !important; /* Forces white */
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
}

/* 2. Target the span specifically */
.logo span.yellow-text {
    color: #d4af37 !important; /* Forces gold/yellow */
}

/* 3. Basic layout to make sure it's visible */
.navbar {
    background-color: #1a1a1a; /* Dark background so you can see the white text */
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation */
/* Reset basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar Container */
.navbar {
    background-color: #1a1a1a; /* Dark background */
    color: white;
    display: flex;
    justify-content: space-between; /* Logo left, Links right */
    align-items: center;
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Logo Styling */
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #d4af37; /* Metallic Gold color */
}

/* Links Container */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #f4f4f4;
    font-size: 1rem;
    transition: color 0.3s;
}

/* Hover effect */
.nav-links a:hover {
    color: #d4af37;
}

/* Special Button Style for Appointments */
.btn-book {
    background-color: #d4af37;
    color: #1a1a1a !important;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
}

.btn-book:hover {
    background-color: white;
}

.logo {
    font-size: 2rem;
    color: #d4af37; /* Gold color */
    font-weight: bold;
}


/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.accent {
    color: #d4af37;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #d4af37;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #fff;
}

/* Services */
/* Layout Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-section {
    padding: 80px 0;
    background-color: #111; /* Slightly darker for better contrast */
}

.section-title {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-size: 2.8rem;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-transform: uppercase;
    text-align: center;
}

/* Organized Grid */
.services-grid {
    display: grid;
    /* This creates a 4-column layout on desktop and adjusts for mobile */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Card Styling */
.service-card {
    background: #1a1a1a;
    padding: 40px 20px;
    border: 1px solid #333;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    background: #222;
}

/* Styling the price tag inside the card header */
.service-card h3 {
    display: flex;
    justify-content: space-between; /* Pushes Name to left, Price to right */
    align-items: center;
    color: #ffffff; /* Service name in white */
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.service-card .price {
    color: #d4af37; /* Price in yellow/gold */
    font-weight: bold;
    font-size: 1.2rem;
    margin-left: 10px;
}

/* Ensure the text below is still readable */
.service-card p {
    text-align: left; /* Aligns description for better readability */
    color: #aaa;
    font-size: 0.9rem;
}
/* Updated Services Grid to center the last row */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* This centers the items in the last row */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Updated Card Styling to maintain size */
.service-card {
    background: #1a1a1a;
    padding: 40px 20px;
    border: 1px solid #333;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
    
    /* This ensures cards stay a consistent size in the flex layout */
    flex: 0 1 calc(25% - 30px); 
    min-width: 250px; 
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.service-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    background: #222;
}
/* About Section Styles */
.about-section {
    padding: 100px 0;
    background-color: #0a0a0a; /* Deep black background */
    color: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap; /* Makes it stack on mobile */
}

.about-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.about-subtitle {
    color: #d4af37; /* Yellow/Gold accent */
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-text {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

/* Style for the new image */
.salon-photo {
    width: 100%;
    height: auto;
    max-height: 500px; /* Limits the height so it doesn't get too big */
    object-fit: cover;  /* Ensures the image crops nicely instead of stretching */
    border: 1px solid #d4af37; /* Adds the gold border to the photo */
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Adds a shadow for depth */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .about-content {
        text-align: center;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: #111;
    border-top: 1px solid #333;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border: 1px solid #333;
    transition: 0.3s;
}

.contact-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.contact-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #d4af37;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* Call Button inside card */
.btn-contact {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #d4af37;
    color: #111;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-contact:hover {
    background-color: #fff;
}

/* Simple Footer at the very bottom */
.mini-footer {
    padding: 20px;
    background-color: #000;
    text-align: center;
    color: #555;
    font-size: 0.8rem;
    border-top: 1px solid #222;
}

/* Optimized Dark Map Styling */
.map-wrapper iframe {
    /* Grayscale makes it black and white, invert flips colors for dark mode */
    /* Hue-rotate can help preserve some of the gold/yellow tones */
    filter: grayscale(100%) invert(92%) contrast(85%) opacity(0.8);
    display: block;
    transition: filter 0.5s ease;
}

.map-wrapper iframe:hover {
    /* Map clears up slightly when the user interacts with it */
    filter: grayscale(30%) invert(0%) contrast(100%) opacity(1);
}

/* Reviews Section Styles */
.reviews-section {
    padding: 100px 0;
    background-color: #0c0c0c; /* Slightly different black to create contrast */
    text-align: center;
}

.reviews-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.review-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    border: 1px solid #333;
    position: relative;
    transition: 0.3s ease;
}

.review-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.stars {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.review-text {
    color: #ccc;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1rem;
}

.client-name {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

/* Quote icon decoration */
.review-card::before {
    content: "“";
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.1);
    font-family: serif;
}

/* Update these sections in your style.css */

.contact-grid {
    display: flex;
    flex-wrap: wrap;       /* Allows cards to wrap to a new line on mobile */
    justify-content: center; /* THIS CENTERS THE CARDS HORIZONTALLY */
    align-items: stretch;    /* Makes all cards in a row the same height */
    gap: 30px;             /* Space between the cards */
    max-width: 1200px;
    margin: 0 auto;        /* Centers the whole grid container on the page */
    padding: 20px;
}

.contact-card {
    background: #1a1a1a;
    padding: 40px 20px;
    border: 1px solid #333;
    border-radius: 8px;
    text-align: center;      /* Centers the text and button inside the card */
    
    /* Responsive width logic */
    flex: 0 1 300px;         /* Cards will try to stay 300px wide */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content vertically inside the card */
    align-items: center;     /* Centers content horizontally inside the card */
    transition: 0.3s ease;
}

.contact-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

/* This ensures all buttons in contact cards look like the "Pozovi Odmah" one */
.contact-card .btn-contact {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #d4af37; /* Your gold/yellow color */
    color: #111;               /* Dark text for contrast */
    text-decoration: none;     /* Removes the blue underline */
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s ease;
    text-align: center;
}

.contact-card .btn-contact:hover {
    background-color: #fff;    /* Turns white on hover */
    color: #000;
}

/* Optional: Keep the permanent gold border on the Instagram card itself */
.instagram-card {
    border: 1px solid #d4af37 !important;
}



.contact-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333;
    text-align: center;
    color: #fff;
}

#status-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    transition: background-color 0.3s ease;
}

.hours-list p {
    margin: 10px 0;
    font-size: 1rem;
    color: #ccc;
}

.hours-list strong {
    color: #d4af37; /* Yellow/Gold for the times */
}

/* Style for the copy feedback message */
.copy-toast {
    visibility: hidden;
    min-width: 150px;
    background-color: #333;
    color: #d4af37; /* Gold text */
    text-align: center;
    border: 1px solid #d4af37;
    border-radius: 4px;
    padding: 8px;
    position: fixed;
    z-index: 1000;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* Animation class for showing the toast */
.copy-toast.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2s;
}

@keyframes fadein {
    from { bottom: 0; opacity: 0; }
    to { bottom: 30px; opacity: 1; }
}

@keyframes fadeout {
    from { bottom: 30px; opacity: 1; }
    to { bottom: 0; opacity: 0; }
}

/* Container for the Viber button */
.chat-buttons-container {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

/* Viber button style */
.btn-chat.viber {
    background-color: #7360f2;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    color: #fff;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.btn-chat.viber:hover {
    background-color: #5e4db2;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(115, 96, 242, 0.3);
}

/* Copy feedback pop-up (Toast) */
.copy-toast {
    visibility: hidden;
    min-width: 140px;
    background-color: #333;
    color: #d4af37;
    text-align: center;
    border: 1px solid #d4af37;
    border-radius: 4px;
    padding: 8px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

.copy-toast.show {
    visibility: visible;
    opacity: 1;
}

/* Floating Viber Button Styling */
.floating-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #7360f2; /* Viber Purple */
    color: #ffffff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 50px;
    display: none; /* Controlled by JS */
    opacity: 0;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}

.floating-btn:hover {
    background-color: #5e4db2;
    transform: scale(1.08);
    color: #fff;
}

.btn-icon {
    font-size: 1.3rem;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .btn-text {
        display: none; /* Shows only the icon on small screens to keep it clean */
    }
    .floating-btn {
        padding: 15px;
        bottom: 20px;
        right: 20px;
    }
}

/* Footer Styling */
.main-footer {
    background-color: #111; /* Slightly darker than section backgrounds */
    color: #fff;
    padding: 60px 0 20px;
    border-top: 1px solid #333;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.footer-logo {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.salon-desc {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 10px;
}

.footer-section h4 {
    color: #d4af37;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a, .social-icons a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section ul li a:hover, .social-icons a:hover {
    color: #d4af37;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-size: 0.8rem;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        align-items: center;
    }
}

/* Navbar Viber Button Styling */
.btn-book {
    background-color: #d4af37; /* Gold/Yellow */
    color: #000 !important;   /* Black text for readability */
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-book:hover {
    background-color: #fff; /* Turns white on hover */
    color: #000;
}

/* Hero Section Viber Button Styling */
.cta-button {
    background-color: #d4af37;
    color: #000;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button:hover {
    background-color: #f1c40f; /* Brighter yellow on hover */
    transform: scale(1.05);
}

/* Scroll Down Arrow Styling */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    z-index: 5;
}

.scroll-down p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    color: #d4af37; /* Your gold color */
}

.scroll-down span {
    width: 20px;
    height: 20px;
    border-left: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    transform: rotate(-45deg);
    animation: sdb 2s infinite;
    box-sizing: border-box;
}

/* Pulse animation for the arrow */
@keyframes sdb {
    0% {
        transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(-45deg) translate(-15px, 15px);
        opacity: 0;
    }
}

/* About Section Layout */
.about-section {
    padding: 100px 20px;
    background-color: #0a0a0a; /* Darker background for contrast */
    color: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-image, .about-text-content {
    flex: 1;
    min-width: 300px;
}

/* Container must be relative and flex to help centering */
.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Gives room for the border to show */
}

.about-image img {
    width: 100%;
    max-width: 500px; /* Optional: limits size on very large screens */
    border-radius: 4px;
    display: block;
    position: relative;
    z-index: 2;
}

/* The Gold Frame - Now Centered */
.image-accent {
    position: absolute;
    /* This centers the box exactly behind the image */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    /* Make the frame slightly larger than the image area */
    width: calc(100% - 10px); 
    height: calc(100% - 10px);
    
    border: 2px solid #d4af37;
    z-index: 1;
    pointer-events: none; /* Prevents the box from interfering with clicks */
}

/* Mobile fix: Ensure the frame doesn't look too tight on small screens */
@media (max-width: 768px) {
    .about-image {
        margin: 0 auto 30px;
        max-width: 90%;
    }
}


.subtitle {
    color: #d4af37;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-family: 'Oswald', sans-serif;
}

.about-text-content p {
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    font-size: 0.9rem;
    color: #d4af37;
}

.feature-item strong {
    display: block;
    font-size: 1.5rem;
    color: #fff;
}

/* Scroll Animation Styles */
.fade-in-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 1. Fix for Full Screen Hero on Mobile */
.hero {
    /* Uses the JS variable for better height on mobile browsers like Safari/Chrome */
    height: 100vh; 
    height: calc(var(--vh, 1vh) * 100);
}

/* 2. Responsive Layout for "O Nama" and "Usluge" */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column; /* Stacks image on top of text */
        text-align: center;
        gap: 30px;
    }

    .about-image, .about-text-content {
        width: 100%;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.8rem; /* Shrinks title slightly for tablets */
    }
}

@media (max-width: 600px) {
    /* Navigation Adjustments */
    .nav-links {
        display: none; /* Hide standard links on tiny screens unless you use a toggle */
    }
    
    .logo {
        font-size: 1.2rem;
    }

    /* Hero Text Adjustments */
    .hero-content h1 {
        font-size: 2rem; /* Easy to read on phones */
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Centering the Gold Box on mobile */
    .about-image {
        padding: 10px;
    }
    
    .image-accent {
        width: calc(100% - 5px);
        height: calc(100% - 5px);
    }
    
    .about-features {
        flex-direction: column; /* Stacks '5+ years' and '15+ services' */
        gap: 15px;
    }
}

/* 3. Global Responsive Image Fix */
img {
    max-width: 100%;
    height: auto;
}

/* --- Desktop Reset --- */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1100;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #d4af37;
    transition: 0.4s;
}

/* --- Mobile Compatibility (Phone/Tablet) --- */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex !important; /* Forces icon to show */
    }

    .nav-links {
        position: fixed !important;
        top: 0;
        right: -100% !important; /* Menu starts off-screen */
        height: 100vh !important;
        width: 70% !important;
        background-color: #111 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        transition: 0.5s ease-in-out !important;
        z-index: 1000 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* This is the class the JavaScript triggers */
    .nav-links.active {
        right: 0 !important; /* Menu slides into view */
    }

    .nav-links li {
        margin: 20px 0 !important;
    }

    /* Icon animation into an X */
    .hamburger.toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Ensure the Navbar stays at the top of the screen */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Dark background */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    z-index: 2000; /* Higher than hero */
}

/* Mobile Styling */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        z-index: 2001;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: #d4af37;
        transition: 0.4s;
    }

    .nav-links {
        position: fixed !important;
        top: 0;
        right: -100% !important; /* Start hidden */
        height: 100vh !important;
        width: 100% !important; /* Full width for easier use */
        background-color: #111 !important; /* Solid color so you can see it */
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease-in-out !important;
        list-style: none;
    }

    /* THE CLASS THAT MAKES IT APPEAR */
    .nav-links.active {
        right: 0 !important;
    }

    .nav-links li {
        margin: 25px 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: white;
        text-decoration: none;
    }

    /* Hamburger to X Animation */
    .hamburger.toggle span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .hamburger.toggle span:nth-child(2) { opacity: 0; }
    .hamburger.toggle span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
}

/* --- Desktop Reset (Keep links visible on PC) --- */
@media screen and (min-width: 769px) {
    .hamburger { display: none; }
    .nav-links { display: flex !important; position: static !important; opacity: 1 !important; }
}

/* --- Mobile Fixes --- */
@media screen and (max-width: 768px) {
    .navbar {
        z-index: 2500 !important; /* Higher than Hero */
        background: #000; /* Solid background so links don't blend with Hero */
    }

    .nav-links {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 0;
        right: -100% !important; /* Start off-screen */
        width: 100% !important; /* Full screen width for mobile */
        height: 100vh !important;
        background-color: #111 !important; /* Dark solid background */
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out !important;
        z-index: 2000 !important;
        padding: 0;
        margin: 0;
    }

    /* THE TRIGGER CLASS */
    .nav-links.active {
        right: 0 !important; /* Slide into view */
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-links li {
        margin: 20px 0;
        list-style: none;
    }

    .nav-links a {
        font-size: 1.5rem !important;
        color: #fff !important;
        text-decoration: none;
    }

    /* Animation for the 3 bars into an X */
    .hamburger.toggle span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .hamburger.toggle span:nth-child(2) { opacity: 0; }
    .hamburger.toggle span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
}

/* Container for the button */
.show-more-container {
    width: 100%;
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically */
    padding: 40px 0;         /* Adds space above and below the button */
    background-color: #121212; /* Matches your body background from screenshot */
}

/* Button Styling to match your 3A branding */
.btn-primary {
    background-color: #d4af37; /* Your gold color */
    color: #000;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Styling for the Service Cards and Animation */
.services-section {
    background-color: #121212;
    padding: 100px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Aligns price with the title */
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #d4af37;
    background: #222;
}

.service-info h3 {
    color: #fff;
    margin-bottom: 8px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.1rem;
    text-align: left;
}

.service-info p {
    color: #aaa;
    font-size: 0.85rem;
    line-height: 1.4;
    text-align: left;
}

.price {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    margin-left: 20px;
}

/* Hidden state logic */
.hidden-service {
    display: none !important;
}

.hidden-service.show-now {
    display: flex !important;
    animation: fadeInSlide 0.5s ease forwards;
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.show-more-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    color: #fff;
}

.faq-item {
    border-bottom: 1px solid #d4af37; /* Gold color from your logo */
    padding: 15px 0;
    cursor: pointer;
}

.faq-question {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    padding-top: 10px;
    color: #ccc;
    font-size: 0.9em;
}

/* Barber Section */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.barber-card {
    text-align: center;
    border: 1px solid #333;
    padding: 20px;
    transition: 0.3s;
}

.barber-card:hover {
    border-color: #d4af37;
}

.barber-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid #d4af37;
}

.process-section {
    padding: 100px 20px;
    background-color: #0c0c0c;
    color: #fff;
    text-align: center;
}

.process-grid {
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
    text-align: left;
}

/* The vertical gold line in the background */
.process-grid::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #d4af37, transparent);
}

.process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease-out;
}

.process-item.step-visible {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    background: #d4af37;
    color: #000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.step-content {
    margin-left: 30px;
}

.step-content h3 {
    color: #d4af37;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.step-content p {
    color: #bbb;
    line-height: 1.6;
    max-width: 600px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .step-content h3 { font-size: 1.2rem; }
    .process-grid::before { left: 15px; }
    .step-number { width: 35px; height: 35px; font-size: 1rem; }
    .step-content { margin-left: 20px; }
}


/* Floating Viber Button Styling */
#sticky-viber-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #7360f2; /* Professional Viber Purple */
    color: #ffffff;
    border-radius: 50%;
    display: none; /* Managed by JS */
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 32px;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

#sticky-viber-btn:hover {
    transform: scale(1.1);
    background-color: #5e4ed9;
}

/* Subtle pulse effect to make it look premium */
#sticky-viber-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #7360f2;
    animation: viber-pulse 2s infinite;
}

@keyframes viber-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Tooltip styling */
.viber-tooltip {
    position: absolute;
    right: 70px; /* Positions it to the left of the circle */
    background-color: #7360f2;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Slide out effect on hover */
#sticky-viber-btn:hover .viber-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Ensure the icon stays centered in the circle */
#sticky-viber-btn i {
    z-index: 2;
}

/* style.css */

.team-card {
    position: relative;
    width: 250px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a; /* Initial gray */
    border-radius: 20px; /* Made it rounder */
    overflow: visible;
    transition: background-color 0.8s ease 1s, box-shadow 0.8s ease 1s;
}

/* The "After-Glow" effect when drawn */
.team-card.draw-now {
    background-color: #252525; /* Lightens the gray box */
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.15); /* Soft gold glow */
}

.border-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: none;
    pointer-events: none;
    z-index: 5;
}

.border-svg rect {
    stroke: #d4af37;
    stroke-width: 6;
    stroke-dasharray: 1150; /* Adjusted for rounder perimeter */
    stroke-dashoffset: 1150; 
    transition: stroke-dashoffset 1.5s ease-in-out;
}

.team-card.draw-now .border-svg rect {
    stroke-dashoffset: 0;
}

.card-inner {
    text-align: center;
    z-index: 2;
    transition: transform 0.5s ease;
}

/* Subtle lift for the text once active */
.team-card.draw-now .card-inner {
    transform: translateY(-5px);
}

.card-inner h3 {
    color: #d4af37;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.card-inner p {
    color: #ffffff;
    font-size: 0.9rem;
    margin-top: 5px;
    opacity: 0.8;
}

.team-card {
    position: relative;
    width: 250px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a;
    border-radius: 20px;
    
    /* Critical for 3D and performance */
    transform-style: preserve-3d;
    will-change: transform; 
    transition: background-color 0.8s ease 1s, box-shadow 0.8s ease 1s, transform 0.1s ease-out;
}

/* Smoother reset when mouse leaves */
.team-card:not(:hover) {
    transition: transform 0.5s ease-in-out, background-color 0.8s ease, box-shadow 0.8s ease;
}

/* Glavni Footer Kontejner */
.main-footer {
    background-color: #080808;
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-container {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Logotip i Tekst */
.footer-logo {
    color: #d4af37 !important;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.footer-logo .white-text {
    color: #ffffff !important;
}

.footer-brand p {
    color: #888;
    font-size: 0.95rem;
    max-width: 450px;
    margin: 0 auto;
}

/* Sekcija za Socijalne Mreže */
.footer-social h3 {
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Čisto Bijele Ikone */
.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* UKLANJANJE PLAVE/LJUBIČASTE BOJE */
.social-icon i {
    color: #ffffff !important; /* Forsira bijelu boju */
    font-size: 1.2rem;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
}

.social-icon:hover {
    background: #d4af37 !important;
    transform: translateY(-5px);
    border-color: #d4af37;
}

.social-icon:hover i {
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
}

/* Donji dio sa copyrightom */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    color: #444;
    font-size: 0.75rem;
}

/* style.css */

#sticky-viber-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #d4af37; /* Zlatna umjesto ljubičaste */
    color: #000000 !important; /* Crna ikona */
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 30px;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    opacity: 0;
}

#sticky-viber-btn i {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
}

#sticky-viber-btn:hover {
    transform: scale(1.1);
    background-color: #ffffff; /* Pobijeli na hover za extra efekt */
}

/* Zlatni pulsirajući krug oko dugmeta */
#sticky-viber-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #d4af37;
    animation: gold-pulse 2s infinite;
}

@keyframes gold-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Tooltip koji klizi sa strane */
.viber-tooltip {
    position: absolute;
    right: 75px;
    background-color: #d4af37;
    color: #000;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

#sticky-viber-btn:hover .viber-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* style.css */

/* Osigurava stabilnost 3D efekta */
.team-card {
    will-change: transform;
    transition: transform 0.1s ease-out, background-color 0.8s ease, box-shadow 0.8s ease;
}

/* Reset za glatko vraćanje kartice */
.team-card:not(:hover) {
    transition: transform 0.5s ease-in-out;
}

/* Osnovno stanje za Viber dugme */
#sticky-viber-btn {
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none;
    opacity: 0;
}


.stats-section {
    padding: 80px 20px;
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('assets/img/pattern.png');
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-family: 'Oswald', sans-serif;
    color: #d4af37;
    margin-bottom: 10px;
    font-weight: bold;
}

.stat-item p {
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .stat-number { font-size: 2.5rem; }
}

/* style.css */

.parallax-quote {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Ovdje stavi sliku enterijera salona ili neku moćnu crno-bijelu sliku */
    background-image: url('assets/img/salon-parallax.jpg'); 
    background-attachment: fixed; /* Ključ za parallax efekat */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Zatamnjenje da tekst iskoči */
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
}

.quote-icon {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.parallax-content h2 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 3px;
    line-height: 1.4;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.quote-author {
    color: #d4af37;
    font-size: 1rem;
    letter-spacing: 4px;
    font-weight: bold;
}

/* Prilagodba za mobilne - parallax se često gasi na mobitelima radi brzine */
@media (max-width: 768px) {
    .parallax-quote {
        background-attachment: scroll;
        height: 350px;
    }
    .parallax-content h2 {
        font-size: 1.6rem;
    }
}

/* style.css */

.parallax-quote {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Zamijeni 'parallax-bg.jpg' svojom slikom u assets/img folderu */
    background-image: url('assets/img/parallax-bg.jpg'); 
    background-attachment: fixed; /* Ovo kreira parallax efekat */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.6), rgba(0,0,0,0.8));
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 900px;
}

.quote-icon {
    color: #d4af37;
    font-size: 3rem;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.parallax-content h2 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 4px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.quote-author {
    color: #d4af37;
    font-size: 1.1rem;
    letter-spacing: 5px;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.quote-line {
    width: 60px;
    height: 2px;
    background: #d4af37;
    margin: 20px auto;
}

/* Onemogući parallax na mobilnim uređajima radi boljih performansi */
@media (max-width: 768px) {
    .parallax-quote {
        background-attachment: scroll;
        height: 400px;
    }
    .parallax-content h2 {
        font-size: 1.8rem;
    }
}

/* style.css */

.instagram-section {
    padding: 100px 20px;
    background-color: #080808;
    text-align: center;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
    max-width: 1100px;
    margin: 40px auto;
}

.insta-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.insta-overlay i {
    color: #000;
    font-size: 2rem;
}

.insta-item:hover img {
    transform: scale(1.15);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.btn-insta-follow {
    display: inline-block;
    padding: 15px 35px;
    border: 2px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 3px;
    font-weight: bold;
    transition: 0.4s;
}

.btn-insta-follow:hover {
    background: #d4af37;
    color: #000;
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* style.css */

.premium-booking {
    background: #0a0a0a;
    color: #fff;
    padding: 100px 20px 140px 20px;
    font-family: 'Inter', sans-serif;
}

.booking-container {
    max-width: 1000px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 60px;
}

.booking-header .subtitle {
    color: #d4af37;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.booking-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-top: 10px;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.column-title {
    font-size: 0.9rem;
    color: #444;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
}

/* Usluge kao moderni čipovi */
.services-modern-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.srv-chip {
    cursor: pointer;
}

.srv-chip input { display: none; }

.srv-chip span {
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid #222;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: 0.3s;
    background: #111;
}

.srv-chip input:checked + span {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
    font-weight: bold;
}

/* Moderni Kalendar */
.modern-calendar {
    background: #111;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cal-header button {
    background: none; border: none; color: #d4af37; cursor: pointer; font-size: 1.2rem;
}

.cal-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.cal-day {
    padding: 10px 0;
    cursor: pointer;
    border-radius: 10px;
    font-size: 0.9rem;
}

.cal-day:hover:not(.disabled) { background: #222; }
.cal-day.active { background: #d4af37; color: #000; font-weight: bold; }
.cal-day.disabled { color: #333; cursor: default; }

/* Vrijeme kao pilule */
.modern-time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 40px;
}

.time-pill {
    padding: 10px;
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: 0.3s;
}

.time-pill.active { background: #fff; color: #000; border-color: #fff; }

.btn-premium {
    width: 100%;
    padding: 25px;
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-premium:hover {
    background: #d4af37;
    color: #000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .booking-grid { grid-template-columns: 1fr; gap: 40px; }
    .booking-header h2 { font-size: 1.8rem; }
}

.premium-booking {
    background: #0f0f0f; /* Ova boja odgovara tvom sajtu (tamno siva, ne čista crna) */
    color: #fff;
    padding: 100px 20px 140px 20px;
}


/* style.css */
.premium-booking {
    background: #0f0f0f; /* Tamno siva pozadina */
    color: #fff;
    padding: 80px 20px 120px 20px;
}

.booking-container {
    max-width: 1000px;
    margin: 0 auto;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Stil za usluge (Chips) */
.services-modern-list { display: flex; flex-wrap: wrap; gap: 8px; }
.srv-chip input { display: none; }
.srv-chip span {
    display: inline-block;
    padding: 10px 18px;
    background: #181818;
    border: 1px solid #333;
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.3s;
}
.srv-chip input:checked + span { background: #d4af37; color: #000; border-color: #d4af37; }

/* Stil za kalendar */
.modern-calendar { background: #181818; padding: 20px; border-radius: 20px; border: 1px solid #222; margin-bottom: 25px; }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; color: #d4af37; font-weight: bold; }
.cal-days-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; text-align: center; }
.cal-day { padding: 10px 0; cursor: pointer; border-radius: 8px; font-size: 0.85rem; }
.cal-day.active { background: #d4af37; color: #000; font-weight: bold; }
.cal-day.disabled { color: #333; cursor: default; }

/* Dugme */
.btn-premium {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}
.btn-premium:hover { background: #d4af37; color: #000; }

@media (max-width: 768px) { .booking-grid { grid-template-columns: 1fr; } }

.btn-premium {
    background: #d4af37 !important; /* Zlatna boja da se istakne */
    color: #000 !important;
    font-weight: bold;
    border-radius: 12px;
    margin-top: 20px;
}

.btn-premium:hover {
    background: #fff !important;
    border-color: #fff !important;
}

/* style.css */

/* Toast animacija */
.copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #d4af37;
    color: #000;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.copy-toast.show {
    transform: translateX(-50%) translateY(0);
}

/* Osiguraj da je pozadina sekcije tamno siva */
.premium-booking {
    background: #0f0f0f !important;
    padding-bottom: 150px; /* Padding na dnu stranice */
}

/* Stil za pilule vremena u Grid-u */
.modern-time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 20px;
}

.time-pill {
    background: #181818;
    border: 1px solid #333;
    padding: 10px 0;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.time-pill.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* style.css */
.premium-booking { background: #0f0f0f; color: #fff; padding: 80px 20px 150px 20px; font-family: 'Inter', sans-serif; }
.booking-container { max-width: 1000px; margin: 0 auto; }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.column-title { font-size: 0.9rem; color: #444; letter-spacing: 2px; margin-bottom: 25px; border-bottom: 1px solid #222; padding-bottom: 10px; }
.services-modern-list { display: flex; flex-wrap: wrap; gap: 8px; }
.srv-chip input { display: none; }
.srv-chip span { display: inline-block; padding: 10px 18px; background: #181818; border: 1px solid #333; border-radius: 50px; font-size: 0.85rem; cursor: pointer; transition: 0.3s; }
.srv-chip input:checked + span { background: #d4af37; color: #000; border-color: #d4af37; }

.modern-calendar { background: #181818; padding: 20px; border-radius: 20px; border: 1px solid #222; margin-bottom: 20px; }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; color: #d4af37; font-weight: bold; }
.cal-header button { background: none; border: none; color: #d4af37; cursor: pointer; font-size: 1.2rem; }
.cal-days-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; text-align: center; }
.cal-day { padding: 10px 0; cursor: pointer; border-radius: 8px; font-size: 0.85rem; }
.cal-day.active { background: #d4af37; color: #000; font-weight: bold; }
.cal-day.disabled { color: #333; cursor: default; }

.modern-time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    min-height: 50px; /* Smanjeno da ne zauzima previše mjesta dok je prazno */
    margin-bottom: 10px;
}
.time-pill { background: #181818; border: 1px solid #333; padding: 10px 0; text-align: center; border-radius: 10px; cursor: pointer; font-size: 0.85rem; }
.time-pill.active { background: #fff; color: #000; border-color: #fff; }

.btn-premium { width: 100%; padding: 20px; background: transparent; border: 1px solid #d4af37; color: #d4af37; font-family: 'Oswald', sans-serif; font-size: 1.1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; margin-top: 30px; transition: 0.3s; }
.btn-premium:hover { background: #d4af37; color: #000; }

/* --- NOVI MODAL STIL SA "X" DUGMETOM --- */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.3s; z-index: 9999; backdrop-filter: blur(5px); }
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-content { 
    background: #181818; 
    width: 90%; 
    max-width: 400px; 
    padding: 50px 30px 40px 30px; 
    border-radius: 30px; 
    text-align: center; 
    border: 1px solid #333; 
    position: relative; /* Bitno za pozicioniranje X-a */
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* NOVO X DUGME */
.close-x {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #222;
    color: #888;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.close-x:hover {
    background: #ff4444;
    color: #fff;
    transform: rotate(90deg);
}

.modal-icon { font-size: 3rem; margin-bottom: 15px; }
.modal-content h3 { color: #d4af37; font-family: 'Oswald', sans-serif; margin-bottom: 10px; font-size: 1.6rem; }

.steps-box { text-align: left; background: #0d0d0d; padding: 20px; border-radius: 15px; margin: 25px 0; border: 1px solid #222; }
.step { font-size: 0.9rem; color: #aaa; margin-bottom: 10px; line-height: 1.4; }

.modal-btn { width: 100%; padding: 18px; background: #d4af37; border: none; border-radius: 50px; font-weight: bold; font-family: 'Oswald', sans-serif; font-size: 1.1rem; cursor: pointer; transition: 0.3s; }
.modal-btn:hover { background: #fff; color: #000; }

@media (max-width: 768px) { .booking-grid { grid-template-columns: 1fr; } }


.btn-premium {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px; /* Smanjeno sa 30px da se dugme pomjeri GORE */
    transition: 0.3s;
}

/* style.css */

/* Stil za navigaciono dugme (gore desno) */
.nav-btn {
    background-color: #d4af37;
    color: #000;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.3s;
}

/* Stil za glavno dugme na slici (centar) */
.hero-btn {
    display: inline-block;
    background-color: #d4af37;
    color: #000000;
    padding: 15px 30px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    margin-top: 20px;
    transition: 0.3s;
}

.nav-btn:hover, .hero-btn:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

/* Osigurava da skrolovanje ne ide skroz do vrha (ako imaš fiksni header) */
#rezervacija {
    scroll-margin-top: 80px; 
}

/* style.css */
.premium-booking { background: #0f0f0f; color: #fff; padding: 100px 20px; font-family: 'Inter', sans-serif; scroll-margin-top: 80px; }
.booking-container { max-width: 1100px; margin: 0 auto; }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* USLUGE */
.services-modern-list { display: flex; flex-wrap: wrap; gap: 10px; }
.srv-chip input { display: none; }
.srv-chip span { 
    display: inline-block; padding: 12px 20px; background: #181818; 
    border: 1px solid #333; border-radius: 50px; font-size: 0.9rem; 
    cursor: pointer; transition: 0.3s; 
}
.srv-chip input:checked + span { background: #d4af37; color: #000; border-color: #d4af37; font-weight: bold; }

/* KALENDAR - OVO POPRAVLJA TVOJ PROBLEM */
.modern-calendar { background: #181818; padding: 25px; border-radius: 20px; border: 1px solid #222; margin-bottom: 20px; }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; color: #d4af37; font-weight: bold; }
.cal-header button { background: none; border: none; color: #d4af37; cursor: pointer; font-size: 1.5rem; }

.cal-days-grid { 
    display: grid; 
    grid-template-columns: repeat(7, 1fr); /* 7 kolona za dane u sedmici */
    gap: 8px; 
    text-align: center; 
}

.cal-day { 
    padding: 12px 0; border-radius: 10px; cursor: pointer; 
    transition: 0.3s; font-size: 0.9rem; color: #ccc;
}
.cal-day:hover:not(.disabled) { background: #222; color: #d4af37; }
.cal-day.active { background: #d4af37 !important; color: #000 !important; font-weight: bold; }
.cal-day.disabled { color: #333; cursor: default; }

/* VRIJEME */
.modern-time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 20px; }
.time-pill { 
    background: #181818; border: 1px solid #333; padding: 12px 0; 
    text-align: center; border-radius: 12px; cursor: pointer; transition: 0.3s; 
}
.time-pill.active { background: #fff; color: #000; border-color: #fff; transform: scale(1.05); }

/* DUGME */
.btn-premium { 
    width: 100%; padding: 22px; background: #d4af37; border: none; 
    color: #000; font-family: 'Oswald', sans-serif; font-weight: bold;
    font-size: 1.1rem; cursor: pointer; display: flex; 
    justify-content: space-between; align-items: center; margin-top: 20px; border-radius: 10px;
}

/* MODAL */
.modal-overlay { 
    position: fixed; top:0; left:0; width:100%; height:100%; 
    background: rgba(0,0,0,0.95); display:flex; align-items:center; 
    justify-content:center; opacity:0; visibility:hidden; transition:0.3s; z-index:9999; 
}
.modal-overlay.active { opacity:1; visibility:visible; }
.modal-content { 
    background:#181818; width:90%; max-width:400px; padding:40px; 
    border-radius:30px; text-align:center; position:relative; border:1px solid #333; 
}
.close-x { position:absolute; top:20px; right:20px; background:none; border:none; color:#fff; font-size:30px; cursor:pointer; }

@media (max-width: 768px) { .booking-grid { grid-template-columns: 1fr; } }

footer {
    text-align: center;
    padding: 40px;
    background: #000;
    font-size: 0.9rem;
}