/* Cocktails Page Specific Styles */

.cocktail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* Cocktail Recipe Styles */
.cocktail-recipe {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cocktail-recipe::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.cocktail-recipe:hover::before {
    left: 100%;
}

.cocktail-recipe:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.recipe-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.recipe-header h3 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin: 0;
    font-weight: 300;
}

.difficulty, .serves {
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-gold);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.recipe-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.recipe-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 20px;
}

.recipe-image img {
    width: 100%;
    max-width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.recipe-image img:hover {
    border-color: var(--primary-gold);
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.image-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 40px;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.placeholder-content {
    text-align: center;
}

.cocktail-glass {
    width: 60px;
    height: 80px;
    border: 3px solid var(--primary-gold);
    border-radius: 0 0 15px 15px;
    margin: 0 auto 20px;
    position: relative;
    animation: fill 2s ease-in-out infinite;
}

.placeholder-content p {
    color: var(--primary-gold);
    font-weight: 500;
    margin: 0;
}

.recipe-details h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 400;
}

.recipe-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.recipe-details li {
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.recipe-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.recipe-details ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.recipe-details ol li {
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 0;
}

.recipe-details ol li::before {
    display: none;
}

/* Tips Grid for Mixology Tips */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tip-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.tip-card:hover::before {
    left: 100%;
}

.tip-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.tip-card h3 {
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 300;
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .recipe-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .recipe-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.cocktail-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cocktail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.cocktail-card:hover::before {
    left: 100%;
}

.cocktail-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.cocktail-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.cocktail-card h3 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 300;
}

.cocktail-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.recipe-details {
    text-align: left;
    margin-top: 20px;
}

.recipe-details h4 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
    margin-top: 20px;
}

.recipe-details ul, .recipe-details ol {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.recipe-details li {
    margin-bottom: 5px;
}

.recipe-details ul {
    list-style: none;
    padding-left: 0;
}

.recipe-details ul li::before {
    content: '•';
    color: var(--primary-gold);
    margin-right: 10px;
}

.recipe-details ol {
    padding-left: 20px;
}
