   /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --olive-dark: #2d5016;
            --olive-medium: #4a7c23;
            --olive-light: #5d8f2a;
            --olive-extra-light: #a8c97f;
            --gold: #d4af37;
            --cream: #f8f5e9;
            --text-dark: #1a1a1a;
            --text-light: #f8f9fa;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar {
            background: rgba(248, 245, 233, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-img {
            width: 45px;
            height: 45px;
            filter: drop-shadow(0 4px 8px rgba(45, 80, 22, 0.3));
            animation: rotate 12s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links li a {
            color: var(--olive-dark);
            font-weight: 500;
            text-decoration: none;
            position: relative;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 8px;
            outline: none;
        }

        .nav-links li a:focus {
            outline: 2px solid var(--olive-medium);
            outline-offset: 2px;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--olive-dark), var(--olive-light));
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links li a:hover::after {
            width: 100%;
        }

        .nav-links li a:hover {
            color: var(--olive-medium);
            background: rgba(77, 124, 35, 0.1);
        }

        .nav-links li a.button {
            background: linear-gradient(135deg, var(--olive-medium) 0%, var(--olive-light) 100%);
            color: #fff;
            border-radius: 12px;
            padding: 12px 24px;
            box-shadow: 0 4px 16px rgba(74, 124, 35, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-links li a.button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }

        .nav-links li a.button:hover::before {
            left: 100%;
        }

        .nav-links li a.button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(74, 124, 35, 0.4);
        }

        /* Mobile menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--olive-dark);
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle:hover {
            background: rgba(77, 124, 35, 0.1);
        }

        .mobile-menu-toggle:focus {
            outline: 2px solid var(--olive-medium);
            outline-offset: 2px;
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            padding: 1rem;
            border-radius: 0 0 16px 16px;
        }

        .mobile-menu.active {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .mobile-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-menu ul li a {
            color: var(--olive-dark);
            text-decoration: none;
            font-weight: 500;
            padding: 12px 16px;
            display: block;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-menu ul li a:hover {
            background: rgba(77, 124, 35, 0.1);
            color: var(--olive-medium);
        }

        .mobile-menu ul li a:focus {
            outline: 2px solid var(--olive-medium);
            outline-offset: 2px;
        }

        /* Hero section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(15, 32, 39, 0.8), rgba(44, 83, 100, 0.8)), 
                        url('https://images.unsplash.com/photo-1513104890138-7c749659a591?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 70%, rgba(74, 124, 35, 0.3) 0%, transparent 50%);
            z-index: 1;
        }

        .hero .container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out;
        }

        .hero-text {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 0.3s both;
            line-height: 1.6;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-olives {
            width: 100px;
            margin: 2rem 0;
            filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
            animation: olives-float 4s ease-in-out infinite;
        }

        @keyframes olives-float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .hero-cta {
            display: inline-block;
            background: linear-gradient(135deg, var(--olive-medium) 0%, var(--olive-light) 100%);
            color: #fff;
            padding: 16px 32px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 0 8px 24px rgba(74, 124, 35, 0.4);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .hero-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }

        .hero-cta:hover::before {
            left: 100%;
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(74, 124, 35, 0.5);
        }

        .hero-cta:focus {
            outline: 2px solid #fff;
            outline-offset: 3px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 12px 20px;
            border-radius: 30px;
            margin-top: 2rem;
            font-weight: 500;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
            100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
        }

        .badge-icon {
            margin-right: 8px;
            color: var(--gold);
        }

        /* Menu section */
        .menu-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .menu-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(180deg, rgba(44, 83, 100, 0.1) 0%, transparent 100%);
        }

        .menu-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="40" r="18" fill="rgba(168, 201, 127, 0.1)" stroke="none"/><circle cx="70" cy="60" r="18" fill="rgba(168, 201, 127, 0.1)" stroke="none"/></svg>');
            background-repeat: no-repeat;
            background-size: contain;
            opacity: 0.2;
            z-index: 0;
        }

        .menu-section .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-header p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.2rem;
            color: var(--text-dark);
            opacity: 0.8;
        }

        .section-header::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--olive-dark), var(--olive-light));
            border-radius: 2px;
        }

        .menu-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .menu-tab {
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.8);
            border: 2px solid transparent;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            color: var(--olive-dark);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        }

        .menu-tab:focus {
            outline: 2px solid var(--olive-medium);
            outline-offset: 2px;
        }

        .menu-tab.active {
            background: linear-gradient(135deg, var(--olive-medium) 0%, var(--olive-light) 100%);
            color: #fff;
            box-shadow: 0 8px 24px rgba(74, 124, 35, 0.3);
        }

        .menu-tab:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .menu-content {
            display: none;
        }

        .menu-content.active {
            display: block;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .menu-item {
            background: rgba(255, 255, 255, 0.95);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .menu-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--olive-medium), var(--olive-light));
            border-radius: 20px 20px 0 0;
        }

        .menu-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
        }

        .menu-item h3 {
            font-family: 'Playfair Display', serif;
            color: var(--olive-dark);
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        .menu-item h3 i {
            margin-right: 10px;
            color: var(--olive-medium);
        }

        .menu-item p {
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.6;
            font-size: 0.95rem;
            min-height: 60px;
        }

        .menu-prices {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1rem;
        }

        .price-option {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 8px 16px;
            background: rgba(74, 124, 35, 0.1);
            border-radius: 12px;
            min-width: 80px;
            transition: all 0.3s ease;
        }

        .price-option:hover {
            background: rgba(74, 124, 35, 0.2);
            transform: translateY(-2px);
        }

        .price-size {
            font-size: 0.8rem;
            color: #666;
            margin-bottom: 2px;
        }

        .price-value {
            font-weight: 700;
            color: var(--olive-dark);
            font-size: 1.1rem;
        }

        /* Drinks section */
        .drinks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .drink-item {
            background: rgba(255, 255, 255, 0.95);
            padding: 1.5rem;
            border-radius: 16px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .drink-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .drink-name {
            font-weight: 500;
            color: var(--olive-dark);
            display: flex;
            align-items: center;
        }

        .drink-name i {
            margin-right: 10px;
            color: var(--olive-medium);
        }

        .drink-price {
            font-weight: 700;
            color: var(--olive-medium);
            font-size: 1.1rem;
        }

        /* About section */
        .about-section {
            background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive-medium) 50%, var(--olive-light) 100%);
            color: #fff;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        .about-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .about-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .about-section p {
            font-size: 1.2rem;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 3rem auto;
            opacity: 0.95;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--gold);
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        /* Contact section */
        .contact-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 120px 0;
            position: relative;
        }

        .contact-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.95);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--olive-medium), var(--olive-light));
            border-radius: 20px 20px 0 0;
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
        }

        .contact-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--olive-medium);
        }

        .contact-card h3 {
            font-family: 'Playfair Display', serif;
            color: var(--olive-dark);
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .contact-card p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .contact-card a {
            color: var(--olive-medium);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .contact-card a:hover {
            color: var(--olive-dark);
            text-decoration: underline;
        }

        .contact-card a:focus {
            outline: 2px solid var(--olive-medium);
            outline-offset: 2px;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: rgba(255, 255, 255, 0.8);
            padding: 60px 0 40px 0;
            text-align: center;
        }

        footer .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
            text-align: left;
        }

        .footer-section h3 {
            font-family: 'Playfair Display', serif;
            color: #fff;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-section p {
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #fff;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--olive-medium);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 2rem;
            margin-top: 2rem;
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-text {
                font-size: 1.1rem;
            }

            .section-header h2 {
                font-size: 2.2rem;
            }

            .menu-grid {
                grid-template-columns: 1fr;
            }

            .menu-tabs {
                flex-direction: column;
                align-items: center;
            }

            .menu-prices {
                flex-direction: column;
                gap: 1rem;
            }

            .price-option {
                flex-direction: row;
                justify-content: space-between;
                width: 100%;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .contact-info {
                grid-template-columns: 1fr;
            }

            .hero {
                background-attachment: scroll;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero-text {
                font-size: 1rem;
            }

            .menu-item,
            .contact-card {
                padding: 1.5rem;
            }

            .about-section {
                padding: 80px 0;
            }

            .menu-section,
            .contact-section {
                padding: 80px 0;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }
        }

        /* Utility classes */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .hidden {
            display: none;
        }

        /* Accessibility improvements */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--olive-medium) 0%, var(--olive-light) 100%);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(74, 124, 35, 0.4);
}

.contact-map {
    height: 400px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    margin-top: 3rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 120px 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    margin: 1rem;
    position: relative;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: rgba(74, 124, 35, 0.2);
    position: absolute;
}

.testimonial-text::before {
    top: -20px;
    left: -15px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author-name {
    font-weight: 600;
    color: var(--olive-dark);
}

.testimonial-author-date {
    font-size: 0.8rem;
    color: #666;
}

.testimonial-rating {
    color: var(--gold);
    margin-top: 0.5rem;
}

.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
}

/* Dodatkowe style dla slidera */
.testimonials-slider {
    position: relative;
    min-height: 300px;
}

.testimonial-card {
    display: none; /* Początkowo ukryte */
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Style dla pustych gwiazdek */
.far.fa-star {
    color: #ddd;
}

        /* Reduce motion for users who prefer it */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

.notification-bar {
    background: linear-gradient(135deg, var(--olive-medium) 0%, var(--olive-light) 100%);
    color: white;
    padding: 10px 0;
    text-align: center;
    position: sticky;
    top: 80px; /* Dostosuj do wysokości Twojego headera */
    z-index: 999;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.notification-bar a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.notification-bar i {
    margin-right: 8px;
}

.close-notification {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-notification:hover {
    background: rgba(255,255,255,0.3);
}

/* Dla navbaru fixed dodaj: */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
}