 * {
            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: #2C3E50; /* Blue - */ 
            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 #2C3E50; /* Gold */
        }
        
        /* Special Mojito link styling */
        .link {
            display: inline-block;
            background-color: #2C3E50; /* Gold */
            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;
            }
        }