/* Import Google Fonts for classic cocktail era styling */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e8e8e8;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    min-height: 100vh;
    font-weight: 300;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
    background: rgba(20, 20, 20, 0.95);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    border-radius: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid #3a3a3a;
}

/* Main recipe section */
.recipe {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 0;
    overflow: hidden;
    border: 1px solid #4a4a4a;
    margin-bottom: 40px;
}

.recipe h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 2px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 15px;
}

.subtitle {
    font-size: 1.1rem;
    color: #b8b8b8;
    font-style: italic;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 300;
}

.recipe-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(45, 45, 45, 0.9);
    border-radius: 0;
    border-top: 1px solid #4a4a4a;
    border-bottom: 1px solid #4a4a4a;
}

.recipe-meta {
    font-weight: 600;
    color: #d4af37;
    font-family: 'Playfair Display', Georgia, serif;
    text-align: center;
    font-size: 1.1rem;
    white-space: nowrap;
}

.recipe-meta span {
    display: inline;
}

.recipe-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    padding: 0 30px;
}

/* Ingredients */
.ingredients {
    margin-bottom: 20px;
}

.ingredients ul {
    list-style: none;
    padding: 0;
}

.ingredients li {
    padding: 12px 0;
    border-bottom: 1px solid #3a3a3a;
    position: relative;
    padding-left: 25px;
    font-size: 1.05rem;
}

.ingredients li:before {
    content: "•";
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Instructions */
.instructions p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e8e8e8;
    background: rgba(45, 45, 45, 0.5);
    padding: 20px;
    border-radius: 0;
    border-left: 3px solid #d4af37;
}

/* Notes section */
.notes {
    background: rgba(45, 45, 45, 0.8);
    padding: 30px;
    border-radius: 0;
    border-left: 4px solid #8b4513;
    margin: 0 30px 30px 30px;
}

.notes h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.notes p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e8e8e8;
}

.enjoy {
    font-size: 1.3rem;
    font-weight: 600;
    color: #90ee90;
    text-align: center;
    margin-top: 25px;
    font-family: 'Playfair Display', Georgia, serif;
    text-transform: capitalize;
    letter-spacing: 1px;
}

/* Intro section */
.intro {
    background: rgba(45, 45, 45, 0.8);
    padding: 25px;
    border-radius: 0;
    margin-bottom: 30px;
    border-left: 4px solid #4169e1;
    border: 1px solid #4a4a4a;
}

.intro h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.intro p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e8e8e8;
}

.intro a {
    color: #87ceeb;
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px solid #87ceeb;
}

.intro a:hover {
    color: #d4af37;
    border-bottom-color: #d4af37;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #4a4a4a;
    color: #888;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 20px 15px;
    }
    
    .recipe h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .recipe-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .recipe-meta {
        text-align: center;
        font-size: 1rem;
    }
    
    .intro, .notes {
        padding: 20px;
        margin: 0 20px 20px 20px;
    }
    
    .notes h3, .intro h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .recipe h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .notes h3, .intro h2 {
        font-size: 1.2rem;
    }
    
    .recipe-content {
        padding: 0 15px;
    }
    
    .intro, .notes {
        margin: 0 15px 15px 15px;
        padding: 15px;
    }
    
    .recipe-meta {
        font-size: 0.9rem;
    }
}

/* Print styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .container {
        box-shadow: none;
        margin: 0;
        padding: 0;
        background: white;
        border: none;
    }
    
    .recipe, .intro, .notes {
        background: white;
        border: 1px solid #ccc;
        color: black;
    }
    
    .recipe h1, .notes h3, .intro h2 {
        color: black;
    }
    
    .ingredients li:before {
        color: black;
    }
} 