:root {
            --primary: #c8a796;
            --primary-dark: #a58a7b;
            --primary-light: #e8d9d0;
            --secondary: #f5f0ed;
            --dark: #333333;
            --darker: #1a1a1a;
            --light: #ffffff;
            --transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
            --section-padding: 120px 0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            line-height: 1.8;
            overflow-x: hidden;
            background-color: var(--light);
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: 0.5px;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            padding: 16px 36px;
            background-color: var(--primary);
            color: var(--light);
            border: none;
            border-radius: 0;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: var(--transition);
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
        }

        .btn:hover::after {
            left: 100%;
        }

        .section {
            padding: var(--section-padding);
            position: relative;
        }

        .section-title {
            font-size: 3rem;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
        }

        .section-title.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title .title-decoration {
            display: inline-block;
            margin-bottom: 20px;
            font-size: 1.2rem;
            color: var(--primary);
            font-weight: 400;
            letter-spacing: 4px;
            text-transform: uppercase;
            font-family: 'Montserrat', sans-serif;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 30px 0;
            z-index: 1000;
            transition: var(--transition);
            background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            padding: 20px 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(10px);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 40px;
            transition: var(--transition);
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
        }

        header.scrolled .logo img {
            height: 35px;
            filter: none;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 40px;
            position: relative;
        }

        nav ul li a {
            color: var(--light);
            font-weight: 500;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        header.scrolled nav ul li a {
            color: var(--dark);
            text-shadow: none;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        header.scrolled .mobile-menu-btn {
            color: var(--dark);
            text-shadow: none;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 800px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            color: var(--light);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
            z-index: 1;
        }

        .hero-video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }
        
        .hero-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s var(--transition), transform 1s var(--transition);
        }

        .hero-content.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .hero h1 {
            font-size: 5rem;
            margin-bottom: 30px;
            line-height: 1.1;
            max-width: 800px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.7);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 600px;
            opacity: 0.9;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .hero-btns {
            display: flex;
            gap: 20px;
        }

        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--light);
        }

        .btn-secondary:hover {
            background-color: rgba(255,255,255,0.15);
        }

        .scroll-down {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            color: var(--light);
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0.7;
            transition: var(--transition);
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .scroll-down:hover {
            opacity: 1;
        }

        .scroll-down::after {
            content: '';
            display: block;
            width: 1px;
            height: 60px;
            background-color: var(--light);
            margin-top: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        /* About Section */
        .about {
            background-color: var(--light);
            overflow: hidden;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .about-text {
            flex: 1;
            opacity: 0;
            transform: translateX(-100px);
            transition: var(--transition);
            transition-delay: 0.3s;
        }

        .about-text.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .about-text h2 {
            font-size: 2.8rem;
            margin-bottom: 30px;
            color: var(--dark);
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .about-image {
            flex: 1;
            position: relative;
            opacity: 0;
            transform: translateX(100px);
            transition: var(--transition);
        }

        .about-image.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .about-image-main {
            width: 100%;
            height: 600px;
            object-fit: cover;
            position: relative;
        }

        .about-image-decoration {
            position: absolute;
            width: 200px;
            height: 200px;
            background-color: var(--primary-light);
            z-index: -1;
            transition: var(--transition);
        }

        .decoration-1 {
            top: -30px;
            left: -30px;
        }

        .decoration-2 {
            bottom: -30px;
            right: -30px;
        }

        .about-image:hover .decoration-1 {
            transform: translate(-10px, -10px);
        }

        .about-image:hover .decoration-2 {
            transform: translate(10px, 10px);
        }

        /* Gallery Section */
        .gallery {
            background-color: var(--secondary);
            padding: 60px 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            height: 400px;
            opacity: 0;
            transform: translateY(50px);
            transition: var(--transition);
        }

        .gallery-item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-item:nth-child(1) { transition-delay: 0.1s; }
        .gallery-item:nth-child(2) { transition-delay: 0.2s; }
        .gallery-item:nth-child(3) { transition-delay: 0.3s; }

        /* Services Section */
        .services {
            background-color: var(--light);
        }

        .services-container {
            display: flex;
            gap: 60px;
        }

        .services-nav {
            flex: 0 0 300px;
            position: sticky;
            top: 150px;
            height: fit-content;
        }

        .services-nav-item {
            padding: 20px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }

        .services-nav-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background-color: var(--primary);
            transform: scaleY(0);
            transform-origin: top;
            transition: var(--transition);
        }

        .services-nav-item.active {
            color: var(--primary);
        }

        .services-nav-item.active::before {
            transform: scaleY(1);
        }

        .services-nav-item h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .services-nav-item p {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .services-content {
            flex: 1;
        }

        .service {
            margin-bottom: 100px;
            opacity: 0;
            transform: translateY(50px);
            transition: var(--transition);
        }

        .service.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .service-header {
            display: flex;
            align-items: flex-end;
            margin-bottom: 60px;
        }

        .service-image {
            width: 60%;
            height: 400px;
            object-fit: cover;
        }

        .service-title {
            margin-left: -100px;
            margin-bottom: -50px;
            background-color: var(--light);
            padding: 50px;
            z-index: 2;
            position: relative;
        }

        .service-title h2 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .service-title p {
            max-width: 400px;
            font-size: 1.1rem;
        }

        .service-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .service-detail h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .service-detail ul {
            list-style: none;
        }

        .service-detail ul li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 25px;
        }

        .service-detail ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 10px;
            height: 2px;
            background-color: var(--primary);
        }

        /* CTA Section */
        .cta {
            background-color: var(--darker);
            color: var(--light);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('public/slika2.jpg') no-repeat center center/cover;
            opacity: 0.2;
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta h2 {
            font-size: 3rem;
            margin-bottom: 30px;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.8;
        }

        /* Footer */
        footer {
            background-color: var(--darker);
            color: var(--light);
            padding: 100px 0 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 15px;
        }

        .footer-column ul li a:hover {
            color: var(--primary);
        }

        .footer-logo img {
            height: 40px;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Styles */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 4rem;
            }
            
            .service-title {
                margin-left: -50px;
                padding: 30px;
            }
        }

        @media (max-width: 992px) {
            .section {
                padding: 80px 0;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-text, .about-image {
                flex: none;
                width: 100%;
            }
            
            .about-image {
                margin-top: 60px;
            }
            
            .services-container {
                flex-direction: column;
            }
            
            .services-nav {
                flex: none;
                margin-bottom: 60px;
                position: static;
            }
            
            .service-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .service-image {
                width: 100%;
            }
            
            .service-title {
                margin-left: 0;
                margin-bottom: 0;
                margin-top: -50px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 30px;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            nav ul {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: var(--light);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: var(--transition);
                z-index: 999;
            }

            nav ul.active {
                right: 0;
            }

            nav ul li {
                margin: 20px 0;
            }

            nav ul li a {
                color: var(--dark);
                font-size: 1.2rem;
            }

            .mobile-menu-btn {
                display: block;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 20px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .service-title h2 {
                font-size: 2rem;
            }
            
            .service-title {
                padding: 20px;
            }
            
            .cta h2 {
                font-size: 2.2rem;
            }
        }

        .hero-video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
    }
    
    .hero-video-container iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
    }
     .service {
        position: relative;
        padding-bottom: 80px; 
    }
    
    .service-booking {
        position: absolute;
        bottom: 20px;
        right: 20px;
        text-align: right;
    }
    
    .booking-btn {
        background-color: var(--primary);
        color: white;
        padding: 12px 30px;
        border-radius: 3px;
        font-weight: 600;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }
    
    .booking-btn:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    @media (max-width: 768px) {
        .service-booking {
            position: static;
            text-align: center;
            margin-top: 30px;
        }
    }