	 :root {
			--primary: #142f2a; /* Medium Jungle Green */
			--secondary: #e0b973; /* Gold */
			--accent: #7c5a4a; /*Skrag brown */
			--light: #F5F5DC;
			--dark: #321414;
			--font-heading: "Montserrat", sans-serif; 
			--font-body: "Montserrat", sans-serif; 
		}
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
		
        
        body {
            font-family: var(--font-body);
            background-color: var(--primary);
            color: var(--dark);
            line-height: 1.6;
        }
        
        header {
            background-color: var(--primary);
            color: var(--secondary);
            padding: 1rem;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
		.logo img {
			max-height: 300px;
			max-width: 100%;
			display: block;
			margin: 0 auto;
		}
 
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem;
        }
        
        .tabs {
            display: flex;
            justify-content: center;
            margin: 1rem 0;
            flex-wrap: wrap;
        }
        
        .tab-button {
            padding: 0.75rem 1.5rem;
            margin: 0.25rem;
            background-color: var(--secondary);
            color: var(--accent);
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            font-family: var(--font-body);
        }
        
        .tab-button:hover {
            background-color: var(--accent);
            color: var(--light);
        }
        
        .tab-button.active {
            background-color: var(--accent);
            color: var(--light);
        }
        
        .menu-section {
            display: none;
            animation: fadeIn 0.5s;
        }
        
        .menu-section.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
		
		
		
		.category-header {
			display: flex;
			justify-content: space-between;
			align-items: center;
			padding-bottom: 0.5rem;
			margin-bottom: 1rem;
			flex-direction: row-reverse; /* This reverses the order */
			position: relative;
            border-bottom: 2px solid var(--accent);
		}
		
		.serving-types {
			display: flex;
			gap: 20px; /* Space between Glass and Bottle */
		}

		.serving-type {
			font-family: "Montserrat", sans-serif;
			font-weight: 600;
			font-size: 0.9rem;
			color: var(--secondary);
		}
		
        .category {
            margin-bottom: 2rem;
        }
        
        .category-title {
            font-family: var(--font-heading);
            color: var(--accent);
            padding-bottom: 0.5rem;
		    margin: 0; /* Remove default margin */
			flex-grow: 1; /* Allow title to take remaining space */
        }


        .gold-text {
            /* Apply the gradient to the background */
            background-image: linear-gradient(to right, #7c5a4a 0%, #e0b973  22%, #f9e7a8  45%, #fff8d6  50%, #f9e7a8  55%, #e0b973  78%, #7c5a4a 100%);
            
            /* Make the text color transparent so we can see the background */
            color: transparent;
            
            /* Clip the background to the shape of the text */
            -webkit-background-clip: text; /* For Safari/Chrome */
            background-clip: text;
            
            /* Add some styling */
            font-family: var(--font-heading);
            padding-bottom: 0.5rem;
		    margin: 0;
			flex-grow: 1;


        }

        .menu-item {
            padding: 1rem;
            margin-bottom: 1rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .item-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }
        
        .item-name {
			color: var(--secondary);
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .item-price {
            color: var(--secondary);
            font-weight: bold;
        }
		
		.item-prices {
			display: flex;
			gap: 15px;
		}
		
		.price-glass, .price-bottle {
			font-family: "Montserrat", sans-serif;
			font-weight: 600;
			color: var(--secondary);
			min-width: 40px;
			text-align: center;
		}
        
        .item-desc {
            color: var(--accent);
            font-size: 0.9rem;
            font-weight: bold;
        }

        footer {
            background: linear-gradient(to right, #142f2a, #18332d);
            padding: 25px 30px;
            text-align: center;
            border-top: 2px solid var(--accent);
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .location, .hours, .contact {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .location a {
            color: var(--secondary); /* Change to your desired color */
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .location a:hover {
            color: var(--accent); /* Change to your desired hover color */
            text-decoration: underline;
        }
        
        .icon {
            color: var(--accent);
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
        }
        
        .text {
            font-size: 1.1rem;
            color: var(--secondary);
        }
        
        .contact a {
            color: var(--secondary);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }
        
        .contact a:hover {
            color:var(--accent);
            text-decoration: underline;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: var(--secondary);
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }
        
        .copyright {
            margin-top: 20px;
            color: var(--secondary);
            font-size: 0.9rem;
        }

        /* Filter container styling */
.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1rem 0 2rem;
    padding: 0 1rem;
}

/* Filter buttons */
.filter-btn {
    padding: 0.5rem 1rem;
    background-color: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.filter-btn:hover {
    background-color: var(--accent);
    color: var(--light);
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: var(--accent);
    color: var(--light);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
        
        @media (max-width: 600px) {
            .menu-title {
                font-size: 2.2rem;
            }
            
            .menu-subtitle {
                font-size: 1.1rem;
            }
            
            .text {
                font-size: 1rem;
            }
            
            .footer-content {
                gap: 12px;
            }

             .filter-container {
            gap: 5px;
            }
    
            .filter-btn {
             padding: 0.4rem 0.8rem;
             font-size: 0.8rem;
            }

        /* Scroll to top button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--accent);
            color: var(--light);
            border: none;
            cursor: pointer;
            display: none;
            font-size: 1.2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-to-top:hover {
            background-color: var(--secondary);
            transform: translateY(-5px);
        }   
                }