  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #f8f4e3; /* Ivory White */
            color: #333;
        }

        header {
            background-color: #2c3e50; /* Rich Navy Blue */
            color: white;
            text-align: center;
            padding: 1.5rem 0;
        }

         /* Add styles for the logo */
        header.logo {
            position: absolute;
            top: 20%; /* Vertically center */
            left: 20%; /* Horizontally center */
            transform: translate(-50%, -50%);
            width: 250px;
        }

        header.logo img {
            width: 100px; /* Adjust size of the logo */
            height: 100px;
        }

        header h1 {
            font-size: 2.5rem;
            color: #d4af37; /* Champagne Gold */
        }

        nav {
            background-color: #555555; /* Charcoal Gray */
            display: flex;
            justify-content: space-around;
            padding: 0.5rem;
        }

        nav a {
            color: #f8f4e3; /* Ivory White */
            text-decoration: none;
            padding: 0.75rem 1.5rem;
            text-transform: uppercase;
            transition: background-color 0.3s;
        }

        nav a:hover {
            background-color: #d4af37; /* Champagne Gold */
            color: #2c3e50; /* Rich Navy Blue */
            border-radius: 5px;
        }

        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
        }

        .cocktail-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            grid-gap: 2rem;
        }

        .cocktail {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .cocktail:hover {
            transform: scale(1.05);
        }

        .cocktail img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .cocktail h3 {
            text-align: center;
            padding: 1rem 0;
            font-size: 1.5rem;
            background-color: #50c878; /* Emerald Green */
            color: white;
            margin: 0;
        }

        .cocktail p {
            padding: 1rem;
            text-align: center;
            font-size: 1rem;
        }

        .cocktail .recipe {
            padding: 1rem;
            font-size: 0.9rem;
            height: 100%;
            font-size: 0.9rem;
            margin: auto;
            background-color: #f8f4e3; /* Ivory White */
            border-top: 1px solid #50c878; /* Emerald Green */
        }
        
        
        /* Categories */
        
        .category {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .category:hover {
            transform: scale(1.05);
        }

        .category img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .category h3 {
            text-align: center;
            padding: 1rem 0;
            font-size: 1.5rem;
            background-color: #D3AE37; /* Emerald Green */
            color: white;
            margin: 0;
        }

        .category p {
            padding: 1rem;
            text-align: center;
            font-size: 1rem;
        }

        .category .recipe {
            padding: 1rem;
            font-size: 0.9rem;
            height: 100%;
            font-size: 0.9rem;
            margin: auto;
            background-color: #f8f4e3; /* Ivory White */
            border-top: 1px solid #D3AE37; /* Emerald Green */
        }
        
                /* Special Mojito link styling */
        .catlink {
            display: inline-block;
            background-color: #D3AE37; /* Emerald Green */
            color: white;
            width: 100%;
            padding: 0.3rem 1.5rem;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s, transform 0.3s;
        }
        
        
        
        /* Special Mojito link styling */
        .link {
            display: inline-block;
            background-color: #50c878; /* Emerald Green */
            color: white;
            width: 100%;
            padding: 0.3rem 1.5rem;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s, transform 0.3s;
        }

        .link:hover {
            background-color: #2c3e50; /* Rich Navy Blue */
            transform: scale(1.3);
            color: #f8f4e3; /* Ivory White */
        }

        footer {
            text-align: center;
            background-color: #555555; /* Charcoal Gray */
            color: white;
            padding: 1rem;
        }

        @media (max-width: 600px) {
            header h1 {
                font-size: 2rem;
            }

            nav {
                flex-direction: column;
            }

            .cocktail-gallery {
                grid-template-columns: 1fr;
            }
        }
 
 
 
 /* ADDED * /
 
 
       /* Base reset */
        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: Arial, sans-serif;
            background-color: #f8f4e3; /* Ivory White */
            color: #333;
        }

        header {
            background-color: #2c3e50; /* Rich Navy Blue */
            color: white;
            text-align: center;
            padding: 1.5rem 0;
        }

        /* Add styles for the logo */
        header.logo {
            position: absolute;
            top: 20%;
            left: 20%;
            transform: translate(-50%, -50%);
            width: 250px;
        }
        header.logo img { width: 100px; height: 100px; }

        header h1 { font-size: 2.5rem; color: #d4af37; /* Champagne Gold */ }

        nav {
            background-color: #555555; /* Charcoal Gray */
            display: flex;
            justify-content: space-around;
            padding: 0.5rem;
        }
        nav a {
            color: #f8f4e3; /* Ivory White */
            text-decoration: none;
            padding: 0.75rem 1.5rem;
            text-transform: uppercase;
            transition: background-color 0.3s;
        }
        nav a:hover {
            background-color: #d4af37; /* Champagne Gold */
            color: #2c3e50; /* Rich Navy Blue */
            border-radius: 5px;
        }

        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
        }

        /* ===== Filter Bar (new) ===== */
        .filter-bar {
            display: flex !important;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            background: #ffffff;
            border: 1px solid #d4af37;
            border-radius: 10px;
            padding: 12px;
            margin: 0 0 1.5rem 0;
            box-shadow: 0 2px 6px rgba(0,0,0,0.06);
        }
        .filter-bar label {
            font-weight: bold;
            color: #2c3e50;
        }
        #cocktail-filter, #cocktail-search {
            font-size: 1rem;
            padding: 8px 10px;
            border-radius: 6px;
            border: 1px solid #ccc;
            background: #fefcf6;
            outline: none;
        }
        #cocktail-filter:focus, #cocktail-search:focus {
            border-color: #50c878; /* Emerald */
        }

        /* Cards */
        .cocktail-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            grid-gap: 2rem;
        }
        .cocktail {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .cocktail:hover { transform: scale(1.05); }
        .cocktail img { width: 100%; height: 200px; object-fit: cover; }
        .cocktail h3 {
            text-align: center;
            padding: 1rem 0;
            font-size: 1.5rem;
            background-color: #50c878; /* Emerald Green */
            color: white;
            margin: 0;
        }
        .cocktail p { padding: 1rem; text-align: center; font-size: 1rem; }
        .cocktail .recipe {
            padding: 1rem;
            font-size: 0.9rem;
            height: 100%;
            margin: auto;
            background-color: #f8f4e3; /* Ivory White */
            border-top: 1px solid #50c878; /* Emerald Green */
        }

        /* Categories (kept) */
        .category {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .category:hover { transform: scale(1.05); }
        .category img { width: 100%; height: 200px; object-fit: cover; }
        .category h3 {
            text-align: center;
            padding: 1rem 0;
            font-size: 1.5rem;
            background-color: #D3AE37;
            color: white;
            margin: 0;
        }
        .category p { padding: 1rem; text-align: center; font-size: 1rem; }
        .category .recipe {
            padding: 1rem;
            font-size: 0.9rem;
            height: 100%;
            margin: auto;
            background-color: #f8f4e3;
            border-top: 1px solid #D3AE37;
        }

        /* Links */
        .catlink, .link {
            display: inline-block;
            color: white;
            width: 100%;
            padding: 0.3rem 1.5rem;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s, transform 0.3s;
        }
        .catlink { background-color: #D3AE37; }
        .link { background-color: #50c878; }
        .link:hover {
            background-color: #2c3e50; /* Rich Navy Blue */
            transform: scale(1.3);
            color: #f8f4e3; /* Ivory White */
        }

        footer {
            text-align: center;
            background-color: #555555; /* Charcoal Gray */
            color: white;
            padding: 1rem;
        }

        @media (max-width: 600px) {
            header h1 { font-size: 2rem; }
            nav { flex-direction: column; }
            .filter-bar { gap: 8px; }
        }