/* General styling for the How-to page */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #2C2C2C;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header styling */
header {
    background-color: #333333;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    color: #FFD700;
    margin: 0;
    letter-spacing: 5px;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #FFD700;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FFA500;
}



h1 {
    font-size: 2em;
    color: #FFD700;
    margin: 20px 0;
}

.container {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.cocktail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 600px;
}

.cocktail-item {
    padding: 15px 20px;
    background-color: #444444;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1.5em; /* Bigger font for better readability */
    color: #FFD700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cocktail-item:hover {
    background-color: #555555;
}

.instructions {
    display: none;
    padding: 15px 20px;
    margin-top: 10px;
    font-size: 1em;
    color: #CCCCCC;
    line-height: 1.5;
    border-radius: 5px;
    background-color: #555555; /* Default background color when visible */
}

.instructions hr {
    border: none;
    border-top: 1px solid #666666;
    margin-bottom: 15px;
}